You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nvim-libmodal/examples/lua/key-combos-supress-exit.lua

15 lines
387 B
Lua

-- Imports
local libmodal = require('libmodal')
-- Register key commands and what they do.
4 years ago
local fooModeCombos = {
[''] = 'echom "You cant exit using escape."',
4 years ago
['q'] = 'let g:fooModeExit = 1'
}
-- Tell the mode not to exit automatically.
4 years ago
vim.api.nvim_set_var('fooModeExit', 0)
-- Enter the mode using the key combos created before.
4 years ago
libmodal.mode.enter('FOO', fooModeCombos, true)