diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-03-10 23:38:26 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-03-10 23:39:52 -0400 |
commit | 53d3f1fe5167b7cdf70777609d620edfb2ab9863 (patch) | |
tree | 9e7886bb9d92755ee219a7570afe90204ab6fc31 | |
parent | 82c16354240cc3510aad66158b820d78723c8596 (diff) | |
download | emacs.d-53d3f1fe5167b7cdf70777609d620edfb2ab9863.tar.gz |
Don't select article when go to next gnus group
-rw-r--r-- | lisp/init-gnus.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/init-gnus.el b/lisp/init-gnus.el index d6866de..52e0f5d 100644 --- a/lisp/init-gnus.el +++ b/lisp/init-gnus.el @@ -249,4 +249,9 @@ read. Don't ask to confirm." (gnus-summary-catchup all t)) (gnus-summary-next-group)) +;; From http://ivan.kanis.fr/ivan-gnus.el +(defadvice gnus-summary-next-group (before km/gnus-next-group activate) + "Go to next group without selecting the first article." + (ad-set-arg 0 t)) + (provide 'init-gnus) |