aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide/src/prime_caches.rs
blob: dbed8a506a89f295e9e75ec774f0a91d3636b6d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//! rust-analyzer is lazy and doesn't not compute anything unless asked. This
//! sometimes is counter productive when, for example, the first goto definition
//! request takes longer to compute. This modules implemented prepopulating of
//! various caches, it's not really advanced at the moment.

use crate::{FileId, RootDatabase};

pub(crate) fn prime_caches(db: &RootDatabase, files: Vec<FileId>) {
    for file in files {
        let _ = crate::syntax_highlighting::highlight(db, file, None, false, None);
    }
}