blob: 4fd2e1f100264afb1c38025cb436db3376f19828 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
--- helix-loader/src/grammar.rs.orig 2022-03-30 19:54:07 UTC
+++ helix-loader/src/grammar.rs
@@ -79,8 +79,7 @@ pub fn fetch_grammars() -> Result<()> {
// We do not need to fetch local grammars.
let mut grammars = get_grammar_configs()?;
grammars.retain(|grammar| !matches!(grammar.source, GrammarSource::Local { .. }));
-
- run_parallel(grammars, fetch_grammar, "fetch")
+ Ok(())
}
pub fn build_grammars() -> Result<()> {
|