[PATCH] gitk: fix information in the key bindings dialog
From: Gil Magno <hidden>
Date: 2021-11-12 19:18:09
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Gil Magno <hidden>
Date: 2021-11-12 19:18:09
Subsystem:
the rest · Maintainer:
Linus Torvalds
Fix the explaination of what the "b" key does in gitk. It does not scroll the diff view up one page, but scroll it to previous file. Signed-off-by: Gil Magno <redacted> --- gitk-git/gitk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gitk-git/gitk b/gitk-git/gitk
index 23d9dd1fe0..6bf3c4d6bb 100755
--- a/gitk-git/gitk
+++ b/gitk-git/gitk@@ -3106,7 +3106,7 @@ proc keys {} { [mc "<%s-PageDown> Scroll commit list down one page" $M1T] [mc "<Shift-Up> Find backwards (upwards, later commits)"] [mc "<Shift-Down> Find forwards (downwards, earlier commits)"] -[mc "<Delete>, b Scroll diff view up one page"] +[mc "<Delete> Scroll diff view up one page"] [mc "<Backspace> Scroll diff view up one page"] [mc "<Space> Scroll diff view down one page"] [mc "u Scroll diff view up 18 lines"]
@@ -3118,6 +3118,7 @@ proc keys {} { [mc "/ Focus the search box"] [mc "? Move to previous find hit"] [mc "f Scroll diff view to next file"] +[mc "b Scroll diff view to previous file"] [mc "<%s-S> Search for next hit in diff view" $M1T] [mc "<%s-R> Search for previous hit in diff view" $M1T] [mc "<%s-KP+> Increase font size" $M1T]
--
2.20.1