diff options
-rw-r--r-- | gnus.org | 2 | ||||
-rw-r--r-- | init.org | 11 |
2 files changed, 10 insertions, 3 deletions
@@ -242,8 +242,8 @@ ;; To limit expiration to the `g' count, `jao-gnus--get-count': ;; (remove-hook 'gnus-summary-prepare-exit-hook 'gnus-summary-expire-articles) + ;; (define-key gnus-group-mode-map "g" 'jao-gnus-get-new-news) - (define-key gnus-group-mode-map "g" 'jao-gnus-get-new-news) (define-key gnus-group-mode-map "Z" 'jao-gnus-restart-servers) #+END_SRC * Group parameters @@ -706,7 +706,13 @@ tracking-shorten-modes '()) :config (setq erc-track-enable-keybindings nil) - :bind (("C-c C-SPC" . tracking-next-buffer))) + + (defun jao-tracking-next-buffer () + (interactive) + (jao-afio--goto-main) + (tracking-next-buffer)) + + :bind (("C-c C-SPC" . jao-tracking-next-buffer))) (require 'tracking) @@ -4078,7 +4084,8 @@ Access to spotify uses packages tangled from [[./lib/media/espotify.org][espotify.org]], which offers functionality tailored to the completion engines at hand: #+begin_src emacs-lisp - (jao-maybe-tangle "lib/media/espotify") + ;; (jao-maybe-tangle "lib/media/espotify") + (jao-load-path "espotify") (use-package espotify :demand t) |