Skip to content

Latest commit

 

History

History
31 lines (18 loc) · 700 Bytes

README.rst

File metadata and controls

31 lines (18 loc) · 700 Bytes

vim-pudb

simple plugin allowing you to manage pudb breakpoint directly into vim.

This plugin need vim to be compiled with +python

Installation

The recommended way of installing is to use vim-pathogen

How to use

To add/remove a breakpoint, you just need to call the command :TogglePudbBreakPoint

For easy access, you can bind it to the F8 key.

nnoremap <F8> :TogglePudbBreakPoint<CR>

inoremap <F8> <ESC>:TogglePudbBreakPoint<CR>a

Know problems

Currently, the list of breakpoints is not reloaded automatically.

There is also room for speed optimisations.