Skip to content

Commit 298998a

Browse files
committed
Merge pull request #5 from michaelghinrichs/master
Fix syntax errors
2 parents ab4cf83 + 946eb0e commit 298998a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugin/debugger.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
if !exists("g:debugger_array")
2-
l let g:debugger_array = [['\.rb', 'require "pry"; binding.pry'],
2+
let g:debugger_array = [['\.rb', 'require "pry"; binding.pry'],
33
\['\.ex$', 'require IEx; IEx.pry'],
44
\['\.exs', 'require IEx; IEx.pry'],
55
\['\.erb', '<% require "pry"; binding.pry %>'],
66
\['\.eex', '<%= require IEx; IEx.pry %>'],
77
\['\.coffee$', 'debugger'],
88
\['\.json\.jbuilder', 'require "pry"; binding.pry'],
99
\['\.js$', 'debugger;'],
10-
\['\.jsx$', 'debugger;']
10+
\['\.jsx$', 'debugger;'],
1111
\['\.rs$', 'println!("{:?}", );']]
1212
endif
1313

0 commit comments

Comments
 (0)