From 981274283321957c4b2883891817633b6661a676 Mon Sep 17 00:00:00 2001 From: Dawson Date: Wed, 26 Dec 2018 23:28:24 -0700 Subject: [PATCH] README.md: Change the python file name This fixes python file name and changes it from langserver-python.py --> coala-langserver.py Fixes https://github.com/coala/coala-ls/issues/20 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c7afc71..bc3c839 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ A visual studio code plugin working via [Language Server Protocol (LSP)](https:/ ## 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. +You'll need python version 3.5 or greater, run `pip3 install -r requirements.txt` to install the requirements, and run `python3 coala-langserver.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.