]> gitweb.michael.orlitzky.com - emacs.d.git/commitdiff
Revert "mode-hooks: unbind some keys for multi-term mode."
authorMichael Orlitzky <michael@orlitzky.com>
Wed, 24 Jun 2020 17:05:40 +0000 (13:05 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Wed, 24 Jun 2020 17:05:40 +0000 (13:05 -0400)
This reverts commit 74fe2a628b900ef949c5b35780c4e5710e4a1edd. It's all
fun and games until you can't C-x C-b out of your multi-term buffer.

mode-hooks.el
mode-hooks/multi-term-hooks.el [deleted file]

index 30599e2f9fb0e7312eee0233d7e2a72989debf9f..d2ca0196a0e778bad7e723b9a78936b92ae7eabc 100644 (file)
@@ -5,7 +5,6 @@
 (load-library "css-mode-hooks")
 (load-library "js-mode-hooks")
 (load-library "haskell-mode-hooks")
-(load-library "multi-term-hooks")
 (load-library "nxml-mode-hooks")
 (load-library "octave-mode-hooks")
 (load-library "python-mode-hooks")
diff --git a/mode-hooks/multi-term-hooks.el b/mode-hooks/multi-term-hooks.el
deleted file mode 100644 (file)
index 9b4f963..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-(defun mtm-hook()
-  ;; Pass through C-c, C-x, and M-x for emaception.
-  (delete "C-x" term-unbind-key-list)
-  (delete "C-c"   term-unbind-key-list)
-  (delete "<ESC>" term-unbind-key-list)
-
-  ;; We don't need the special C-c C-c any afterwards.
-  (delete '("C-c C-c" . term-interrupt-subjob) term-bind-key-alist)
-)
-
-(add-hook 'term-mode-hook (function mtm-hook))