diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2021-05-11 14:54:10 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-11 14:54:10 +1000 |
commit | 81f8585643faf42edab45f9e8604a0c1d9c7486a (patch) | |
tree | 5c54fa0ac866786cabf83be34f49b96038b88e25 /cli/lsp/config.rs | |
parent | 2b8bac3c85d90de44c00677b015f69fd445c1489 (diff) |
feat(lsp): add internal debugging logging (#10438)
Ref: #10368
Diffstat (limited to 'cli/lsp/config.rs')
-rw-r--r-- | cli/lsp/config.rs | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/cli/lsp/config.rs b/cli/lsp/config.rs index 8cf4a67ef..bc41fd02a 100644 --- a/cli/lsp/config.rs +++ b/cli/lsp/config.rs @@ -113,10 +113,10 @@ pub struct WorkspaceSettings { /// Code lens specific settings for the workspace. #[serde(default)] pub code_lens: CodeLensSettings, - #[serde(default)] - /// Suggestion (auto-completion) settings for the workspace. - pub suggest: CompletionSettings, + /// A flag that indicates if internal debug logging should be made available. + #[serde(default)] + pub internal_debug: bool, /// A flag that indicates if linting is enabled for the workspace. #[serde(default)] @@ -125,6 +125,9 @@ pub struct WorkspaceSettings { /// A flag that indicates if Dene should validate code against the unstable /// APIs for the workspace. #[serde(default)] + pub suggest: CompletionSettings, + + #[serde(default)] pub unstable: bool, } |