aboutsummaryrefslogtreecommitdiff
path: root/helix-core/src/lib.rs
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-03-22 08:58:49 +0000
committerBlaž Hrastnik2021-03-22 08:58:49 +0000
commit73c92a0bc1499f02092a7425c45d4992f4e573a1 (patch)
tree1de38a0f16e3acd44998b1f8368df726a7962e0c /helix-core/src/lib.rs
parentbd607b4cbd58e2bff06e36f614ff61b7d1a721c3 (diff)
Implement m / match_brackets (using tree sitter).
Diffstat (limited to 'helix-core/src/lib.rs')
-rw-r--r--helix-core/src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-core/src/lib.rs b/helix-core/src/lib.rs
index a8a449ca..30b3d37f 100644
--- a/helix-core/src/lib.rs
+++ b/helix-core/src/lib.rs
@@ -6,6 +6,7 @@ pub mod graphemes;
mod history;
pub mod indent;
pub mod macros;
+pub mod match_brackets;
pub mod movement;
pub mod object;
mod position;