让 Scala 的 REPL 选项卡完成向下读取列而不是跨行?
Scala REPL 中制表符补全的输出跨行读取,项目在开始新行之前从左到右排序。这对我来说感觉很尴尬;我习惯于在开始新专栏之前阅读从上到下排序的列表。有什么方法可以更改输出,使其读取列?
The output of tab completion in the Scala REPL reads across rows, with items sorted left to right before beginning a new row. This feels awkward to me; I'm used to reading lists that are sorted top-to-bottom before beginning a new column. Is there any way to change the output so that it reads down columns, instead?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Scala REPL 使用 jline 来正确完成。
查看 jline 的代码,您可以看到
CandidateListCompletionHandler.printCandidates(...)
调用reader.printColumns(candidates)
,这里是复制/粘贴的。正如你所看到的,没有办法在列模式而不是行模式下对完成候选进行排序,也许你能做的最好的事情就是修补 jline 并将其替换到你的 scala/lib/ 目录中。
Scala REPL use jline in order to have proper completion.
Looking into the code of jline, you can see that
CandidateListCompletionHandler.printCandidates(...)
callreader.printColumns(candidates)
which is copy/paste here.As you can see, there is no way to sort completion candidates in colomn mode instead of line mode, maybe the best you can do is to patch jline and replace it in your scala/lib/ directory.