diff options
author | Amin Bandali <bandali@gnu.org> | 2019-10-30 12:48:00 -0400 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2019-10-30 12:48:00 -0400 |
commit | e38333d993269faf5f6d918961d4769eda115d1f (patch) | |
tree | d424c95f1a854f687c21a14e64bce8b9bb13025a | |
parent | bfbda9c581acbac69c9727e68d7a3cf729fc7a2c (diff) | |
download | configs-e38333d993269faf5f6d918961d4769eda115d1f.tar.gz configs-e38333d993269faf5f6d918961d4769eda115d1f.tar.xz configs-e38333d993269faf5f6d918961d4769eda115d1f.zip |
emacs: use C-c b b for erc-switch-to-buffer
-rw-r--r-- | .emacs.d/init.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 4736a73..5321686 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -962,7 +962,6 @@ This function is intended for use with `ivy-ignore-buffers'." :after ivy :bind (([remap execute-extended-command] . counsel-M-x) ([remap find-file] . counsel-find-file) - ("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) @@ -2551,7 +2550,7 @@ https://csclub.uwaterloo.ca/~abandali") ;;; IRC (with ERC and ZNC) (use-feature erc - :bind (("C-c b e" . erc-switch-to-buffer) + :bind (("C-c b b" . erc-switch-to-buffer) :map erc-mode-map ("M-a" . erc-track-switch-buffer)) :custom |