From 2c71c293a98316545fbd51666cdc07f175659e9d Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Tue, 7 Jul 2015 23:29:26 +0200 Subject: [PATCH] Fix colliding parameters --- src/Main.hs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Main.hs b/src/Main.hs index 5dd3b38..f818d22 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -59,12 +59,12 @@ data ProgArgs = ProgArgs parser :: ParserSpec ProgArgs parser = ProgArgs - `parsedBy` reqPos "term" `Descr` "Keychain search term" - `andBy` optFlag "" "keychain" `Descr` "Use a specific keychain (default: all except System)" - `andBy` optFlag "" "exact" `Descr` "Return exact matches with the given class" - `andBy` optFlag 10 "limit" `Descr` "Set upper results limit (default: 10, 0: unlimited)" - `andBy` boolFlag "content" `Descr` "Print only the items content" - `andBy` boolFlag "clipboard" `Descr` "Disable paste to clipboard" + `parsedBy` reqPos "term" `Descr` "Keychain search term" + `andBy` optFlag "" "keychain" `Descr` "Use a specific keychain (default: all except System)" + `andBy` optFlag "" "exact" `Descr` "Return exact matches with the given class" + `andBy` optFlag 10 "limit" `Descr` "Set upper results limit (default: 10, 0: unlimited)" + `andBy` boolFlag "content" `Descr` "Print only the items content" + `andBy` boolFlag "noclipboard" `Descr` "Disable paste to clipboard" interface :: IO (CmdLnInterface ProgArgs) interface =