In Vim command,
:%!ls
executes ls
linux command and it's output prints its output to the current editable file.
But what menasdo %
and !
separatedlymean separately in vim
?
Is it possible execute ls
and not put it'sits output to document?