summaryrefslogtreecommitdiff
path: root/.emacs.d/init.el
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2022-11-19 16:42:37 -0700
committerSean Whitton <spwhitton@spwhitton.name>2022-11-21 09:41:08 -0700
commit32563c5300a80ce6a564e42d8387285f2e14125a (patch)
tree160eef962098993cf4073e16b6ce247361960817 /.emacs.d/init.el
parent30d629b067106dc771a03ecec9eb8d3c0832a74b (diff)
downloaddotfiles-32563c5300a80ce6a564e42d8387285f2e14125a.tar.gz
try out swapping tab-bar-history-mode keys
Diffstat (limited to '.emacs.d/init.el')
-rw-r--r--.emacs.d/init.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index 4911ac7d..3763c2ec 100644
--- a/.emacs.d/init.el
+++ b/.emacs.d/init.el
@@ -1324,13 +1324,13 @@ don't consider windows satisfying the predicate EXCLUDE."
;; `winner-mode', `tab-bar-history-mode' does not restore just one value for
;; point for all of the windows in the configuration showing a single buffer.
(transient-cycles-define-commands ()
- (("\M-3" . tab-bar-history-back)
- ("\M-2" . tab-bar-history-forward))
+ (("\M-2" . tab-bar-history-back)
+ ("\M-3" . tab-bar-history-forward))
(lambda (_ignore)
(lambda (count)
(interactive "p")
(if (> count 0) (tab-bar-history-forward) (tab-bar-history-back))))
- :cycle-backwards-key "\M-3" :cycle-forwards-key "\M-2")
+ :cycle-backwards-key "\M-2" :cycle-forwards-key "\M-3")
(define-key transient-cycles-window-buffers-mode-map "\M-1" #'previous-buffer)
(define-key transient-cycles-window-buffers-mode-map "\M-4" #'next-buffer)