diff options
author | Case Duckworth | 2021-08-30 22:17:59 -0500 |
---|---|---|
committer | Case Duckworth | 2021-08-30 22:17:59 -0500 |
commit | 374fb06131e94bc9e591797a3026cc788e9bb935 (patch) | |
tree | 7ba54e3cd546596e9f3eed74f6217cbdd319a82e | |
parent | Enable lexical binding in a different way in scratch (diff) | |
download | emacs-374fb06131e94bc9e591797a3026cc788e9bb935.tar.gz emacs-374fb06131e94bc9e591797a3026cc788e9bb935.zip |
Add ace-link-addr to circe
-rw-r--r-- | init.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/init.el b/init.el index 483eba3..1948783 100644 --- a/init.el +++ b/init.el | |||
@@ -1069,6 +1069,8 @@ like a dumbass." | |||
1069 | (define-key ert-results-mode-map "o" #'ace-link-help)) | 1069 | (define-key ert-results-mode-map "o" #'ace-link-help)) |
1070 | (with-eval-after-load 'mastodon | 1070 | (with-eval-after-load 'mastodon |
1071 | (define-key mastodon-mode-map "o" #'ace-link-addr)) | 1071 | (define-key mastodon-mode-map "o" #'ace-link-addr)) |
1072 | (with-eval-after-load 'circe | ||
1073 | (define-key circe-channel-mode-map (kbd "C-o") #'ace-link-addr)) | ||
1072 | ;; And still everything else | 1074 | ;; And still everything else |
1073 | (setq ace-link-fallback-function #'ace-link-addr) | 1075 | (setq ace-link-fallback-function #'ace-link-addr) |
1074 | (global-set-key key #'ace-link))) | 1076 | (global-set-key key #'ace-link))) |
@@ -1156,7 +1158,8 @@ like a dumbass." | |||
1156 | word-wrap t | 1158 | word-wrap t |
1157 | wrap-prefix (repeat-string | 1159 | wrap-prefix (repeat-string |
1158 | (1+ acdw-irc/left-margin) " ")) | 1160 | (1+ acdw-irc/left-margin) " ")) |
1159 | (enable-lui-track-bar)))) | 1161 | ;; (enable-lui-track-bar) |
1162 | ))) | ||
1160 | 1163 | ||
1161 | (setup (:straight (consult | 1164 | (setup (:straight (consult |
1162 | :host github | 1165 | :host github |