Context menus in Emacs 28!
Today I learned that Emacs 28 added context-menu-mode so that we can easily add context menus. This is a minor mode which you can toggle with
M-x context-menu-mode RET but I added hooks to enable it for text mode and a couple others
(add-hook 'text-mode-hook 'context-menu-mode) (add-hook 'shell-mode-hook 'context-menu-mode) (add-hook 'dired-mode-hook 'context-menu-mode) I did not hook prog mode because some of the fancier lsp things already use mouse-3.