Show full output of command :hi
in scratch window:
:Redir hi
Show full output of command :!ls -al
in scratch window:
:Redir !ls -al
Evaluate current line with node
and show full output in scratch window:
" current line
console.log(Math.random());
" Ex command
:.Redir !node
" scratch window
0.03987581000754448
Evaluate visual selection + positional parameters with bash
and show full output in scratch window:
" content of buffer
echo ${1}
echo ${2}
" Ex command
:%Redir !bash -s foo bar
" scratch window
foo
bar
The last revision appears to have changed the call from
Redir
toredir#Redir
which is not a function defined in the snippet as is.