diff options
author | Blaž Hrastnik | 2020-09-09 05:41:12 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2020-09-09 05:41:12 +0000 |
commit | 7eac12a4bb02aaa96f63de612077a12df1d5fedc (patch) | |
tree | c54b40453427e9f029577d710ebb92325a4d4349 /helix-term | |
parent | 563e094916b6e0d3ef0fafe8141372116e35ebde (diff) |
Add helix-syntax as a wrapper around tree-sitter parsers.
Diffstat (limited to 'helix-term')
-rw-r--r-- | helix-term/Cargo.toml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/helix-term/Cargo.toml b/helix-term/Cargo.toml index e6aa68d3..ce3add5c 100644 --- a/helix-term/Cargo.toml +++ b/helix-term/Cargo.toml @@ -14,6 +14,8 @@ path = "src/main.rs" # termwiz = { git = "https://github.com/wez/wezterm", features = ["widgets"] } # termwiz = { path = "../../wezterm/termwiz", default-features = false, features = ["widgets"] } +helix-syntax = { path = "../helix-syntax" } + anyhow = "1" argh = "0.1.3" helix-core = { path = "../helix-core" } |