aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQuentin Rameau <quinq@fifth.space>2017-05-02 18:23:04 +0200
committerQuentin Rameau <quinq@fifth.space>2017-05-02 18:23:04 +0200
commit05f583c519a3dc438994a9800ab31a7fa0da72ee (patch)
tree27b2b2da6489a9f81aac9894b82e3354b30a6979
parent00c414320256b700752f9352f10563cc2dfa3adf (diff)
Move tab selection keybinding from Ctrl-t to Ctrl-`
-rw-r--r--config.def.h2
1 files changed, 1 insertions, 1 deletions
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 } },