Move tab selection keybinding from Ctrl-t to Ctrl-` - tabbed - tab interface for application supporting Xembed
  HTML git clone git://git.suckless.org/tabbed
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 05f583c519a3dc438994a9800ab31a7fa0da72ee
   DIR parent 00c414320256b700752f9352f10563cc2dfa3adf
  HTML Author: Quentin Rameau <quinq@fifth.space>
       Date:   Tue,  2 May 2017 18:23:04 +0200
       
       Move tab selection keybinding from Ctrl-t to Ctrl-`
       
       Diffstat:
         M config.def.h                        |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git 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 } },