mirror of
https://github.com/Iron-E/nvim-libmodal
synced 2024-11-14 18:12:52 +00:00
8 lines
174 B
VimL
8 lines
174 B
VimL
let s:barModeCombos = {
|
||
\ '': 'echom "You cant exit using escape."',
|
||
\ 'q': 'let g:barModeExit = 1'
|
||
\}
|
||
|
||
let g:barModeExit = 0
|
||
call libmodal#Enter('BAR', s:barModeCombos, 1)
|