diff options
author | Andrea Rossato <andrea.rossato@unibz.it> | 2007-10-13 18:07:35 +0200 |
---|---|---|
committer | Andrea Rossato <andrea.rossato@unibz.it> | 2007-10-13 18:07:35 +0200 |
commit | 375751b55be0a0c8233cf8899646a3cc6cbb7191 (patch) | |
tree | 5907aebbbaed6ced372a43b438d9df1a36b2907f | |
parent | b2afbe05586903458d6d9f5abd66012b1a18ade6 (diff) | |
download | XMonadContrib-375751b55be0a0c8233cf8899646a3cc6cbb7191.tar.gz XMonadContrib-375751b55be0a0c8233cf8899646a3cc6cbb7191.tar.xz XMonadContrib-375751b55be0a0c8233cf8899646a3cc6cbb7191.zip |
WindowPrompt: haddock fixes
darcs-hash:20071013160735-32816-33b37a23491d572d144ed69bda140e6913edc7fb.gz
-rw-r--r-- | WindowPrompt.hs | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/WindowPrompt.hs b/WindowPrompt.hs index 04c0a40..93f79ae 100644 --- a/WindowPrompt.hs +++ b/WindowPrompt.hs @@ -33,7 +33,7 @@ import XMonadContrib.WindowBringer -- $usage -- WindowPrompt brings windows to you and you to windows. --- That is to say, it pops up a dmenu with window names, in case you forgot +-- That is to say, it pops up a prompt with window names, in case you forgot -- where you left your XChat. -- -- Place in your Config.hs: @@ -44,12 +44,13 @@ import XMonadContrib.WindowBringer -- and in the keys definition: -- -- > , ((modMask .|. shiftMask, xK_g ), windowPromptGoto defaultXPConfig) --- > , ((modMask .|. shiftMask, xK_g ), windowPromptBring defaultXPConfig) --- +-- > , ((modMask .|. shiftMask, xK_b ), windowPromptBring defaultXPConfig) + -- %import XMonadContrib.XPrompt -- %import XMonadContrib.WindowPrompt -- %keybind , ((modMask .|. shiftMask, xK_g ), windowPromptGoto defaultXPConfig) --- %keybind , ((modMask .|. shiftMask, xK_g ), windowPromptBring defaultXPConfig) +-- %keybind , ((modMask .|. shiftMask, xK_b ), windowPromptBring defaultXPConfig) + data WindowPrompt = Goto | Bring instance XPrompt WindowPrompt where |