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