diff options
author | Daniel Schoepe <daniel.schoepe@gmail.com> | 2010-02-01 21:45:22 +0100 |
---|---|---|
committer | Daniel Schoepe <daniel.schoepe@gmail.com> | 2010-02-01 21:45:22 +0100 |
commit | 45e4748a59d76795fd2549ea7df66c3e44682f79 (patch) | |
tree | a1cf85626a94a67318b192d7e48a93bb16611474 | |
parent | 6b06ac371761df0be43844f498e67d14710526d0 (diff) | |
download | XMonadContrib-45e4748a59d76795fd2549ea7df66c3e44682f79.tar.gz XMonadContrib-45e4748a59d76795fd2549ea7df66c3e44682f79.tar.xz XMonadContrib-45e4748a59d76795fd2549ea7df66c3e44682f79.zip |
Corrected documentation in X.Prompt
Ignore-this: 98f9889a4844bc765cbb9e43bd83bc05
darcs-hash:20100201204522-7f603-16ec4c2ed9fb4c931aaf6197d8d4744865614c9d.gz
-rw-r--r-- | XMonad/Prompt.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/XMonad/Prompt.hs b/XMonad/Prompt.hs index 725b67b..d755501 100644 --- a/XMonad/Prompt.hs +++ b/XMonad/Prompt.hs @@ -915,8 +915,8 @@ historyNextMatching hm@(HistoryMatches ref) next = do -- > ((modMask,xK_p), shellPrompt . myPrompt =<< initMatches) -- > .. -- > myPrompt ref = defaultPrompt --- > { promptKeymap = M.union [((0,xK_Up), historyMatching ref) --- > ,((0,xK_Down), historyMatching ref)] +-- > { promptKeymap = M.union [((0,xK_Up), historyUpMatching ref) +-- > ,((0,xK_Down), historyDownMatching ref)] -- > (promptKeymap defaultPrompt) -- > , .. } -- |