diff options
author | JSDurand <mmemmew@gmail.com> | 2021-08-08 16:50:24 +0800 |
---|---|---|
committer | JSDurand <mmemmew@gmail.com> | 2021-08-08 16:50:24 +0800 |
commit | 95e85e429a3ebcae9173fb45316db45cf0435f5e (patch) | |
tree | 6a2464c15e12cf9156a74ebcd6d6690b6f1235f2 /basic.el | |
parent | ddd919fc18f2588ca0dcf842daf9c75760cdc4fe (diff) |
Bind H-e to eshell as well.
* basic.el (global-map): The old binding "C-c v e" is too
troublesome.
Diffstat (limited to 'basic.el')
-rw-r--r-- | basic.el | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -111,6 +111,10 @@ (define-key global-map (vector ?\H-b) #'bookmark-jump) (define-key global-map (vector ?\H-m) #'bookmark-set) +;; eshell + +(define-key global-map (vector ?\H-e) #'eshell) + ;;; bury-buffer (define-key global-map (vector ?\C-\s-b) #'bury-buffer) |