summaryrefslogtreecommitdiff
path: root/support/texlab/src/util.rs
diff options
context:
space:
mode:
Diffstat (limited to 'support/texlab/src/util.rs')
-rw-r--r--support/texlab/src/util.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/support/texlab/src/util.rs b/support/texlab/src/util.rs
index 1c4d55a19d..6f27305f1b 100644
--- a/support/texlab/src/util.rs
+++ b/support/texlab/src/util.rs
@@ -7,9 +7,10 @@ pub mod lang_data;
pub mod line_index;
pub mod line_index_ext;
pub mod lsp_enums;
+pub mod regex_filter;
use std::path::PathBuf;
use once_cell::sync::Lazy;
-pub static HOME_DIR: Lazy<Option<PathBuf>> = Lazy::new(|| dirs::home_dir());
+pub static HOME_DIR: Lazy<Option<PathBuf>> = Lazy::new(dirs::home_dir);