Skip to content

Commit

Permalink
fix: consistent language across the application and improved style of…
Browse files Browse the repository at this point in the history
… the Help pane.

Generally, what was called `entry` is now called `item`, consistently.
  • Loading branch information
Byron committed Dec 27, 2023
1 parent 1e6db58 commit 20e85c1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/interactive/widgets/help.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,13 +118,13 @@ impl HelpPane {
"Cycle between all open panes.",
Some("Activate 'Marked Items' pane to delete selected files."),
);
hotkey("?", "Show or hide the help.", None);
hotkey("?", "Show or hide this help pane.", None);
spacer();
}
title("Navigation");
{
hotkey("j/<Down>", "Move down.", None);
hotkey("k/<Up>", "Move up.", None);
hotkey("j/<Down>", "Move down 1 item.", None);
hotkey("k/<Up>", "Move up 1 item.", None);
hotkey("o/l/<Enter>", "Descent into the selected directory.", None);
hotkey("<Right>", "^", None);
hotkey(
Expand Down Expand Up @@ -161,7 +161,7 @@ impl HelpPane {
{
hotkey(
"Shift + o",
"Open the item with the associated program.",
"Open the selected item with the associated program.",
None,
);
hotkey(
Expand Down

0 comments on commit 20e85c1

Please sign in to comment.