sbt/vscode-sbt-scala/client
Eugene Yokota 136dcb16d9 Fix VS Code extension startup
The change contributed in https://github.com/sbt/sbt/pull/4130 to start sbt within VS Code looked ok at first, but when I published the extension and started using it, I realized that it's a bit broken.
Basically there's no cleanup logic (that I could find), so simply closing VS Code would leave `project/target/active.json` behind, which lets VS Code extension to attempt connection, and it fails because there's no server running. To workaround this, I'll attempt to connect to the socket to confirm sbt server is up.
2018-04-30 22:50:23 -04:00
..
images update logo to a white background version 2017-10-03 18:22:14 -04:00
src Fix VS Code extension startup 2018-04-30 22:50:23 -04:00
syntaxes Add Scala syntax from daltonjorge/vscode-scala 2017-10-03 18:19:25 -04:00
.vscodeignore begins language server protocol 2017-10-02 04:01:13 -04:00
README.md Bump vscode-sbt-scala version to 0.1.0 2017-11-30 12:35:40 -05:00
language-configuration.json Add Scala syntax from daltonjorge/vscode-scala 2017-10-03 18:19:25 -04:00
package-lock.json Bump npm modules for VS Code extension 2018-04-27 19:59:56 -04:00
package.json Fix VS Code extension startup 2018-04-30 22:50:23 -04:00
tsconfig.json begins language server protocol 2017-10-02 04:01:13 -04:00

README.md

Scala language support using sbt

This is an experimental Scala language support using sbt as the language server.

To try this, use sbt 1.1.0-RC1 or above.

  • Saving *.scala will trigger compile task.
  • Jump to definition support for class names.