diff options
author | Daniel Wagner <daniel@wagner-home.com> | 2011-04-16 00:48:46 +0200 |
---|---|---|
committer | Daniel Wagner <daniel@wagner-home.com> | 2011-04-16 00:48:46 +0200 |
commit | 2ea82bcaed3823593bb268e792f0f647cd4c82ea (patch) | |
tree | d03c4d3b13e7c14b9f3cec40205a3331cd0266cf /XMonad/Actions | |
parent | e3c007bb14f13f8be84045e013b3e2599e366a77 (diff) | |
download | XMonadContrib-2ea82bcaed3823593bb268e792f0f647cd4c82ea.tar.gz XMonadContrib-2ea82bcaed3823593bb268e792f0f647cd4c82ea.tar.xz XMonadContrib-2ea82bcaed3823593bb268e792f0f647cd4c82ea.zip |
documentation: tell where to find a few auxiliary functions that might be useful in conjunction with X.A.DynamicWorkspaces
Ignore-this: 1bd2232081ba045582d230b632c5bd08
darcs-hash:20110415224846-76d51-1cc38bfa8bdf61b18afef08c1244a9d56eb42817.gz
Diffstat (limited to 'XMonad/Actions')
-rw-r--r-- | XMonad/Actions/DynamicWorkspaces.hs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/XMonad/Actions/DynamicWorkspaces.hs b/XMonad/Actions/DynamicWorkspaces.hs index cb27d01..0e66587 100644 --- a/XMonad/Actions/DynamicWorkspaces.hs +++ b/XMonad/Actions/DynamicWorkspaces.hs @@ -35,6 +35,11 @@ import Data.List (find) import Data.Maybe (isNothing) import Control.Monad (when) +-- The following imports are to allow haddock to find links for documentation +-- only. +import XMonad.Actions.CopyWindow (copy) +import XMonad.Prompt (defaultXPConfig) + -- $usage -- You can use this module with the following in your @~\/.xmonad\/xmonad.hs@ file: -- @@ -56,7 +61,8 @@ import Control.Monad (when) -- > zip (zip (repeat (modm .|. shiftMask)) [xK_1..xK_9]) (map (withNthWorkspace W.shift) [0..]) -- -- For detailed instructions on editing your key bindings, see --- "XMonad.Doc.Extending#Editing_key_bindings". +-- "XMonad.Doc.Extending#Editing_key_bindings". See also the documentation for +-- 'copy', 'windows', 'shift', and 'defaultXPConfig'. data Wor = Wor String |