-
Notifications
You must be signed in to change notification settings - Fork 16
Provide clear step by step instructions on how to use this. #59
Comments
Sorry for the documentation. @ksdme is working on his GSoC project: coala Language Server, and we will maintain the documentation well soon. As for your case, I will take a look ASAP. |
Hi @guanzo Maybe you could run |
I ran the command. Now, whenever I open a file in my project, i can see the file contents appear in the terminal where i ran It seems that this npm script is failing:
There's no |
Currently, the issues are only reported when a file save occurs. Try making a small change to the file, reverting it and then saving it, this will force a save, which is not always guaranteed by simply pressing Ctrl+S. |
And a minor observation, If you intend to run coala-vs-code plugin as a client to a standalone TCP server as you doing now, always open your project as a directory i.e using Ctrl+K Ctrl+O otherwise coala will use coala-vs-code's .coafile instead of your config and thereby fail to report. |
@ksdme I'm not purposefully intending to
I just don't know any better and am following the README instructions. Is there an easier way to get this working? |
I downloaded this plugin from the vscode marketplace, expecting it to "just work", sadly this isn't the case. I'm quite new to coala so please excuse any ignorance.
My project folder has a .coafile and I have installed all the "bears". I'm able to run coala on the cmd line and see the syntax errors. Now I want to use this plugin to show syntax errors directly in vscode.
What I've tried by following the README directions:
git clone https://github.com/coala/coala-vs-code
cd coala-vs-code
pip3 install -r requirements.txt
.python3 langserver-python.py --mode=tcp --addr=2087
can't open file 'langserver-python.py': [Errno 2] No such file or directory
coala-langserver.py
, so I try using that instead oflangserver-python.py
python3 coala-langserver.py --mode=tcp --addr=2087
Accepting TCP connections on 0.0.0.0:2087
activate
function incoala-vs-code/vs-client/src/extension.ts
coala-vs-code/vscode-client
in vscode.extension.ts
is trying to import modules. It looks like i need to runnpm install
. So i do that.workspace/myProject
.This is what happens when i follow the directions in the README. Please help, what am I doing wrong? I just want red underlines under python syntax errors in my project.
The text was updated successfully, but these errors were encountered: