Add basic VimspectorDebugInfo command

This commit is contained in:
Ben Jackson 2021-05-15 17:55:01 +01:00
commit d43904eb57
6 changed files with 71 additions and 5 deletions

View file

@ -115,6 +115,9 @@ command! -bar -nargs=? -complete=custom,vimspector#CompleteOutput
command! -bar
\ VimspectorToggleLog
\ call vimspector#ToggleLog()
command! -bar
\ VimspectorDebugInfo
\ call vimspector#PrintDebugInfo()
command! -nargs=1 -complete=custom,vimspector#CompleteExpr
\ VimspectorEval
\ call vimspector#Evaluate( <f-args> )