mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-02 22:54:58 +00:00
Make method references CodeLens off by default.
This commit is contained in:
parent
eeb40dbece
commit
b7fda5f936
2 changed files with 3 additions and 3 deletions
|
@ -79,7 +79,7 @@ pub struct LensConfig {
|
|||
|
||||
impl Default for LensConfig {
|
||||
fn default() -> Self {
|
||||
Self { run: true, debug: true, implementations: true, method_refs: true }
|
||||
Self { run: true, debug: true, implementations: true, method_refs: false }
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -467,7 +467,7 @@ config_data! {
|
|||
lens_enable: bool = true,
|
||||
lens_implementations: bool = true,
|
||||
lens_run: bool = true,
|
||||
lens_methodReferences: bool = true,
|
||||
lens_methodReferences: bool = false,
|
||||
|
||||
linkedProjects: Vec<ManifestOrProjectJson> = Vec::new(),
|
||||
lruCapacity: Option<usize> = None,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue