diff options
author | Jan Hrastnik | 2020-11-03 09:57:12 +0000 |
---|---|---|
committer | Jan Hrastnik | 2020-11-03 09:57:12 +0000 |
commit | 2b44031929c490298cfc29cdd055ca4f22bf4645 (patch) | |
tree | 3452f7cb44b78e43cbbfc99ee62cd36759d4c788 /helix-view/src/commands.rs | |
parent | c9e9fcf7c549fe98f5ac5f13cdee213da9c9ad7a (diff) |
various fixes
Diffstat (limited to 'helix-view/src/commands.rs')
-rw-r--r-- | helix-view/src/commands.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/helix-view/src/commands.rs b/helix-view/src/commands.rs index 905f4e10..1d7737f0 100644 --- a/helix-view/src/commands.rs +++ b/helix-view/src/commands.rs @@ -309,6 +309,10 @@ pub fn append_mode(view: &mut View, _count: usize) { // TODO: I, A, o and O can share a lot of the primitives. +pub fn command_mode(_view: &mut View, _count: usize) { + unimplemented!() +} + // calculate line numbers for each selection range fn selection_lines(state: &State) -> Vec<usize> { let mut lines = state |