commit 38ce06e0433dbfa9ac9476741db567062839dcef from: Stefan Sperling date: Mon Sep 24 08:48:21 2018 UTC use ~ instead of backspace for cycling views backwards in tog commit - 8d49203ed72ff99b43c3ca9fe29b9cbb4b7790fe commit + 38ce06e0433dbfa9ac9476741db567062839dcef blob - 35d9972ad1102971e5188ade36ee2e62b56459d0 blob + 09b58a687f90a3c97fb4d9076aee064d08a9e1b0 --- tog/tog.1 +++ tog/tog.1 @@ -65,7 +65,7 @@ Quit the view which is in focus. .It Cm Tab Switch focus to the next view. Cycles through all open views. -.It Cm Backspace +.It Cm ~ Switch focus to the previous view. Cycles through all open views. .El blob - b727865084cee79075eb5b564dd6fd3f6bfb3435 blob + fbbf95296b77479b91e2d96e5810637ebd1702cb --- tog/tog.c +++ tog/tog.c @@ -395,7 +395,7 @@ view_input(struct tog_view **new, struct tog_view **de view->focussed = 0; (*focus)->focussed = 1; break; - case KEY_BACKSPACE: + case '~': prev = TAILQ_PREV(view, tog_view_list_head, entry); if (prev) *focus = prev;