-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve development experience #192
Conversation
README.md
Outdated
|
||
- Clone the [ruff-lsp](https://github.com/charliermarsh/ruff-lsp) to e.g. `../ruff-lsp` | ||
- Go to `../ruff-lsp` and run `pip install -t ../ruff-vscode/bundled/libs/ -e .` | ||
- If you want to use a custom ruff build, copy or link it to `bundles/libs/bin/ruff` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can also change the path in the extension settings
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good point, changed
# Don't repeat every message | ||
"pygls.protocol": { | ||
"level": "WARN", | ||
"handlers": ["stderr"], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is my assumption correct that this writes to stderr and not the output pane?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It also writes to the output pane just in red instead of blue
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh nice. Is this because the vs code extension redirects stderr to the output panel?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, i think they generally just gather all output
Will use this opportunity to annoyingly comment on a couple procedural nits:
|
Will do! |
Internal improvements that making working on the extension easier: