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