We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 817e74a commit 4301b95Copy full SHA for 4301b95
1 file changed
src/server.rs
@@ -442,19 +442,19 @@ impl Backend {
442
}
443
444
fn should_install(&self) -> bool {
445
- self.get_setting("installVale") == Some(Value::Bool(true))
+ self.get_setting("vale-ls.installVale") == Some(Value::Bool(true))
446
447
448
fn config_path(&self) -> String {
449
- self.get_string("configPath")
+ self.get_string("vale-ls.configPath")
450
451
452
fn config_filter(&self) -> String {
453
- self.get_string("filter")
+ self.get_string("vale-ls.filter")
454
455
456
fn should_sync(&self) -> bool {
457
- self.get_setting("syncOnStartup") == Some(Value::Bool(true))
+ self.get_setting("vale-ls.syncOnStartup") == Some(Value::Bool(true))
458
459
460
fn root_path(&self) -> String {
0 commit comments