mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 15:14:44 +00:00
9367d4ff71
This does not include checks/function.fish because that currently includes a "; end" in a message that indent would remove, breaking the test.
20 lines
1.2 KiB
Fish
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"
|