diff options
author | Ivan Tham | 2021-06-12 17:00:50 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-06-14 16:06:53 +0000 |
commit | 1bda4541491bf0fc8129214bb52515a32b8d4978 (patch) | |
tree | 633ec63cade566a1b51c39764cc5b0b9252aac85 /helix-core/src | |
parent | e819121f6e3a462b57e728fe5156783e1a8a3035 (diff) |
Add ctrl-w for prompt
Diffstat (limited to 'helix-core/src')
-rw-r--r-- | helix-core/src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/helix-core/src/lib.rs b/helix-core/src/lib.rs index e37175c1..79a22547 100644 --- a/helix-core/src/lib.rs +++ b/helix-core/src/lib.rs @@ -94,6 +94,8 @@ pub use ropey::{Rope, RopeSlice}; pub use tendril::StrTendril as Tendril; +pub use unicode_general_category::get_general_category; + #[doc(inline)] pub use {regex, tree_sitter}; |