commit - 94ecf40da5315d7cb59ff90ac23614ac0f2a4f3a
commit + 1be4947a5c2d3f42e8dda37929997907d116b746
blob - f73c13e4ee7be77816a5e17af55d718bc8289519
blob + c09dbe11bb6e0224ed0138a35da047947c82f41d
--- tog/tog.1
+++ tog/tog.1
Open a
.Cm diff
view showing file changes made in the currently selected commit.
-.It Cm t
+.It Cm T
Open a
.Cm tree
view showing the tree for the currently selected commit.
The
.Fl b
option determines whether merged commits are displayed initially.
-.It Cm r
+.It Cm R
Open a
.Cm ref
view listing all references in the repository.
Enter the currently selected directory, or switch to the
.Cm blame
view for the currently selected file.
-.It Cm l
+.It Cm L
Open a
.Cm log
view for the currently selected tree entry.
-.It Cm r
+.It Cm R
Open a
.Cm ref
view listing all references in the repository.
.Cm log
view which begins traversing history at the commit resolved via the
currently selected reference.
-.It Cm t
+.It Cm T
Open a
.Cm tree
view showing the tree resolved via the currently selected reference.
blob - 06aad618830add03488ae888b97e8bc1b4217d19
blob + af8d01cf74fea3535ae1bbeaf7f60b283cee209e
--- tog/tog.c
+++ tog/tog.c
} else
*new_view = diff_view;
break;
- case 't':
+ case 'T':
view->count = 0;
if (s->selected_entry == NULL)
break;
s->search_entry = NULL;
view->offset = 0;
break;
- case 'r':
+ case 'R':
view->count = 0;
if (view_is_parent_view(view))
view_get_split(view, &begin_y, &begin_x);
s->show_ids = !s->show_ids;
view->count = 0;
break;
- case 'l':
+ case 'L':
view->count = 0;
if (!s->selected_entry)
break;
} else
*new_view = log_view;
break;
- case 'r':
+ case 'R':
view->count = 0;
if (view_is_parent_view(view))
view_get_split(view, &begin_y, &begin_x);
} else
*new_view = log_view;
break;
- case 't':
+ case 'T':
view->count = 0;
if (!s->selected_entry)
break;