commit fd6badaa23802f292e84971498f1f57318443671 from: Stefan Sperling date: Fri Sep 23 10:01:59 2022 UTC tweak view name display in the help screen for clarity commit - e19e72cd92d3e8ca6800a46a1c3d5992afc55ea4 commit + fd6badaa23802f292e84971498f1f57318443671 blob - f02e85750955d40c7da94cf95ffa1a38b767c866 blob + 4726687bd5adad96fbe2b59c6da0325ed5a3d993 --- tog/tog.c +++ tog/tog.c @@ -549,7 +549,7 @@ struct tog_help_view_state { KEY_("q", "Quit the focussed view; Quit help screen"), \ KEY_("Q", "Quit tog"), \ \ - KEYMAP_("Log", TOG_KEYMAP_LOG), \ + KEYMAP_("Log view", TOG_KEYMAP_LOG), \ KEY_("< ,", "Move cursor up one commit"), \ KEY_("> .", "Move cursor down one commit"), \ KEY_("Enter", "Open diff view of the selected commit"), \ @@ -562,7 +562,7 @@ struct tog_help_view_state { KEY_("C-g Backspace", "Cancel current search or log operation"), \ KEY_("C-l", "Reload the log view with new commits in the repository"), \ \ - KEYMAP_("Diff", TOG_KEYMAP_DIFF), \ + KEYMAP_("Diff view", TOG_KEYMAP_DIFF), \ KEY_("K < ,", "Display diff of next line in the file/log entry"), \ KEY_("J > .", "Display diff of previous line in the file/log entry"), \ KEY_("A", "Toggle between Myers and Patience diff algorithm"), \ @@ -576,7 +576,7 @@ struct tog_help_view_state { KEY_("]", "Increase the number of context lines"), \ KEY_("w", "Toggle ignore whitespace-only changes in the diff"), \ \ - KEYMAP_("Blame", TOG_KEYMAP_BLAME), \ + KEYMAP_("Blame view", TOG_KEYMAP_BLAME), \ KEY_("Enter", "Display diff view of the selected line's commit"), \ KEY_("A", "Toggle diff algorithm between Myers and Patience"), \ KEY_("L", "Open log view for the currently selected annotated line"), \ @@ -586,7 +586,7 @@ struct tog_help_view_state { KEY_("p", "Reload view with the version of the file found in the" \ " selected line's parent commit"), \ \ - KEYMAP_("Tree", TOG_KEYMAP_TREE), \ + KEYMAP_("Tree view", TOG_KEYMAP_TREE), \ KEY_("Enter", "Enter selected directory or open blame view of the" \ " selected file"), \ KEY_("L", "Open log view for the selected entry"), \ @@ -594,7 +594,7 @@ struct tog_help_view_state { KEY_("i", "Show object IDs for all tree entries"), \ KEY_("Backspace", "Return to the parent directory"), \ \ - KEYMAP_("Ref", TOG_KEYMAP_REF), \ + KEYMAP_("Ref view", TOG_KEYMAP_REF), \ KEY_("Enter", "Display log view of the selected reference"), \ KEY_("T", "Display tree view of the selected reference"), \ KEY_("i", "Toggle display of IDs for all non-symbolic references"), \