diff options
author | 2022-08-03 23:06:32 -0400 | |
---|---|---|
committer | 2022-08-03 23:06:32 -0400 | |
commit | 55ac7968b4171c9ab8b5e3487b00d4b73b794a18 (patch) | |
tree | 3aa279fcc507c387e8373f6b39edfa3e364ed692 /.emacs.d/lisp/bandali-erc.el | |
parent | 74d836015d304dc840c6dcf3703771ab863a4985 (diff) | |
download | configs-55ac7968b4171c9ab8b5e3487b00d4b73b794a18.tar.gz configs-55ac7968b4171c9ab8b5e3487b00d4b73b794a18.tar.xz configs-55ac7968b4171c9ab8b5e3487b00d4b73b794a18.zip |
Update/shorten various custom Emacs bindings
Diffstat (limited to '.emacs.d/lisp/bandali-erc.el')
-rw-r--r-- | .emacs.d/lisp/bandali-erc.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.emacs.d/lisp/bandali-erc.el b/.emacs.d/lisp/bandali-erc.el index 1180e93..a365ac7 100644 --- a/.emacs.d/lisp/bandali-erc.el +++ b/.emacs.d/lisp/bandali-erc.el @@ -161,19 +161,19 @@ ;; global key bindings (global-set-key - (kbd "C-c a e l") + (kbd "C-c e l") (lambda () (interactive) (erc-tls :server "irc.libera.chat" :port 6697 :client-certificate t))) (global-set-key - (kbd "C-c a e o") + (kbd "C-c e o") (lambda () (interactive) (erc-tls :server "irc.oftc.net" :port 6697 :client-certificate t))) (global-set-key - (kbd "C-c a e t") + (kbd "C-c e t") (lambda () (interactive) (erc-tls :server "na.tilde.chat" :port 6697 |