add FIELD?=GLOB to git-annex view usage

And also to vadd usage.

Also added some other things to the usage that were omitted before to
save space.

Adding even FIELD?=GLOB made the git-annex --help list of commands grow
too wide for an 80 column display. So, removed the description of
parameters from that list of commands.

Sponsored-By: Brock Spratlen on Patreon
This commit is contained in:
Joey Hess 2023-02-07 18:09:10 -04:00
parent aa0350ff49
commit c209e0f643
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38
4 changed files with 4 additions and 9 deletions

View file

@ -10,14 +10,13 @@ module Command.VAdd where
import Command
import qualified Annex
import Annex.View
import Command.View (checkoutViewBranch)
import Command.View (checkoutViewBranch, paramView)
cmd :: Command
cmd = notBareRepo $
command "vadd" SectionMetaData
"add subdirs to current view"
(paramRepeating "FIELD=GLOB")
(withParams seek)
paramView (withParams seek)
seek :: CmdParams -> CommandSeek
seek = withWords (commandAction . start)