Rudimentary support for listing breakpoints using the quickfix window

This commit is contained in:
Ben Jackson 2019-02-12 22:41:10 +00:00
commit 3092c06cd7
3 changed files with 53 additions and 0 deletions

View file

@ -102,6 +102,10 @@ function! vimspector#ShowOutput( category ) abort
py3 _vimspector_session.ShowOutput( vim.eval( 'a:category' ) )
endfunction
function! vimspector#ListBreakpoints() abort
py3 _vimspector_session.ListBreakpoints()
endfunction
" Boilerplate {{{
let &cpo=s:save_cpo
unlet s:save_cpo