Skip to content

Commit 557b509

Browse files
committed
Fix word
1 parent d08dd72 commit 557b509

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ The default key bindings can be overridden. Please refer to [default-keybind.tom
216216
| <kbd>Ctrl-f/b</kbd> | Scroll page down/up | `page_down` `page_up` |
217217
| <kbd>Ctrl-d/u</kbd> | Scroll half page down/up | `half_page_down` `half_page_up` |
218218
| <kbd>g/G</kbd> | Go to top/bottom | `go_to_top` `go_to_bottom` |
219-
| <kbd>J/K</kbd> | Select next/previous commit | `select_down` `select_up` |
219+
| <kbd>J/K</kbd> | Select older/newer commit | `select_down` `select_up` |
220220
| <kbd>c/C</kbd> | Copy commit short/full hash | `short_copy` `full_copy` |
221221
| <kbd>d</kbd> | Toggle custom user command view | `user_command_view_toggle_1` |
222222

@@ -240,7 +240,7 @@ The default key bindings can be overridden. Please refer to [default-keybind.tom
240240
| <kbd>Ctrl-f/b</kbd> | Scroll page down/up | `page_down` `page_up` |
241241
| <kbd>Ctrl-d/u</kbd> | Scroll half page down/up | `half_page_down` `half_page_up` |
242242
| <kbd>g/G</kbd> | Go to top/bottom | `go_to_top` `go_to_bottom` |
243-
| <kbd>J/K</kbd> | Select next/previous commit | `select_down` `select_up` |
243+
| <kbd>J/K</kbd> | Select older/newer commit | `select_down` `select_up` |
244244

245245
#### Help
246246

src/view/help.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -288,8 +288,8 @@ fn build_lines(
288288
(vec![UserEvent::HalfPageUp], "Scroll half page up".into()),
289289
(vec![UserEvent::GoToTop], "Go to top".into()),
290290
(vec![UserEvent::GoToBottom], "Go to bottom".into()),
291-
(vec![UserEvent::SelectDown], "Select next commit".into()),
292-
(vec![UserEvent::SelectUp], "Select previous commit".into()),
291+
(vec![UserEvent::SelectDown], "Select older commit".into()),
292+
(vec![UserEvent::SelectUp], "Select newer commit".into()),
293293
(vec![UserEvent::ShortCopy], "Copy commit short hash".into()),
294294
(vec![UserEvent::FullCopy], "Copy commit hash".into()),
295295
];
@@ -318,8 +318,8 @@ fn build_lines(
318318
(vec![UserEvent::HalfPageUp], "Scroll half page up".into()),
319319
(vec![UserEvent::GoToTop], "Go to top".into()),
320320
(vec![UserEvent::GoToBottom], "Go to bottom".into()),
321-
(vec![UserEvent::SelectDown], "Select next commit".into()),
322-
(vec![UserEvent::SelectUp], "Select previous commit".into()),
321+
(vec![UserEvent::SelectDown], "Select older commit".into()),
322+
(vec![UserEvent::SelectUp], "Select newer commit".into()),
323323
];
324324
user_command_helps.extend(user_command_view_toggle_helps);
325325
let (user_command_key_lines, user_command_value_lines) = build_block_lines("User Command:", user_command_helps, color_theme, keybind);

0 commit comments

Comments
 (0)