diff options
author | Jan Hrastnik | 2020-10-12 22:23:48 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2020-10-16 03:00:28 +0000 |
commit | ed03ec92a825b8e42005f2f8506b0f3db4923fa5 (patch) | |
tree | c7e3da955be3e296c4f2f549fc91c1d4d47a1f3b /helix-core | |
parent | 7208c86f23ac6d75aff62268cff73089c068cf74 (diff) |
moved prompt command matching to prompt.rs
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 bd14850f..805940fb 100644 --- a/helix-core/src/state.rs +++ b/helix-core/src/state.rs @@ -10,7 +10,7 @@ pub enum Mode { Normal, Insert, Goto, - Command, + Prompt, } /// A state represents the current editor state of a single buffer. |