如何让emacs列出像ls这样的建议(沿着列)

时间:2011-01-18 02:36:02

标签: sorting emacs autosuggest ls

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

1 个答案:

答案 0 :(得分:7)

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

(setq completions-format 'vertical)

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