This commit is contained in:
Chris 2021-03-22 22:10:39 -04:00
parent 42707d1b7e
commit cd3ac0c6f8
4 changed files with 60 additions and 2 deletions

View file

@ -85,6 +85,19 @@ let g:which_key_map.b = {
\ '?' : ['Buffers' , 'fzf-buffer'],
\ }
" d is for debug
let g:which_key_map.d = {
\ 'name' : '+debug' ,
\ 'b' : ['DebugToggleBreakpoint ' , 'toggle breakpoint'],
\ 'c' : ['DebugContinue' , 'continue'],
\ 'i' : ['DebugStepInto' , 'step into'],
\ 'o' : ['DebugStepOver' , 'step over'],
\ 'r' : ['DebugToggleRepl' , 'toggle repl'],
\ 's' : ['DebugStart' , 'start'],
\ }
" \ 'O' : ['DebugStepOut' , 'next-buffer'],
" \ 'S' : ['DebugGetSession ' , 'fzf-buffer'],
" F is for fold
let g:which_key_map.F = {