Skip to content

Commit ce314c3

Browse files
committed
single quotes
1 parent 4852117 commit ce314c3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

plugin/debugger.vim

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
if !exists("g:debugger_array")
2-
let g:debugger_array = [["\.rb", "require 'pry'; binding.pry"],
3-
\["\.ex", "require IEx; IEx.pry"],
4-
\["\.erb", "<% require 'pry'; binding.pry %>"],
5-
\["\.eex", "<%= require IEx; IEx.pry %>"],
6-
\["\.json\.jbuilder", "require 'pry'; binding.pry"],
7-
\["\.js$", "debugger;"]]
2+
let g:debugger_array = [['\.rb', 'require "pry"; binding.pry'],
3+
\['\.ex', 'require IEx; IEx.pry'],
4+
\['\.erb', '<% require "pry"; binding.pry %>'],
5+
\['\.eex', '<%= require IEx; IEx.pry %>'],
6+
\['\.json\.jbuilder', 'require "pry"; binding.pry'],
7+
\['\.js$', 'debugger;']]
88
endif
99

1010
function! Debugging(direction)

0 commit comments

Comments
 (0)