Improve help

This commit is contained in:
rnhmjoj 2015-07-07 22:10:17 +02:00
parent fc67f3938b
commit c7a625a090

View File

@ -68,9 +68,9 @@ data ProgArgs = ProgArgs
parser :: ParserSpec ProgArgs
parser = ProgArgs
`parsedBy` reqPos "term" `Descr` "Keychain search term"
`andBy` optFlag "" "keychain" `Descr` "Use a specific keychain"
`andBy` optFlag "" "exact" `Descr` "Only return exact matches"
`andBy` optFlag 10 "limit" `Descr` "Set upper results limit"
`andBy` optFlag "" "keychain" `Descr` "Use a specific keychain (default: all except System)"
`andBy` optFlag "" "exact" `Descr` "Return exact matches by attribute"
`andBy` optFlag 10 "limit" `Descr` "Set upper results limit (0: unlimited)"
`andBy` boolFlag "content" `Descr` "Print only the items content"
`andBy` boolFlag "clipboard" `Descr` "Disable clipboard paste"