diff options
author | Jan Hrastnik | 2020-10-13 16:57:55 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2020-10-16 03:01:21 +0000 |
commit | 7d58378374388c031ad09ceb2e27d4a0792d636e (patch) | |
tree | 087f82de0253f16458db12b4f608a8ed5d5435b9 /helix-core | |
parent | ed03ec92a825b8e42005f2f8506b0f3db4923fa5 (diff) |
added move left&right, delete char
Diffstat (limited to 'helix-core')
-rw-r--r-- | helix-core/src/state.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-core/src/state.rs b/helix-core/src/state.rs index 805940fb..bd14850f 100644 --- a/helix-core/src/state.rs +++ b/helix-core/src/state.rs @@ -10,7 +10,7 @@ pub enum Mode { Normal, Insert, Goto, - Prompt, + Command, } /// A state represents the current editor state of a single buffer. |