Skip to content

A visual studio code plugin working via Language Server

License

Notifications You must be signed in to change notification settings

manankalra/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

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 79.4%
  • Gherkin 10.0%
  • TypeScript 8.7%
  • JavaScript 1.6%
  • Shell 0.3%