Según esta entrada de vim wikia , puede crear una ejecución de shell para un nuevo script de búfer y luego extenderlo para ejecutar su código usando el nodo.
command! -complete=shellcmd -nargs=+ Shell call s:RunShellCommand(<q-args>)
function! s:RunShellCommand(cmdline)
let isfirst = 1
let words = []
for word in split(a:cmdline)
if isfirst
let isfirst = 0 " don't change first word (shell command)
else
if word[0] =~ '\v[%#<]'
let word = expand(word)
endif
let word = shellescape(word, 1)
endif
call add(words, word)
endfor
let expanded_cmdline = join(words)
botright new
setlocal buftype=nofile bufhidden=wipe nobuflisted noswapfile nowrap
call setline(1, 'You entered: ' . a:cmdline)
call setline(2, 'Expanded to: ' . expanded_cmdline)
call append(line('$'), substitute(getline(2), '.', '=', 'g'))
silent execute '$read !'. expanded_cmdline
1
endfunction
command! -complete=file -nargs=* RunJS call s:RunShellCommand('node '.<q-args>)
Luego, si ejecuta :RunJS %
, debería obtener un nuevo búfer con la salida de la ejecución de su node.js. Opcionalmente puede llamar a las cosas directamente usando:Shell <cmd>
:!node %
. Esto se aplicará alnode
programa externo , pasando el nombre de archivo actual como argumento. La salida se mostrará en la pantalla y puede presionar Entrar para descartarla.