commit 7837eeac2ff69333430c0e0adb259d6c2b6a69ed from: Stefan Sperling date: Mon Sep 24 10:01:49 2018 UTC make 'tog tree' navigate to parent with backspace key again commit - 93e45b7ce9bd08f46d8b69f377aece837a36555d commit + 7837eeac2ff69333430c0e0adb259d6c2b6a69ed blob - 09b58a687f90a3c97fb4d9076aee064d08a9e1b0 blob + 91f55cbb6f1a4a9895d4eef1a1a213d9cc0fafe4 --- tog/tog.1 +++ tog/tog.1 @@ -213,7 +213,7 @@ view for the currently selected file. Switch to the .Cm log view for the currently selected tree entry. -.It Cm Left-arrow +.It Cm Backspace Move back to the parent directory. .It Cm i Show the object IDs for all objects displayed in the blob - 9c0e22952a8225b2b235f8fd422abbc1a3f03ac4 blob + 2c93b3c542093bcb6cd991a9b688df076de12603 --- tog/tog.c +++ tog/tog.c @@ -2886,7 +2886,7 @@ input_tree_view(struct tog_view **new_view, struct tog case '\r': if (s->selected_entry == NULL) { struct tog_parent_tree *parent; - case KEY_LEFT: + case KEY_BACKSPACE: /* user selected '..' */ if (s->tree == s->root) break;