-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Expose a number of cli arguments (#116)
- `--cache-dir`, optionally allows for Language Clients to specify the directory where cached data should be stored. If not given the Language Server will choose a directory based on a hash of the `conf.py`'s filepath. Closes #115 - `--hide-sphinx-output`, allows for Language Clients to prevent Sphinx's build log from being shown. - `--log-filter`, allows for Language Clients to restrict log output to specific loggers. Can be given multiple times. Closes #113 - `--log-level`, allows for Language Clients to specify the verbosity of the log they wish to receive. Closes #87 - `-p`, `--port`, allows for Language Clients to interact with the Language Server over TCP, while setting the port number they wish to use. Closes #114
- Loading branch information
Showing
7 changed files
with
101 additions
and
29 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,4 @@ | ||
Add ``log-filter`` cli argument that allows Language Clients to choose | ||
which loggers they want to recieve messages from. Also add | ||
``--hide-sphinx-output`` cli argument that can suppress Sphinx's build | ||
log as it it handled separately. |
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,2 @@ | ||
Add ``-p``, ``--port`` cli arguments that start the Language Server in | ||
TCP mode while specifying the port number to listen on. |
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,2 @@ | ||
Add ``--cache-dir`` cli argument that allows Language Clients to | ||
specify where cached data should be stored e.g. Sphinx's build output. |
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,2 @@ | ||
Add ``--log-level`` cli argument that allows Language Clients to | ||
control the verbosity of the Language Server's log output. |
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
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
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