nvim-libmodal/examples/key-combos.vim

10 lines
229 B
VimL
Raw Permalink Normal View History

2020-08-27 16:10:01 +00:00
" Register key combos for splitting windows and then closing windows
2020-05-17 21:02:10 +00:00
let s:barModeCombos = {
\ 'zf': 'split',
\ 'zfo': 'vsplit',
2020-05-26 03:25:16 +00:00
\ 'zfc': 'q'
2020-05-17 21:02:10 +00:00
\}
2020-08-27 16:10:01 +00:00
" Enter the mode using the key combos.
2020-05-17 21:02:10 +00:00
call libmodal#Enter('BAR', s:barModeCombos)