forked from colonelpanic/dotfiles
[Emacs] Allow pressing of C-h in term-mode
This commit is contained in:
parent
2b48d25a81
commit
7a0f96ef70
@ -3060,11 +3060,12 @@ emr (emacs refactor) provides support for refactoring in many programming langua
|
|||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package term
|
(use-package term
|
||||||
:bind (:map term-raw-escape-map
|
:bind (:map term-raw-escape-map
|
||||||
("M-x" . helm-M-x))
|
("M-x" . helm-M-x)
|
||||||
:bind (:map term-raw-map
|
:map term-raw-map
|
||||||
("M-x" . helm-M-x))
|
("M-x" . helm-M-x))
|
||||||
:config
|
:config
|
||||||
(progn
|
(progn
|
||||||
|
(define-key term-raw-map (kbd "C-h") help-map)
|
||||||
(add-hook 'term-mode-hook 'imalison:disable-linum-mode)
|
(add-hook 'term-mode-hook 'imalison:disable-linum-mode)
|
||||||
(setq term-buffer-maximum-size 0)))
|
(setq term-buffer-maximum-size 0)))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
Loading…
Reference in New Issue
Block a user