diff options
author | JJ | 2023-11-01 03:55:00 +0000 |
---|---|---|
committer | JJ | 2023-11-01 04:08:59 +0000 |
commit | a4394d502f8ee551660af5c8f04545cca349efb9 (patch) | |
tree | 14c1bbb3e9d9ce56e5168a123bd45dae8fde4810 /helix-view/src/lib.rs | |
parent | 49b1f2a869be199aaba97e6a4d74995c5161d7b0 (diff) |
Add support for Unicode input
note: a better approach is here https://github.com/quantonganh/snippets-ls
ref: https://github.com/helix-editor/helix/issues/1438
ref: https://github.com/helix-editor/helix/pull/2852
Co-authored-by: Linden Krouse <ztaticnull@gmail.com>
Diffstat (limited to 'helix-view/src/lib.rs')
-rw-r--r-- | helix-view/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-view/src/lib.rs b/helix-view/src/lib.rs index 6a68e7d6..250edc4c 100644 --- a/helix-view/src/lib.rs +++ b/helix-view/src/lib.rs @@ -12,6 +12,7 @@ pub mod handlers { pub mod lsp; } pub mod base64; +pub mod digraph; pub mod info; pub mod input; pub mod keyboard; |