移至下一条消息

发布于 2024-08-31 05:17:59 字数 459 浏览 10 评论 0原文

我有这样的消息行:

message 1
  answer 1.1
     answer 1.1.1
  answer 1.2
  answer 1.3
massage 2
...

我的 .gnus.el 中有该行:

(global-set-key [f9] (lambda () (interactive) (gnus-summary-lower-score-by-subj-substr-temp)))

当我选择“消息 1”并按 F9 下一行:

  • message1
  • 答案 1.1
  • 答案 1.1.1
  • 答案 1.2
  • 答案 1.3

更改分数。

但当我按 F9 时,我需要将选择移动到下一条消息(消息 2)。我怎样才能得到它?

I have a messages line this:

message 1
  answer 1.1
     answer 1.1.1
  answer 1.2
  answer 1.3
massage 2
...

and I have the line in my .gnus.el:

(global-set-key [f9] (lambda () (interactive) (gnus-summary-lower-score-by-subj-substr-temp)))

When I select "message 1" and press F9 next lines:

  • message1
  • answer 1.1
  • answer 1.1.1
  • answer 1.2
  • answer 1.3

change the score.

But I need the selection move to next message (message 2) when I press F9. How can I get it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

贱人配狗天长地久 2024-09-07 05:17:59

我找到了一个解决方案:

(global-set-key [f9] 
(lambda () 
  (interactive) 
  (gnus-summary-lower-score-by-subj-substr-temp)
  (gnus-summary-next-thread 1)))  ;; lower by subject

I have found a solution:

(global-set-key [f9] 
(lambda () 
  (interactive) 
  (gnus-summary-lower-score-by-subj-substr-temp)
  (gnus-summary-next-thread 1)))  ;; lower by subject
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文