commit 05f583c519a3dc438994a9800ab31a7fa0da72ee
Author:     Quentin Rameau <quinq@fifth.space>
AuthorDate: Tue May 2 18:23:04 2017 +0200
Commit:     Quentin Rameau <quinq@fifth.space>
CommitDate: Tue May 2 18:23:04 2017 +0200

    Move tab selection keybinding from Ctrl-t to Ctrl-`

diff --git a/config.def.h b/config.def.h
index 989992c..2d23049 100644
--- a/config.def.h
+++ b/config.def.h
@@ -38,7 +38,6 @@ static Key keys[] = {
        /* modifier             key        function     argument */
        { MODKEY|ShiftMask,     XK_Return, focusonce,   { 0 } },
        { MODKEY|ShiftMask,     XK_Return, spawn,       { 0 } },
-       { MODKEY,               XK_t,      spawn,       
SETPROP("_TABBED_SELECT_TAB") },
 
        { MODKEY|ShiftMask,     XK_l,      rotate,      { .i = +1 } },
        { MODKEY|ShiftMask,     XK_h,      rotate,      { .i = -1 } },
@@ -46,6 +45,7 @@ static Key keys[] = {
        { MODKEY|ShiftMask,     XK_k,      movetab,     { .i = +1 } },
        { MODKEY,               XK_Tab,    rotate,      { .i = 0 } },
 
+       { MODKEY,               XK_grave,  spawn,       
SETPROP("_TABBED_SELECT_TAB") },
        { MODKEY,               XK_1,      move,        { .i = 0 } },
        { MODKEY,               XK_2,      move,        { .i = 1 } },
        { MODKEY,               XK_3,      move,        { .i = 2 } },

Reply via email to