From: Darrin Chandler Date: Mon, 30 Mar 2009 17:20:24 +0000 (+0000) Subject: Fix my pasto for Mod+Shift+k -> swap_prev. Noticed by Marco. X-Git-Url: https://jasonwoof.com/gitweb/?a=commitdiff_plain;ds=sidebyside;h=6137a654c7466f9456261afeb5e4ba1beeb64083;p=spectrwm.git Fix my pasto for Mod+Shift+k -> swap_prev. Noticed by Marco. "yes get this in damnit!" marco --- diff --git a/scrotwm.c b/scrotwm.c index 404d356..abb60de 100644 --- a/scrotwm.c +++ b/scrotwm.c @@ -2375,7 +2375,7 @@ setup_keys(void) setkeybinding(MODKEY, XK_j, kf_focus_next); setkeybinding(MODKEY, XK_k, kf_focus_prev); setkeybinding(MODKEY|ShiftMask, XK_j, kf_swap_next); - setkeybinding(MODKEY|ShiftMask, XK_k, kf_swap_next); + setkeybinding(MODKEY|ShiftMask, XK_k, kf_swap_prev); setkeybinding(MODKEY|ShiftMask, XK_Return, kf_spawn_term); setkeybinding(MODKEY, XK_p, kf_spawn_menu); setkeybinding(MODKEY|ShiftMask, XK_q, kf_quit);