Minor keybinding modifications; add ToggleQFList
Remove window navigation shortcuts in favor of <C-{hjkl}> Uncomment vim.lsp.bufsignature_help keybinding Uncomment vim lsp diagnostic navigation keybindings Add ToggleQFList vim functionwriting
parent
599491664e
commit
a3d34db195
@ -0,0 +1,22 @@
|
||||
let g:qf_l = 0
|
||||
let g:qf_g = 0
|
||||
|
||||
fun! ToggleQFList(global)
|
||||
if a:global
|
||||
if g:qf_g == 1
|
||||
let g:qf_g = 0
|
||||
cclose
|
||||
else
|
||||
let g:qf_g = 1
|
||||
copen
|
||||
end
|
||||
else
|
||||
if g:qf_l == 1
|
||||
let g:qf_l = 0
|
||||
lclose
|
||||
else
|
||||
let g:qf_l = 1
|
||||
lopen
|
||||
end
|
||||
endif
|
||||
endfun
|
Loading…
Reference in New Issue