aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
Diffstat (limited to 'crates')
-rw-r--r--crates/rust-analyzer/src/config.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/rust-analyzer/src/config.rs b/crates/rust-analyzer/src/config.rs
index fa8472e62..42e1ad376 100644
--- a/crates/rust-analyzer/src/config.rs
+++ b/crates/rust-analyzer/src/config.rs
@@ -79,7 +79,7 @@ pub struct LensConfig {
79 79
80impl Default for LensConfig { 80impl Default for LensConfig {
81 fn default() -> Self { 81 fn default() -> Self {
82 Self { run: true, debug: true, implementations: true, method_refs: true } 82 Self { run: true, debug: true, implementations: true, method_refs: false }
83 } 83 }
84} 84}
85 85
@@ -467,7 +467,7 @@ config_data! {
467 lens_enable: bool = true, 467 lens_enable: bool = true,
468 lens_implementations: bool = true, 468 lens_implementations: bool = true,
469 lens_run: bool = true, 469 lens_run: bool = true,
470 lens_methodReferences: bool = true, 470 lens_methodReferences: bool = false,
471 471
472 linkedProjects: Vec<ManifestOrProjectJson> = Vec::new(), 472 linkedProjects: Vec<ManifestOrProjectJson> = Vec::new(),
473 lruCapacity: Option<usize> = None, 473 lruCapacity: Option<usize> = None,