mirror of
https://github.com/Iron-E/nvim-libmodal
synced 2024-11-10 13:10:29 +00:00
8 lines
125 B
VimL
8 lines
125 B
VimL
let s:commands = {
|
|
\ 'new': 'tabnew',
|
|
\ 'close': 'tabclose',
|
|
\ 'last': 'tablast'
|
|
\}
|
|
|
|
call libmodal#Prompt('TAB', s:commands)
|