pen.vim - A prompting libary for vim, based on Pen.el

1 · · Dec. 31, 2021, 3:10 p.m.
Summary I begin work on a prompting library for vim. Prerequesites https://semiosis.github.io/posts/pen-el-installation-from-scratch/ Once installed, Pen.el has a script pen which pen.vim will use to run the prompts. Code GitHub repo http://github.com/semiosis/pen.vim 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 function! Prompt(fun, ...) let args = a:000 let s = """ skip the first of the variadic args because it's the input for arg in args[1:] let s = s ....