Taming term-mode

1 · Shane Mulligan · Oct. 6, 2019, 4 p.m.
First attempt You can skip this and scroll down to the solution or read it to see some of the problems I was having with term.el. Problems with term.el Any minor mode which is enabled while term is running will override bindings Therefore, if you can, make any such bindings that may interfere with term into global mappings instead. 1 2 3 4 5 6 7 8 ;; Comment this out ;; (define-key my-mode-map (kbd "M-k") 'avy-goto-char) ;; Unload binding (define-key my-mode-map (kbd "M-k") nil) ;; Replace with...