diff options
author | Amin Bandali <bandali@gnu.org> | 2019-08-26 19:42:19 -0400 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2019-08-26 19:42:19 -0400 |
commit | 057a83828a8bf86b27a70031f41c9a99d333bf56 (patch) | |
tree | 1dfa4f257a9b86a78d57e7463ce83d55e25e9ad2 | |
parent | 90dc3a58921a41297b3f3169854e1e6af5fad16d (diff) | |
download | configs-057a83828a8bf86b27a70031f41c9a99d333bf56.tar.gz configs-057a83828a8bf86b27a70031f41c9a99d333bf56.tar.xz configs-057a83828a8bf86b27a70031f41c9a99d333bf56.zip |
emacs: better buffer-switching bindings
-rw-r--r-- | .emacs.d/init.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index eb634df..d0d5307 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -626,12 +626,12 @@ For disabling the behaviour for certain buffers and/or modes." :delight :bind (([remap execute-extended-command] . counsel-M-x) ([remap find-file] . counsel-find-file) - ("C-c x" . counsel-M-x) + ("C-c b b" . ivy-switch-buffer) ("C-c f ." . counsel-find-file) ("C-c f l" . counsel-find-library) ("C-c f r" . counsel-recentf) + ("C-c x" . counsel-M-x) ("s-." . counsel-find-file) - ("s-r" . ivy-switch-buffer) :map minibuffer-local-map ("C-r" . counsel-minibuffer-history)) :config @@ -2062,7 +2062,7 @@ https://csclub.uwaterloo.ca/~abandali") ;;; IRC (with ERC and ZNC) (use-package erc - :bind (("C-c a e b" . erc-switch-to-buffer) + :bind (("C-c b e" . erc-switch-to-buffer) :map erc-mode-map ("M-a" . erc-track-switch-buffer)) :custom |