-
Notifications
You must be signed in to change notification settings - Fork 221
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Bartek Iwańczuk <[email protected]>
- Loading branch information
1 parent
132043b
commit 005fcb8
Showing
2 changed files
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# deno lsp | ||
|
||
Starts the Deno language server. The language server is used by editors to provide features like intellisense, code formatting, and more. | ||
|
||
## Command | ||
|
||
`deno lsp [OPTIONS]` | ||
|
||
## Synopsis | ||
|
||
```bash | ||
deno lsp [-q|--quiet] | ||
|
||
deno lsp -h|--help | ||
``` | ||
|
||
## Description | ||
|
||
The 'deno lsp' subcommand provides a way for code editors and IDEs to interact with Deno using the Language Server Protocol. | ||
|
||
Usually humans do not use this subcommand directly. For example, 'deno lsp' can provide IDEs with go-to-definition support and automatic code formatting. | ||
|
||
Read more about [how to connect editors and IDEs to 'deno lsp']( | ||
https://deno.land/[email protected]/getting_started/setup_your_environment#editors-and-ides). | ||
|
||
## Arguments | ||
|
||
There are no required arguments for this command. | ||
|
||
## Options | ||
|
||
- `-q, --quiet` | ||
|
||
Suppress diagnostic output | ||
|
||
- `-h, --help` | ||
|
||
Prints help information | ||
|
||
## Examples | ||
|
||
- Run the command | ||
|
||
```bash | ||
deno lsp | ||
``` | ||
|
||
- Run the command 2 | ||
|
||
```bash | ||
deno lsp2 | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters