diff options
author | Daniel Schoepe <daniel.schoepe@gmail.com> | 2010-02-08 17:29:01 +0100 |
---|---|---|
committer | Daniel Schoepe <daniel.schoepe@gmail.com> | 2010-02-08 17:29:01 +0100 |
commit | e40024da71823925ff6bcc2dd6507dedf7bfffa9 (patch) | |
tree | bb27b1d9acb5250b1f72ccd8a2c9b2cef6295ed9 /XMonad | |
parent | 292a0379923bdc24fb65f46138681d839e7aa063 (diff) | |
download | XMonadContrib-e40024da71823925ff6bcc2dd6507dedf7bfffa9.tar.gz XMonadContrib-e40024da71823925ff6bcc2dd6507dedf7bfffa9.tar.xz XMonadContrib-e40024da71823925ff6bcc2dd6507dedf7bfffa9.zip |
Fixed reversed history searching direction in X.P.history(Up|Down)Matching
Ignore-this: 61b9907318d18ef2fb5bc633048d3afc
darcs-hash:20100208162901-7f603-50b0444e2e7bc57504dbdf8bcefe04b860e926cd.gz
Diffstat (limited to 'XMonad')
-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 22154ed..20a41bd 100644 --- a/XMonad/Prompt.hs +++ b/XMonad/Prompt.hs @@ -921,5 +921,5 @@ historyNextMatching hm@(HistoryMatches ref) next = do -- > , .. } -- historyUpMatching, historyDownMatching :: HistoryMatches -> XP () -historyUpMatching hm = historyNextMatching hm W.focusUp' -historyDownMatching hm = historyNextMatching hm W.focusDown'
\ No newline at end of file +historyUpMatching hm = historyNextMatching hm W.focusDown' +historyDownMatching hm = historyNextMatching hm W.focusUp'
\ No newline at end of file |