diff options
author | Michael Davis | 2022-02-13 16:42:18 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2022-03-10 08:31:57 +0000 |
commit | eeb3f8e9639e68ea2d54a6be26d45543d01057f6 (patch) | |
tree | b6847b9e8edb0422f6d88bf84f8a6dddb036f373 /helix-syntax/README.md | |
parent | c1f90a127b972c8b41b0d24dcacb3bdd480be9c5 (diff) |
migrate helix-syntax crate into helix-core and helix-term
helix-syntax mostly existed for the sake of the build task which
checks and compiles the submodules. Since we won't be relying on
that process anymore, it doesn't end up making much sense to have
a very thin crate just for some functions that we could port to
helix-core.
The remaining build-related code is moved to helix-term which will
be able to provide grammar builds through the --build-grammars CLI
flag.
Diffstat (limited to 'helix-syntax/README.md')
-rw-r--r-- | helix-syntax/README.md | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/helix-syntax/README.md b/helix-syntax/README.md deleted file mode 100644 index bba2197a..00000000 --- a/helix-syntax/README.md +++ /dev/null @@ -1,13 +0,0 @@ -helix-syntax -============ - -Syntax highlighting for helix, (shallow) submodules resides here. - -Differences from nvim-treesitter --------------------------------- - -As the syntax are commonly ported from -<https://github.com/nvim-treesitter/nvim-treesitter>. - -Note that we do not support the custom `#any-of` predicate which is -supported by neovim so one needs to change it to `#match` with regex. |