Skip to content
This repository was archived by the owner on Feb 1, 2019. It is now read-only.
/ coala-vs-code Public archive

A visual studio code plugin working via Language Server

License

GPL-3.0, Unknown licenses found

Licenses found

GPL-3.0
LICENSE
Unknown
License.txt
Notifications You must be signed in to change notification settings

coala/coala-vs-code

Repository files navigation

coala-vs-code

Build Status codecov

A visual studio code plugin working via Language Server Protocol (LSP).Python versions 3.x is supported.

Feature preview

Setting up your dev environment, coding, and debugging

You'll need python version 3.5 or greater, run pip3 install -r requirements.txt to install the requirements, and run python3 langserver-python.py --mode=tcp --addr=2087 to start a local languager server listening at port 2087.

Then you should update the ./vscode-client/src/extension.ts to make client in TCP mode.

export function activate(context: ExtensionContext) {
-   context.subscriptions.push(startLangServer
-   (require("path").resolve(__dirname, '../coala-langserver.sh'), ["python"]));
+   context.subscriptions.push(startLangServerTCP(2087, ["python"]));
    console.log("coala language server is running.");
}

To try it in Visual Studio Code, open ./vscode-client in VS Code and turn to debug view, launch the extension.

Known bugs

Reference

About

A visual studio code plugin working via Language Server

Resources

License

GPL-3.0, Unknown licenses found

Licenses found

GPL-3.0
LICENSE
Unknown
License.txt

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 10