aboutsummaryrefslogtreecommitdiffstats
path: root/Config.hs
diff options
context:
space:
mode:
authorDon Stewart <dons@cse.unsw.edu.au>2007-04-11 09:34:56 +0200
committerDon Stewart <dons@cse.unsw.edu.au>2007-04-11 09:34:56 +0200
commitcb0fe85e5bf43ea2076bb5328ae77dada32439e6 (patch)
tree7e31c8f2fdee2d831d3bce803457e7464e588536 /Config.hs
parente33a440f2457661ac6e1ac80fc523fd7be3e8091 (diff)
downloadxmonad-cb0fe85e5bf43ea2076bb5328ae77dada32439e6.tar.gz
xmonad-cb0fe85e5bf43ea2076bb5328ae77dada32439e6.tar.xz
xmonad-cb0fe85e5bf43ea2076bb5328ae77dada32439e6.zip
Change semantics of 'promote'.
Previously 'promote' would move the currently focused window into the master position in tiled mode. This was *almost* a cycle of the windows, but not quite (depending on where the focus was, it was in fact a cycle). Now we do the obvious generalisation, and just cycle the current window stack. Simpler to understand, simpler to reason about. darcs-hash:20070411073456-9c5c1-3ee88f9ac46e2301b4c803ec4fd66798e6fee91d.gz
Diffstat (limited to '')
-rw-r--r--Config.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Config.hs b/Config.hs
index ab92814..7601e47 100644
--- a/Config.hs
+++ b/Config.hs
@@ -123,7 +123,7 @@ keys = M.fromList $
, ((modMask .|. shiftMask, xK_q ), io $ exitWith ExitSuccess)
, ((modMask .|. shiftMask .|. controlMask, xK_q ), io restart)
- -- Move focused window into master position in tiling mode.
+ -- Cycle the current tiling order
, ((modMask, xK_Return), promote)
] ++