如何让Emacs沿列列出建议,而不是行?

简而言之,Emacs给了我这一点:

In this buffer, type RET to select the completion near point.

Possible completions are:
abc1                  abc2                  abc3
abc4                  abc5                  abc6
abc7                  abc8                  abc9
bc1                   bc2                   bc3

但是我希望这样,所以我可以快速扫描一列:

In this buffer, type RET to select the completion near point.

Possible completions are:
abc1                  abc5                  abc9
abc2                  abc6                  bc1
abc3                  abc7                  bc2
abc4                  abc8                  bc3
有帮助吗?

解决方案

将以下内容添加到您的.emacs应该解决问题。

(setq completions-format 'vertical)

笔记: 此选项是在Emacs 23.2中引入的。

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top