Remove vscode_lldb setting

This commit is contained in:
Aleksey Kladov
2020-04-02 12:56:14 +02:00
parent e21bf1b2b9
commit 7a4ebd2c8d
3 changed files with 18 additions and 20 deletions

View File

@@ -19,8 +19,6 @@ pub struct Config {
pub with_sysroot: bool,
pub publish_diagnostics: bool,
// TODO: move to experimental capabilities
pub vscode_lldb: bool,
pub lru_capacity: Option<usize>,
pub proc_macro_srv: Option<String>,
pub files: FilesConfig,
@@ -78,7 +76,6 @@ impl Default for Config {
with_sysroot: true,
publish_diagnostics: true,
vscode_lldb: false,
lru_capacity: None,
proc_macro_srv: None,
files: FilesConfig { watcher: FilesWatcher::Notify, exclude: Vec::new() },
@@ -122,7 +119,6 @@ impl Config {
set(value, "/withSysroot", &mut self.with_sysroot);
set(value, "/featureFlags/lsp.diagnostics", &mut self.publish_diagnostics);
set(value, "/vscodeLldb", &mut self.vscode_lldb);
set(value, "/lruCapacity", &mut self.lru_capacity);
if let Some(watcher) = get::<String>(value, "/files/watcher") {
self.files.watcher = match watcher.as_str() {