nvim-libmodal/examples/key-combos.vim
2020-08-27 12:10:01 -04:00

10 lines
229 B
VimL

" Register key combos for splitting windows and then closing windows
let s:barModeCombos = {
\ 'zf': 'split',
\ 'zfo': 'vsplit',
\ 'zfc': 'q'
\}
" Enter the mode using the key combos.
call libmodal#Enter('BAR', s:barModeCombos)