http://www.vim.org/scripts/script.php?script_id=1929 y http://vim.sourceforge.net/scripts/script.php?script_id=1910
- — plugin/debugger.vim.orig 2009-08-31 00:58:04.000000000 -0500
-
+++ plugin/debugger.vim 2009-08-31 00:47:32.000000000 -0500
-
-127,10 +127,10 @@
-
call confirm(‘debugger.vim: Unable to find debugger.py. Place it in either your home vim directory or in the Vim runtime directory.’, ‘OK’)
-
endif
-
-map :python debugger_resize()
-
-map :python debugger_command(’step_into’)
-
-map :python debugger_command(’step_over’)
-
-map :python debugger_command(’step_out’)
-
+map :python debugger_resize()
-
+map :python debugger_command(’step_into’)
-
+map :python debugger_command(’step_over’)
-
+map :python debugger_command(’step_out’)
-
map dr :python debugger_resize()
-
map di :python debugger_command(’step_into’)
-
-139,17 +139,17 @@
-
nnoremap ,e :python debugger_watch_input(“eval”)A
-
-map :python debugger_run()
-
-map :python debugger_quit()
-
+map :python debugger_run()
-
+map :python debugger_quit()
-
-map :python debugger_command(’step_into’)
-
-map :python debugger_command(’step_over’)
-
-map :python debugger_command(’step_out’)
-
-
-
-map :python debugger_context()
-
-map :python debugger_property()
-
-map :python debugger_watch_input(“context_get”)A
-
-map :python debugger_watch_input(“property_get”, ”)A
-
+map :python debugger_command(’step_into’)
-
+map :python debugger_command(’step_over’)
-
+map :python debugger_command(’step_out’)
-
+
-
+map :python debugger_context()
-
+map :python debugger_property()
-
+map :python debugger_watch_input(“context_get”)A
-
+map :python debugger_watch_input(“property_get”, ”)A
-
hi DbgCurrent term=reverse ctermfg=White ctermbg=Red gui=reverse
-
hi DbgBreakPt term=reverse ctermfg=White ctermbg=Green gui=reverse
-
— /home/chilicuil/.vim/plugin/debugger.py.orig 2009-08-31 01:41:07.000000000 -0500
-
+++ /home/chilicuil/.vim/plugin/debugger.py 2009-08-31 01:44:54.000000000 -0500
-
-413,15 +413,15 @@
-
def on_create(self):
-
self.write( \
-
‘[ Function Keys ] | \n’ + \
-
- ’ resize | [ Normal Mode ] \n’ + \
-
- ’ step into | ,e eval \n’ + \
-
- ’ step over | \n’ + \
-
- ’ step out | \n’ + \
-
- ’ run | [ Command Mode ] \n’ + \
-
- ’ quit debugging | :Bp toggle breakpoint \n’ + \
-
- ’ | :Up stack up \n’ + \
-
- ’ get all context |

n stack down \n’ + \
-
- ’ get property at cursor | \n’ + \
-
+ ’ resize | [ Normal Mode ] \n’ + \
-
+ ’ step into | ,e eval \n’ + \
-
+ ’ step over | \n’ + \
-
+ ’ step out | \n’ + \
-
+ ’ run | [ Command Mode ] \n’ + \
-
+ ’ quit debugging | :Bp toggle breakpoint \n’ + \
-
+ ’ | :Up stack up \n’ + \
-
+ ’ get all context |

n stack down \n’ + \
-
+ ’ get property at cursor | \n’ + \
-
‘\n’)
-
self.command(‘1′)