mirror of
https://github.com/Iron-E/nvim-libmodal
synced 2024-11-16 12:13:32 +00:00
9 lines
161 B
Lua
9 lines
161 B
Lua
local libmodal = require('libmodal')
|
|
local fooModeCombos = {
|
|
['zf'] = 'split',
|
|
['zfo'] = 'vsplit',
|
|
['zfc'] = 'q'
|
|
}
|
|
|
|
libmodal.mode.enter('FOO', fooModeCombos)
|