mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 13:03:31 +00:00
parent
84d6cdef86
commit
e821aa842b
1 changed files with 9 additions and 8 deletions
|
@ -165,7 +165,8 @@ impl NotifyActor {
|
||||||
let mut res = Vec::new();
|
let mut res = Vec::new();
|
||||||
|
|
||||||
for root in dirs.include.iter() {
|
for root in dirs.include.iter() {
|
||||||
let walkdir = WalkDir::new(root).into_iter().filter_entry(|entry| {
|
let walkdir =
|
||||||
|
WalkDir::new(root).follow_links(true).into_iter().filter_entry(|entry| {
|
||||||
if !entry.file_type().is_dir() {
|
if !entry.file_type().is_dir() {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue