From 7a0f96ef70ee8638fbe9481f1c3e1814b0b230bb Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Thu, 22 Sep 2016 17:06:51 -0700 Subject: [PATCH] [Emacs] Allow pressing of C-h in term-mode --- dotfiles/emacs.d/README.org | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dotfiles/emacs.d/README.org b/dotfiles/emacs.d/README.org index e91cff1c..6d1ab26a 100644 --- a/dotfiles/emacs.d/README.org +++ b/dotfiles/emacs.d/README.org @@ -3060,11 +3060,12 @@ emr (emacs refactor) provides support for refactoring in many programming langua #+BEGIN_SRC emacs-lisp (use-package term :bind (:map term-raw-escape-map - ("M-x" . helm-M-x)) - :bind (:map term-raw-map - ("M-x" . helm-M-x)) + ("M-x" . helm-M-x) + :map term-raw-map + ("M-x" . helm-M-x)) :config (progn + (define-key term-raw-map (kbd "C-h") help-map) (add-hook 'term-mode-hook 'imalison:disable-linum-mode) (setq term-buffer-maximum-size 0))) #+END_SRC