Last active
August 3, 2017 01:21
-
-
Save rawsyntax/7293942 to your computer and use it in GitHub Desktop.
multi-term default bindings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defcustom term-unbind-key-list | |
'("C-z" "C-x" "C-c" "C-h" "C-y" "<ESC>") | |
"The key list that will need to be unbind." | |
:type 'list | |
:group 'multi-term) | |
(defcustom term-bind-key-alist | |
'( | |
("C-c C-c" . term-interrupt-subjob) | |
("C-p" . previous-line) | |
("C-n" . next-line) | |
("C-s" . isearch-forward) | |
("C-r" . isearch-backward) | |
("C-m" . term-send-raw) | |
("M-f" . term-send-forward-word) | |
("M-b" . term-send-backward-word) | |
("M-o" . term-send-backspace) | |
("M-p" . term-send-up) | |
("M-n" . term-send-down) | |
("M-M" . term-send-forward-kill-word) | |
("M-N" . term-send-backward-kill-word) | |
("M-r" . term-send-reverse-search-history) | |
("M-," . term-send-input) | |
("M-." . comint-dynamic-complete)) | |
"The key alist that will need to be bind. | |
If you do not like default setup, modify it, with (KEY . COMMAND) format." | |
:type 'alist | |
:group 'multi-term) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment