Zet - How do I pipe stdout into vim?
How do I pipe stdout into vim?
You can use process substitution (this also works with applications that canβt read from STDIN):
vim <(ls -la)
Or use vimβs function to read from STDIN:
ls -la | vim -
#vim