Skip to content

Commit

Permalink
readme: fixe desc for ;, and ,
Browse files Browse the repository at this point in the history
Signed-off-by: aserowy <serowy@hotmail.com>
  • Loading branch information
aserowy committed Sep 15, 2024
1 parent 1286d54 commit a7e9fb8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,12 @@ In normal mode, all register interactions target the default register (equal to
| 0, $ | move cursor to line start/end |
| f\<char>, F\<char> | move cursor to next char forward/backward |
| t\<char>, T\<char> | move cursor before next char forward/backward |
| ; | repeat the last find motion with f or t. |
| , | repeat the last find motion with f or t in reverse direction. |
| e | move cursor to end of next word |
| E | move cursor to end of next WORD |
| w | move cursor to next word |
| W | move cursor to next WORD |
| ; | repeat the last motion with f or t. |
| , | repeat the last motion with f or t in reverse direction. |
| i, a | change to insert mode |
| c\<motion> | delete according to motion and change to insert mode |
| d\<motion> | delete according to motion |
Expand Down
2 changes: 2 additions & 0 deletions yeet-buffer/src/update/cursor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,9 @@ pub fn update_cursor_by_direction(
word::move_cursor_to_word_start(model, true);
}

// word start invert content and next line
CursorDirection::WordEndBackward => todo!(),
// word end invert content and next line
CursorDirection::WordStartBackward => todo!(),
CursorDirection::WordUpperEndBackward => todo!(),
CursorDirection::WordUpperStartBackward => todo!(),
Expand Down

0 comments on commit a7e9fb8

Please sign in to comment.