diff options
author | Spencer Janssen <sjanssen@cse.unl.edu> | 2007-08-24 06:59:39 +0200 |
---|---|---|
committer | Spencer Janssen <sjanssen@cse.unl.edu> | 2007-08-24 06:59:39 +0200 |
commit | f3dbd667811781ed438e3c094d3651bf4b7bf84b (patch) | |
tree | bf17192a70cf5c08bd708a36ddef82f0dc39e83c | |
parent | 6463d52abfc2a31e08ff3743ce7d3ebdc5904535 (diff) | |
download | metatile-f3dbd667811781ed438e3c094d3651bf4b7bf84b.tar metatile-f3dbd667811781ed438e3c094d3651bf4b7bf84b.zip |
Add docstrings for mouse controls
darcs-hash:20070824045939-a5988-2c9c3dd3cb6925c0aaccc0c857335c15d4deaf3c
-rw-r--r-- | Config.hs | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -178,6 +178,9 @@ keys = M.fromList $ -- mouseBindings :: M.Map (KeyMask, Button) (Window -> X ()) mouseBindings = M.fromList $ + -- mod-button1 @@ Set the window to floating mode and move by dragging [ ((modMask, button1), (\w -> focus w >> mouseMoveWindow w)) + -- mod-button2 @@ Raise the window to the top of the stack , ((modMask, button2), (\w -> focus w >> swapMaster)) + -- mod-button3 @@ Set the window to floating mode and resize by dragging , ((modMask, button3), (\w -> focus w >> mouseResizeWindow w)) ] |