mirror of
https://github.com/Iron-E/nvim-libmodal
synced 2024-11-14 18:12:52 +00:00
9 lines
166 B
Lua
9 lines
166 B
Lua
local libmodal = require('libmodal')
|
|
local commands = {
|
|
['new'] = 'tabnew',
|
|
['close'] = 'tabclose',
|
|
['last'] = 'tablast'
|
|
}
|
|
|
|
libmodal.prompt.enter('BAR', commands)
|