mirror of
https://github.com/Iron-E/nvim-libmodal
synced 2024-11-04 18:00:15 +00:00
14 lines
256 B
Lua
14 lines
256 B
Lua
local libmodal = require 'libmodal'
|
|
|
|
-- define commands through a dictionary
|
|
local commands =
|
|
{
|
|
new = 'tabnew',
|
|
close = 'tabclose',
|
|
last = 'tablast',
|
|
exit = 'let g:fooModeExit = v:true',
|
|
}
|
|
|
|
-- begin the prompt
|
|
libmodal.prompt.enter('FOO', commands)
|