summaryrefslogtreecommitdiff
path: root/basic.el
diff options
context:
space:
mode:
authorJSDurand <mmemmew@gmail.com>2021-06-22 01:08:23 +0800
committerJSDurand <mmemmew@gmail.com>2021-06-22 01:08:23 +0800
commit2581527ae37a054a9f662d117a2e3e434cdb906c (patch)
treea529f99221eff611205a0affc5c6869c6a1e302d /basic.el
parent045c2b9ecadd5624a93f66fd2733d1964b8fcd3d (diff)
basic: bury-buffer binding
* basic.el (global-map): Bind C-s-b to bury-buffer. I found this function more and more important.
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 832b399..1672af3 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)
+;;; bury-buffer
+
+(define-key global-map (vector ?\C-\s-b) #'bury-buffer)
+
;;; Repeat
(define-key global-map (vector ?\s-z) #'repeat)