代码之家  ›  专栏  ›  技术社区  ›  VitoshKa

如何在gnus中将已经读过的文章提取到摘要缓冲区中?

  •  16
  • VitoshKa  · 技术社区  · 15 年前

    在summary buffer中,如何使gnus在两种情况下获取已读的文章:

    1. 而在一个线程中有些文章已经读过(因此不可见)。我想完成所有文章的主题(不仅仅是家长!)已读或未读。

    非常感谢!

    4 回复  |  直到 11 年前
        1
  •  23
  •   Gilles 'SO- stop being evil'    15 年前

    在摘要缓冲区中,要获取父级,请使用 ^ ( gnus-summary-refer-parent-article )(也可作为 <menu-bar> <Article> <Fetch parent of article>

    A T gnus-summary-refer-thread <menu-bar> <Article> <Fetch current thread> ).

    要获取更多文章,请使用 / o ( gnus-summary-insert-old-articles )(也可作为 <menu-bar> <Gnus> <See old articles> ).

        2
  •  2
  •   Noufal Ibrahim    15 年前

    (setq gnus-fetch-old-headers 'some) 
    

    在你的 .gnus

    第二,当您选择组时,它应该询问您要获取多少旧文章。那不管用吗?

        3
  •  1
  •   gavenkoa    13 年前

    ^ / o M-^ ( gnus-summary-refer-article )当你处理疼痛信息时(你可以通过 C-u g ).

    gnus-summary-refer-parent-article gnus摘要参考文章 ...

        4
  •  0
  •   xcodebuild    10 年前
    (defun codefalling/gnus-show-all ()
      "Show all mail"
      (interactive)
      (gnus-summary-insert-old-articles t) ;; show all, or t->50 to show 50 old mail
      (goto-char (point-min)))
    
    (add-hook 'gnus-summary-mode-hook '(lambda () (run-with-idle-timer 0.1 nil 'codefalling/gnus-show-all)))
    

    推荐文章