diff options
author | Mathias Gumz <akira at fluxbox dot org> | 2010-09-11 19:53:55 (GMT) |
---|---|---|
committer | Mathias Gumz <akira at fluxbox dot org> | 2010-09-11 19:53:55 (GMT) |
commit | 51f054e7778aa49f72436d9b489ef60c58401cc3 (patch) | |
tree | 703df7a8adf26d9adcf4048cabe7029214d22bee /src/Keys.cc | |
parent | faa4c978885ceacfb75b0088e8c5a362a41794f6 (diff) | |
download | fluxbox-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.
Diffstat (limited to 'src/Keys.cc')
-rw-r--r-- | src/Keys.cc | 4 |
1 files changed, 2 insertions, 2 deletions
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 | ||