mirror of https://github.com/helix-editor/helix
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
248 B
Rust
10 lines
248 B
Rust
2 years ago
|
use anyhow::Result;
|
||
|
use helix_loader::grammar::fetch_grammars;
|
||
|
|
||
|
// This binary is used in the Release CI as an optimization to cut down on
|
||
|
// compilation time. This is not meant to be run manually.
|
||
|
|
||
|
fn main() -> Result<()> {
|
||
|
fetch_grammars()
|
||
|
}
|