Hrmpf, fix one more default keybinding clash, this time the blob view
authorJonas Fonseca <fonseca@diku.dk>
Mon, 11 Sep 2006 00:46:23 +0000 (02:46 +0200)
committerJonas Fonseca <fonseca@antimatter.localdomain>
Mon, 11 Sep 2006 00:46:23 +0000 (02:46 +0200)
By default, it is now bound to 'f'.

manual.txt
tig.c

index e8e3cdc..64afe2a 100644 (file)
@@ -225,7 +225,7 @@ d   Switch to diff view.
 l      Switch to log view.
 p      Switch to pager view.
 t      Switch to (directory) tree view.
-b      Switch to (file) blob view.
+f      Switch to (file) blob view.
 h      Show man page.
 -----------------------------------------------------------------------------
 
diff --git a/tig.c b/tig.c
index 11eb06d..d3702c4 100644 (file)
--- a/tig.c
+++ b/tig.c
@@ -675,7 +675,7 @@ static struct keybinding default_keybindings[] = {
        { 'd',          REQ_VIEW_DIFF },
        { 'l',          REQ_VIEW_LOG },
        { 't',          REQ_VIEW_TREE },
-       { 'b',          REQ_VIEW_BLOB },
+       { 'f',          REQ_VIEW_BLOB },
        { 'p',          REQ_VIEW_PAGER },
        { 'h',          REQ_VIEW_HELP },