diff options
author | Linden Krouse | 2024-05-01 21:22:02 +0000 |
---|---|---|
committer | JJ | 2024-05-01 23:54:41 +0000 |
commit | bbc1a3cc99644e5be1030b5ed8d51928c821b866 (patch) | |
tree | 2c15ffd41c6af83844a3c56b59e3ba14e10154e7 /helix-term/src/keymap | |
parent | cd2202fd54e5458371f8f15c149686f6c0933a9e (diff) |
Add support for Unicode input
ref: https://github.com/helix-editor/helix/issues/1438
ref: https://github.com/helix-editor/helix/pull/2852
Diffstat (limited to 'helix-term/src/keymap')
-rw-r--r-- | helix-term/src/keymap/default.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/helix-term/src/keymap/default.rs b/helix-term/src/keymap/default.rs index 5b165613..3cd4c0e3 100644 --- a/helix-term/src/keymap/default.rs +++ b/helix-term/src/keymap/default.rs @@ -138,6 +138,8 @@ pub fn default() -> HashMap<Mode, KeyTrie> { "N" => search_prev, "*" => search_selection, + "\\" => insert_digraph, + "u" => undo, "U" => redo, "A-u" => earlier, |