diff options
author | Yuchen Pei <id@ypei.org> | 2024-11-17 18:50:34 +1100 |
---|---|---|
committer | Yuchen Pei <id@ypei.org> | 2024-11-17 18:50:34 +1100 |
commit | 1d872e6092d657da9f60bacbfe5ae02079bf1339 (patch) | |
tree | 0a6b381399df87bb1c9ae68eba313acd229b374a /emacs/.emacs.d/init | |
parent | 90b0da4820632a040975ce825c69322e7d7d0d7f (diff) |
[emacs] Fix gnus navigation
- q to bury buffer, rather than doing special funny things
- my-gnus-open-inbox should not auto-open an article
- gnus group mode should not go to next group on exit from summary
Diffstat (limited to 'emacs/.emacs.d/init')
-rw-r--r-- | emacs/.emacs.d/init/ycp-gnus.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/emacs/.emacs.d/init/ycp-gnus.el b/emacs/.emacs.d/init/ycp-gnus.el index 305225f..f25d95a 100644 --- a/emacs/.emacs.d/init/ycp-gnus.el +++ b/emacs/.emacs.d/init/ycp-gnus.el @@ -151,7 +151,8 @@ "p" #'previous-line "m" #'my-gnus-group-compose "M-&" nil - "<RET>" #'my-gnus-topic-select-group) + "<RET>" #'my-gnus-topic-select-group + "q" #'bury-buffer) (add-hook 'gnus-group-mode-hook 'gnus-topic-mode) ) @@ -182,6 +183,7 @@ ") (setq gnus-thread-sort-functions '(gnus-thread-sort-by-most-recent-date)) + (setq gnus-summary-next-group-on-exit nil) ) (my-package nnrss |