-
Notifications
You must be signed in to change notification settings - Fork 1.1k
docs: add LSP server configuration guide to README #1234
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
Conversation
README.md
Outdated
|
|
||
| ## 🔧 Configuring LSP Servers | ||
|
|
||
| GitHub Copilot CLI supports Language Server Protocol (LSP) for enhanced code intelligence. This feature is currently experimental and provides intelligent code features like go-to-definition, hover information, and diagnostics. |
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.
| GitHub Copilot CLI supports Language Server Protocol (LSP) for enhanced code intelligence. This feature is currently experimental and provides intelligent code features like go-to-definition, hover information, and diagnostics. | |
| GitHub Copilot CLI supports Language Server Protocol (LSP) for enhanced code intelligence. This feature provides intelligent code features like go-to-definition, hover information, and diagnostics. |
Rolled out to all users on Friday.
README.md
Outdated
| ### Enabling LSP Support | ||
|
|
||
| To use LSP features, you must enable experimental mode: | ||
|
|
||
| ```bash | ||
| copilot --experimental | ||
| ``` | ||
|
|
||
| Or use the `/experimental` command within an interactive session. | ||
|
|
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.
| ### Enabling LSP Support | |
| To use LSP features, you must enable experimental mode: | |
| ```bash | |
| copilot --experimental | |
| ``` | |
| Or use the `/experimental` command within an interactive session. |
README.md
Outdated
| "typescript": { | ||
| "command": "typescript-language-server", | ||
| "args": ["--stdio"], | ||
| "disabled": false, |
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.
| "disabled": false, |
|
Please update with suggestions, and then this is ready. Thanks for the contribution @SDSLeon! |
This PR adds documentation for configuring LSP servers.