mirror of
https://github.com/Iron-E/nvim-libmodal
synced 2024-11-10 13:10:29 +00:00
10 lines
229 B
VimL
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)
|