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.
2 parents ab4cf83 + 946eb0e commit 298998aCopy full SHA for 298998a
plugin/debugger.vim
@@ -1,13 +1,13 @@
1
if !exists("g:debugger_array")
2
- l let g:debugger_array = [['\.rb', 'require "pry"; binding.pry'],
+ let g:debugger_array = [['\.rb', 'require "pry"; binding.pry'],
3
\['\.ex$', 'require IEx; IEx.pry'],
4
\['\.exs', 'require IEx; IEx.pry'],
5
\['\.erb', '<% require "pry"; binding.pry %>'],
6
\['\.eex', '<%= require IEx; IEx.pry %>'],
7
\['\.coffee$', 'debugger'],
8
\['\.json\.jbuilder', 'require "pry"; binding.pry'],
9
\['\.js$', 'debugger;'],
10
- \['\.jsx$', 'debugger;']
+ \['\.jsx$', 'debugger;'],
11
\['\.rs$', 'println!("{:?}", );']]
12
endif
13
0 commit comments