diff options
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(); |