We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 09ae159 + cd69678 commit a429358Copy full SHA for a429358
1 file changed
crates/rust-analyzer/src/reload.rs
@@ -582,7 +582,8 @@ impl GlobalState {
582
[
583
(base.clone(), "**/*.rs"),
584
(base.clone(), "**/Cargo.{lock,toml}"),
585
- (base, "**/rust-analyzer.toml"),
+ (base.clone(), "**/rust-analyzer.toml"),
586
+ (base, "**/*.md"),
587
]
588
})
589
@@ -607,6 +608,7 @@ impl GlobalState {
607
608
format!("{base}/**/*.rs"),
609
format!("{base}/**/Cargo.{{toml,lock}}"),
610
format!("{base}/**/rust-analyzer.toml"),
611
+ format!("{base}/**/*.md"),
612
613
614
0 commit comments