Arrows and tab keys do not work in sbt 1.0.3 console

When launching the sbt console with Scala 2.12.4, sbt 1.0.3, MacOS 10.13.1, the arrow keys display the code, for example ^ [[A, and not receiving the last command and tab displays the tab character, not autocompete. If I directly run Scala REPL or run sbt , and then enter the console from the sbt command line, these keys work as expected. So I can get around this problem, it is just annoying. I suspect that there is some part of the configuration that I skip, I just could not find it yet.

+5
source share
1 answer

I had the same problem in sbt 1.1.0. The fix in 1.1.1 release resolved the issue.

Finishes the "Fix" tab in the console while working in batch mode as an sbt console. # 3841 / # 3876 by @ eed3si9n

https://github.com/sbt/sbt/releases/tag/v1.1.1

0
source

Source: https://habr.com/ru/post/1273666/


All Articles