Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
Signed-off-by: Andrei Stan <[email protected]>
  • Loading branch information
andreistan26 committed Feb 9, 2024
1 parent ffcee2e commit ffb1e89
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Binary file removed src/edit_mode/vi/.mod.rs.swp
Binary file not shown.
6 changes: 5 additions & 1 deletion src/edit_mode/vi/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,11 @@ mod test {

assert_eq!(
result,
ReedlineEvent::Multiple(vec![ReedlineEvent::Esc, ReedlineEvent::Repaint])
ReedlineEvent::Multiple(vec![
ReedlineEvent::Left,
ReedlineEvent::Esc,
ReedlineEvent::Repaint
])
);
assert!(matches!(vi.mode, ViMode::Normal));
}
Expand Down

0 comments on commit ffb1e89

Please sign in to comment.