added '(workspace=[current])' to our default keys
commit 882a50fe1d
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.
This commit is contained in:
parent
faa4c97888
commit
51f054e777
2 changed files with 4 additions and 4 deletions
|
@ -39,8 +39,8 @@ OnTitlebar Mouse2 :Lower
|
|||
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
|
||||
|
|
|
@ -360,8 +360,8 @@ void Keys::loadDefaults() {
|
|||
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");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue