https://omar.website/tabfs/doc/delete.mp4
Ah, I see now. It is called "dired". I wonder if it can be used standalone, without emacs.
[1]: https://github.com/ranger/ranger
https://joeyh.name/code/moreutils/
emacs --eval '(dired ".")'
$ cat ~/bin/dired #!/bin/bash # Launch Dired in a plain Emacs configuration. # Arguments are passed to Emacs, e.g. "-nw" works as expected. emacs -q "$@" \ --eval "(dired default-directory)" \ --eval "(defun kill-window-or-emacs () (interactive) (if (one-window-p) (kill-emacs) (delete-window)))" \ --eval "(setq dired-dwim-target t delete-by-moving-to-trash t)" \ --eval "(define-key dired-mode-map (kbd \"q\") #'kill-window-or-emacs)"
https://omar.website/tabfs/doc/delete.mp4
Ah, I see now. It is called "dired". I wonder if it can be used standalone, without emacs.