mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-29 13:25:09 +00:00
Default to client watching on VS Code
This commit is contained in:
parent
3e2f4e4293
commit
2432f278cb
2 changed files with 3 additions and 3 deletions
|
@ -30,7 +30,7 @@ export class Config {
|
|||
public displayInlayHints = true;
|
||||
public maxInlayHintLength: null | number = null;
|
||||
public excludeGlobs = [];
|
||||
public useClientWatching = false;
|
||||
public useClientWatching = true;
|
||||
public featureFlags = {};
|
||||
// for internal use
|
||||
public withSysroot: null | boolean = null;
|
||||
|
@ -148,7 +148,7 @@ export class Config {
|
|||
this.excludeGlobs = config.get('excludeGlobs') || [];
|
||||
}
|
||||
if (config.has('useClientWatching')) {
|
||||
this.useClientWatching = config.get('useClientWatching') || false;
|
||||
this.useClientWatching = config.get('useClientWatching') || true;
|
||||
}
|
||||
if (config.has('featureFlags')) {
|
||||
this.featureFlags = config.get('featureFlags') || {};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue