diff options
author | Blaž Hrastnik | 2021-06-18 08:31:31 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-06-20 07:38:58 +0000 |
commit | 9275021497fc13938317b681319ba571c8d5f478 (patch) | |
tree | 40e54a40a2d97eade3fcf3531bbf52559395970a /helix-core | |
parent | 59c59deb464d347be796735b2d15f5a19a38bf3f (diff) |
ui: prompt: Better unicode support
We copied over eval_movement from wezterm, that already solves most of
our problems. self.cursor is now byte-based.
Diffstat (limited to 'helix-core')
-rw-r--r-- | helix-core/Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-core/Cargo.toml b/helix-core/Cargo.toml index 346dc050..bab062e1 100644 --- a/helix-core/Cargo.toml +++ b/helix-core/Cargo.toml @@ -19,9 +19,9 @@ helix-syntax = { version = "0.2", path = "../helix-syntax" } ropey = "1.3" smallvec = "1.4" tendril = "0.4.2" -unicode-segmentation = "1.7.1" +unicode-segmentation = "1.7" unicode-width = "0.1" -unicode-general-category = "0.4.0" +unicode-general-category = "0.4" # slab = "0.4.2" tree-sitter = "0.19" once_cell = "1.8" |