nvim-libmodal/examples/prompt-commands.vim
2020-05-17 17:02:10 -04:00

8 lines
125 B
VimL

let s:commands = {
\ 'new': 'tabnew',
\ 'close': 'tabclose',
\ 'last': 'tablast'
\}
call libmodal#Prompt('TAB', s:commands)