aboutsummaryrefslogtreecommitdiff
path: root/helix-core/src/lib.rs
diff options
context:
space:
mode:
authorNathan Vegdahl2021-06-14 02:13:31 +0000
committerNathan Vegdahl2021-06-15 01:32:23 +0000
commit0a5580aa21b55947859191a4f33244d77fb794ed (patch)
treef93dc151c4848781268f0888666c9a1bc29a080f /helix-core/src/lib.rs
parent358ea6a37ccc3ee98f3680c9b4ee0dd0aa0781d2 (diff)
Address PR comments.
- Move char functions into their own module under helix_core. - Use matches!() macro where appropriate. - Use a static lifetime on indent_unit() now that we can.
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 79a22547..b11faeab 100644
--- a/helix-core/src/lib.rs
+++ b/helix-core/src/lib.rs
@@ -1,5 +1,6 @@
#![allow(unused)]
pub mod auto_pairs;
+pub mod chars;
pub mod comment;
pub mod diagnostic;
pub mod graphemes;