diff options
author | Andrea Rossato <andrea.rossato@unibz.it> | 2007-11-23 12:49:04 +0100 |
---|---|---|
committer | Andrea Rossato <andrea.rossato@unibz.it> | 2007-11-23 12:49:04 +0100 |
commit | c4d7e86574ce73f1d6481fbafe39e06c47c50292 (patch) | |
tree | 6b61aa95a5a8f383c8299fbcea90557dc05d3388 /XMonad/Layout | |
parent | fceb570552e9f6c5dc1143d964db7fb825233a3a (diff) | |
download | XMonadContrib-c4d7e86574ce73f1d6481fbafe39e06c47c50292.tar.gz XMonadContrib-c4d7e86574ce73f1d6481fbafe39e06c47c50292.tar.xz XMonadContrib-c4d7e86574ce73f1d6481fbafe39e06c47c50292.zip |
Combo: some haddock formatting
darcs-hash:20071123114904-32816-ea690d4d1317241f6edf48d9a35ae3221bb8eca4.gz
Diffstat (limited to 'XMonad/Layout')
-rw-r--r-- | XMonad/Layout/Combo.hs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/XMonad/Layout/Combo.hs b/XMonad/Layout/Combo.hs index 556e661..30f15fe 100644 --- a/XMonad/Layout/Combo.hs +++ b/XMonad/Layout/Combo.hs @@ -51,10 +51,10 @@ import qualified XMonad.StackSet as W ( differentiate ) -- each sublayout. To do this, use "XMonad.Layout.WindowNavigation", -- and add the following key bindings (or something similar): -- --- , ((modMask .|. controlMask .|. shiftMask, xK_Right), sendMessage $ Move R) --- , ((modMask .|. controlMask .|. shiftMask, xK_Left), sendMessage $ Move L) --- , ((modMask .|. controlMask .|. shiftMask, xK_Up), sendMessage $ Move U) --- , ((modMask .|. controlMask .|. shiftMask, xK_Down), sendMessage $ Move D) +-- > , ((modMask x .|. controlMask .|. shiftMask, xK_Right), sendMessage $ Move R) +-- > , ((modMask x .|. controlMask .|. shiftMask, xK_Left ), sendMessage $ Move L) +-- > , ((modMask x .|. controlMask .|. shiftMask, xK_Up ), sendMessage $ Move U) +-- > , ((modMask x .|. controlMask .|. shiftMask, xK_Down ), sendMessage $ Move D) -- -- For detailed instruction on editing the key binding see -- "XMonad.Doc.Extending#Editing_key_bindings". |