summaryrefslogtreecommitdiff
path: root/basic.el
diff options
context:
space:
mode:
authorJSDurand <mmemmew@gmail.com>2021-08-08 16:50:24 +0800
committerJSDurand <mmemmew@gmail.com>2021-08-08 16:50:24 +0800
commit95e85e429a3ebcae9173fb45316db45cf0435f5e (patch)
tree6a2464c15e12cf9156a74ebcd6d6690b6f1235f2 /basic.el
parentddd919fc18f2588ca0dcf842daf9c75760cdc4fe (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.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/basic.el b/basic.el
index be9ca49..bb09b3d 100644
--- a/basic.el
+++ b/basic.el
@@ -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)