all repos — fluxbox @ 51f054e7778aa49f72436d9b489ef60c58401cc3

custom fork of the fluxbox windowmanager

added '(workspace=[current])' to our default keys

commit 882a50fe1d4930b156965c54d9b66ecb27b4c9b2 removed the hardcoded limit to
cycle to windows on other workspaces, though it was and IS a good default
behaviour. if users do not want this (they want to cycle to windows on other
workspaces), they should explicitly avoid '(workspace=[current])' in their
keysfile.
Mathias Gumz akira at fluxbox dot org
commit

51f054e7778aa49f72436d9b489ef60c58401cc3

parent

faa4c978885ceacfb75b0088e8c5a362a41794f6

2 files changed, 4 insertions(+), 4 deletions(-)

jump to
M data/keysdata/keys

@@ -39,8 +39,8 @@ # right click on the titlebar for a menu of options

OnTitlebar Mouse3 :WindowMenu # alt-tab -Mod1 Tab :NextWindow {groups} -Mod1 Shift Tab :PrevWindow {groups} +Mod1 Tab :NextWindow {groups} (workspace=[current]) +Mod1 Shift Tab :PrevWindow {groups} (workspace=[current]) # cycle through tabs in the current window Mod4 Tab :NextTab
M src/Keys.ccsrc/Keys.cc

@@ -360,8 +360,8 @@ addBinding("OnTitlebar Move1 :StartMoving");

addBinding("OnLeftGrip Move1 :StartResizing bottomleft"); addBinding("OnRightGrip Move1 :StartResizing bottomright"); addBinding("OnWindowBorder Move1 :StartMoving"); - addBinding("Mod1 Tab :NextWindow"); - addBinding("Mod1 Shift Tab :PrevWindow"); + addBinding("Mod1 Tab :NextWindow (workspace=[current])"); + addBinding("Mod1 Shift Tab :PrevWindow (workspace=[current])"); keyMode("default"); }