aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad/Prompt.hs
diff options
context:
space:
mode:
authorAndrea Rossato <andrea.rossato@unibz.it>2007-11-15 21:48:28 +0100
committerAndrea Rossato <andrea.rossato@unibz.it>2007-11-15 21:48:28 +0100
commitc9dfd0f164b916ae79503c2335144b333319aace (patch)
treea72f0b4b142d6811615fb76b47f71552e1a30048 /XMonad/Prompt.hs
parente722c698f8dbe4815c83f386a9790096aefcc243 (diff)
downloadXMonadContrib-c9dfd0f164b916ae79503c2335144b333319aace.tar.gz
XMonadContrib-c9dfd0f164b916ae79503c2335144b333319aace.tar.xz
XMonadContrib-c9dfd0f164b916ae79503c2335144b333319aace.zip
Prompt: haddock fixes
darcs-hash:20071115204828-32816-c30269b8411128c3e515aceb867bc1118398fe4a.gz
Diffstat (limited to 'XMonad/Prompt.hs')
-rw-r--r--XMonad/Prompt.hs4
1 files changed, 1 insertions, 3 deletions
diff --git a/XMonad/Prompt.hs b/XMonad/Prompt.hs
index 8de97bb..bb4966b 100644
--- a/XMonad/Prompt.hs
+++ b/XMonad/Prompt.hs
@@ -68,8 +68,6 @@ import System.Posix.Files
-- TODO:
--
-- * scrolling the completions that don't fit in the window (?)
---
--- * commands to edit the command line
type XP = StateT XPState IO
@@ -312,7 +310,7 @@ killAfter :: XP ()
killAfter =
modify $ \s -> s { command = take (offset s) (command s) }
--- | Kill the next/previous word
+-- | Kill the next\/previous word
killWord :: Direction -> XP ()
killWord d = do
XPS { command = c, offset = o } <- get