diff options
author | Thanos Apollo <[email protected]> | 2023-05-11 11:51:37 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-05-11 11:51:37 +0300 |
commit | 38cfc0f3105020db87908dc7fd9e12c383ddce3e (patch) | |
tree | 650697f4bf021fe0187fa81d3f35722cb15b8d5d | |
parent | 37ebaea9b6618937bad65c7d8224ca317ec12c74 (diff) |
emacs: fix circe binding error
Fix order for defining kbd for circe after creating thanos/applications-map
-rwxr-xr-x | emacs.org | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1062,8 +1062,6 @@ Create function to watch videos using ~mpv~ :sasl-password ,(password-store-get "liberachat/thanos_apollo") :channels ("#emacs-circe" "#emacs")))) - - (define-key thanos/applications-map (kbd "i") 'circe) #+end_src * Misc ** Random functions @@ -1212,6 +1210,7 @@ Create function to watch videos using ~mpv~ (define-key thanos/applications-map (kbd "m") 'mu4e) (define-key thanos/applications-map (kbd "t") 'counsel-load-theme) (define-key thanos/applications-map (kbd "f") 'elfeed) + (define-key thanos/applications-map (kbd "i") 'circe) (global-set-key (kbd "C-c a") 'thanos/applications-map) (define-prefix-command 'Create) |