Hacker News new | ask | show | jobs
by boon 4144 days ago
If you're good with vim (and particularly with vim macros), `vidir` is indispensable.
1 comments

GNU Emacs has something like that in Dired. It's called Wdired (writable dired) and allows editing the Dired buffer and then applies the changes. Think of it as editing `ls` output.

https://www.gnu.org/software/emacs/manual/html_node/emacs/Wd...

`vidir` uses the EDITOR variable, so if you set it to emacs you can use with it:

    EDITOR=emacs vidir .
AWESOME. I didn't know that, but it makes sense and is very unixy.