mirror of
https://github.com/Iron-E/nvim-libmodal
synced 2024-11-16 12:13:32 +00:00
10 lines
225 B
VimL
10 lines
225 B
VimL
|
" Register keymaps for splitting windows and then closing windows
|
||
|
let s:barModeKeymaps = {
|
||
|
\ 'zf': 'split',
|
||
|
\ 'zfo': 'vsplit',
|
||
|
\ 'zfc': 'q'
|
||
|
\}
|
||
|
|
||
|
" Enter the mode using the keymaps.
|
||
|
call libmodal#Enter('BAR', s:barModeKeymaps)
|