diff options
author | yvt | 2022-07-20 14:56:26 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2022-08-02 03:04:09 +0000 |
commit | 6d16d2cbc910f2e3e4131fae41a8cd67c287e6a5 (patch) | |
tree | 41055e4b1e0e27fa2105bfba767502f32ee891a7 /helix-term/src | |
parent | f6f054ae5b091a608233b1e3d105e1032a8d676b (diff) |
feat: support grammar cross-compilation
Diffstat (limited to 'helix-term/src')
-rw-r--r-- | helix-term/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/main.rs b/helix-term/src/main.rs index eb186d78..83af7588 100644 --- a/helix-term/src/main.rs +++ b/helix-term/src/main.rs @@ -108,7 +108,7 @@ FLAGS: } if args.build_grammars { - helix_loader::grammar::build_grammars()?; + helix_loader::grammar::build_grammars(None)?; return Ok(0); } |