mirror of
https://github.com/Iron-E/nvim-libmodal
synced 2024-11-10 13:10:29 +00:00
12 lines
314 B
VimL
12 lines
314 B
VimL
" Register key commands and what they do.
|
||
let s:barModeCombos = {
|
||
\ '': 'echom "You cant exit using escape."',
|
||
\ 'q': 'let g:barModeExit = 1'
|
||
\}
|
||
|
||
" Tell the mode not to exit automatically.
|
||
let g:barModeExit = 0
|
||
|
||
" Enter the mode using the key combos created before.
|
||
call libmodal#Enter('BAR', s:barModeCombos, 1)
|