We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4852117 commit ce314c3Copy full SHA for ce314c3
plugin/debugger.vim
@@ -1,10 +1,10 @@
1
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;"]]
+ let g:debugger_array = [['\.rb', 'require "pry"; binding.pry'],
+ \['\.ex', 'require IEx; IEx.pry'],
+ \['\.erb', '<% require "pry"; binding.pry %>'],
+ \['\.eex', '<%= require IEx; IEx.pry %>'],
+ \['\.json\.jbuilder', 'require "pry"; binding.pry'],
+ \['\.js$', 'debugger;']]
8
endif
9
10
function! Debugging(direction)
0 commit comments