5

如何让 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
4

1 回答 1

10

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

(setq completions-format 'vertical)

注意:这个选项是在 Emacs 23.2 中引入的。

于 2011-01-18T05:50:30.037 回答