3
votes
The single most useful Emacs feature
Have M-x shell open a new shell instead of putting the existing shell buffer in the foreground:
(add-hook
'shell-mode-hook
'(lambda (&rest ignore)
(rename-buffer (generate-new-bu …
