aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathias Gumz <akira at fluxbox dot org>2010-09-11 19:53:55 (GMT)
committerMathias Gumz <akira at fluxbox dot org>2010-09-11 19:53:55 (GMT)
commit51f054e7778aa49f72436d9b489ef60c58401cc3 (patch)
tree703df7a8adf26d9adcf4048cabe7029214d22bee
parentfaa4c978885ceacfb75b0088e8c5a362a41794f6 (diff)
downloadfluxbox-51f054e7778aa49f72436d9b489ef60c58401cc3.zip
fluxbox-51f054e7778aa49f72436d9b489ef60c58401cc3.tar.bz2
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.
-rw-r--r--data/keys4
-rw-r--r--src/Keys.cc4
2 files changed, 4 insertions, 4 deletions
diff --git a/data/keys b/data/keys
index 7e2557c..0567d04 100644
--- a/data/keys
+++ b/data/keys
@@ -39,8 +39,8 @@ OnTitlebar Mouse2 :Lower
39OnTitlebar Mouse3 :WindowMenu 39OnTitlebar Mouse3 :WindowMenu
40 40
41# alt-tab 41# alt-tab
42Mod1 Tab :NextWindow {groups} 42Mod1 Tab :NextWindow {groups} (workspace=[current])
43Mod1 Shift Tab :PrevWindow {groups} 43Mod1 Shift Tab :PrevWindow {groups} (workspace=[current])
44 44
45# cycle through tabs in the current window 45# cycle through tabs in the current window
46Mod4 Tab :NextTab 46Mod4 Tab :NextTab
diff --git a/src/Keys.cc b/src/Keys.cc
index d3d0ea2..d3b82e9 100644
--- a/src/Keys.cc
+++ b/src/Keys.cc
@@ -360,8 +360,8 @@ void Keys::loadDefaults() {
360 addBinding("OnLeftGrip Move1 :StartResizing bottomleft"); 360 addBinding("OnLeftGrip Move1 :StartResizing bottomleft");
361 addBinding("OnRightGrip Move1 :StartResizing bottomright"); 361 addBinding("OnRightGrip Move1 :StartResizing bottomright");
362 addBinding("OnWindowBorder Move1 :StartMoving"); 362 addBinding("OnWindowBorder Move1 :StartMoving");
363 addBinding("Mod1 Tab :NextWindow"); 363 addBinding("Mod1 Tab :NextWindow (workspace=[current])");
364 addBinding("Mod1 Shift Tab :PrevWindow"); 364 addBinding("Mod1 Shift Tab :PrevWindow (workspace=[current])");
365 keyMode("default"); 365 keyMode("default");
366} 366}
367 367