diff options
author | Blaž Hrastnik | 2020-10-14 03:09:55 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2020-10-14 04:35:54 +0000 |
commit | 4996f1b4d380000bb2918b7f4a0dd8d6e06474f9 (patch) | |
tree | 03931163fdc3c217916f83e1dac450a5dfe951c3 /helix-term | |
parent | 77ff51cef9d7444e5dca92c03f6b12edce659dae (diff) |
Move insert mode commands to a separate namespace.
Diffstat (limited to 'helix-term')
-rw-r--r-- | helix-term/src/editor.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/editor.rs b/helix-term/src/editor.rs index 134dee50..3ebe5971 100644 --- a/helix-term/src/editor.rs +++ b/helix-term/src/editor.rs @@ -330,7 +330,7 @@ impl Editor { .. } = event { - commands::insert_char(view, c); + commands::insert::insert_char(view, c); } view.ensure_cursor_in_view(); |