fish-shell/share/completions/patool.fish
Fabian Homborg 9367d4ff71 Reindent functions to remove useless quotes
This does not include checks/function.fish because that currently
includes a "; end" in a message that indent would remove, breaking the test.
2020-03-09 19:46:43 +01:00

20 lines
1.2 KiB
Fish

# Completions for patool
# Global options
complete -f -c patool -s h -l help -d "Show help message"
complete -f -c patool -n __fish_no_arguments -s v -l verbose -d "Be verbose"
complete -f -c patool -n __fish_no_arguments -l non-interactive -d "Run in batch mode"
# Commands
complete -f -c patool -n __fish_use_subcommand -a extract -d "Extract archive(s)"
complete -f -c patool -n __fish_use_subcommand -a list -d "List files in archive(s)"
complete -f -c patool -n __fish_use_subcommand -a create -d "Create archive"
complete -f -c patool -n __fish_use_subcommand -a test -d "Test archive(s)"
complete -f -c patool -n __fish_use_subcommand -a repack -d "Repackage archive to different format"
complete -f -c patool -n __fish_use_subcommand -a recompress -d "Recompress archive to smaller"
complete -f -c patool -n __fish_use_subcommand -a diff -d "Differences between two archives"
complete -f -c patool -n __fish_use_subcommand -a search -d "Search contents of archive"
complete -f -c patool -n __fish_use_subcommand -a formats -d "Show supported formats"
# extract option
complete -c patool -n "__fish_seen_subcommand_from extract" -l outdir -d "Specify output directory"