aboutsummaryrefslogtreecommitdiff
path: root/book/src/keymap.md
diff options
context:
space:
mode:
authorJJ2023-11-01 03:55:00 +0000
committerJJ2023-11-01 04:08:59 +0000
commita4394d502f8ee551660af5c8f04545cca349efb9 (patch)
tree14c1bbb3e9d9ce56e5168a123bd45dae8fde4810 /book/src/keymap.md
parent49b1f2a869be199aaba97e6a4d74995c5161d7b0 (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 'book/src/keymap.md')
-rw-r--r--book/src/keymap.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/book/src/keymap.md b/book/src/keymap.md
index 82910fe3..dc0786be 100644
--- a/book/src/keymap.md
+++ b/book/src/keymap.md
@@ -72,6 +72,7 @@ Normal mode is the default mode when you launch helix. Return to it from other m
| `a` | Insert after selection (append) | `append_mode` |
| `I` | Insert at the start of the line | `insert_at_line_start` |
| `A` | Insert at the end of the line | `insert_at_line_end` |
+| `\` | Insert digraphs | `insert_digraph` |
| `o` | Open new line below selection | `open_below` |
| `O` | Open new line above selection | `open_above` |
| `.` | Repeat last insert | N/A |