移至下一条消息
我有这样的消息行:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了一个解决方案:
I have found a solution: