Skip to content

Commit

Permalink
Made cargo fmt --call clean
Browse files Browse the repository at this point in the history
  • Loading branch information
adaschma committed Jun 20, 2024
1 parent cb99e51 commit 6ad14b5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/edit_mode/vi/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,10 @@ mod tests {
#[case(&['d'], ReedlineEvent::Multiple(vec![
ReedlineEvent::Edit(vec![EditCommand::CutSelection])]))]
fn test_reedline_move_in_visual_mode(#[case] input: &[char], #[case] expected: ReedlineEvent) {
let mut vi = Vi { mode: ViMode::Visual, ..Default::default()};
let mut vi = Vi {
mode: ViMode::Visual,
..Default::default()
};
let res = vi_parse(input);
let output = res.to_reedline_event(&mut vi);

Expand Down

0 comments on commit 6ad14b5

Please sign in to comment.