gt/contrib/completions/gt.fish

48 lines
3.2 KiB
Fish
Raw Normal View History

2024-06-30 22:07:08 -04:00
# fish completion for gt -*- shell-script -*-
set -l commands list ls trash tr clean cl restore re
set -l already_in_trash_commands list ls clean cl restore re
2024-07-03 13:15:58 -04:00
set -l trash_commands trash tr
2024-07-16 00:46:22 -04:00
set -l list_commands list ls
2024-07-16 14:15:44 -04:00
set -l clean_restore_commands clean cl restore re
2024-06-30 22:07:08 -04:00
set -l log_levels debug info warn error fatal
# commands
complete -c gt -f -n "not __fish_seen_subcommand_from $commands" -a "list ls" -d "list trashed files"
complete -c gt -F -n "not __fish_seen_subcommand_from $commands" -a "trash tr" -d "trash a file or files"
complete -c gt -f -n "not __fish_seen_subcommand_from $commands" -a "restore re" -d "restore files from trash"
complete -c gt -f -n "not __fish_seen_subcommand_from $commands" -a "clean cl" -d "clean files from trash"
# flags
complete -c gt -n "not __fish_seen_subcommand_from $commands" -l help -s h -d "show help"
complete -c gt -n "not __fish_seen_subcommand_from $commands" -l version -s v -d "show version"
complete -c gt -n "not __fish_seen_subcommand_from $commands" -l log -s l -d "log level" -fra (string join " " $log_levels)
# everyone flags
complete -c gt -rf -n "__fish_seen_subcommand_from $commands" -l match -s m -d "operate on files matching regex pattern"
complete -c gt -rf -n "__fish_seen_subcommand_from $commands" -l not-match -s M -d "operate on files not matching regex pattern"
complete -c gt -rf -n "__fish_seen_subcommand_from $commands" -l glob -s g -d "operate on files matching glob pattern"
complete -c gt -rf -n "__fish_seen_subcommand_from $commands" -l not-glob -s G -d "operate on files not matching glob pattern"
complete -c gt -rf -n "__fish_seen_subcommand_from $commands" -l files-only -s F -d "operate on files only"
complete -c gt -rf -n "__fish_seen_subcommand_from $commands" -l dirs-only -s D -d "operate on dirs only"
complete -c gt -rf -n "__fish_seen_subcommand_from $commands" -l hidden -s H -d "operate on hidden files"
2024-07-16 14:15:44 -04:00
complete -c gt -rf -n "__fish_seen_subcommand_from $commands" -l before -s B -d "operate on files before date"
complete -c gt -rf -n "__fish_seen_subcommand_from $commands" -l after -s A -d "operate on files after date"
complete -c gt -rf -n "__fish_seen_subcommand_from $commands" -l on -s O -d "operate on files on date"
2024-06-30 22:07:08 -04:00
complete -c gt -rf -n "__fish_seen_subcommand_from $commands" -l min-size -s N -d "operate on files larger than size"
complete -c gt -rf -n "__fish_seen_subcommand_from $commands" -l max-size -s X -d "operate on files smaller than size"
2024-07-16 00:29:04 -04:00
complete -c gt -rf -n "__fish_seen_subcommand_from $commands" -l mode -s x -d "operate on files matching mode"
2024-06-30 22:07:08 -04:00
# trash flags
2024-07-03 13:15:58 -04:00
complete -c gt -rf -n "__fish_seen_subcommand_from $trash_commands" -l recursive -s r -d "recursively trash files"
complete -c gt -rf -n "__fish_seen_subcommand_from $trash_commands" -l work-dir -s w -d "trash files in specified directory"
2024-06-30 22:07:08 -04:00
2024-07-16 00:46:22 -04:00
# list flags
complete -c gt -rf -n "__fish_seen_subcommand_from $list_commands" -l non-interactive -s n -d "list files and quit"
2024-07-16 14:15:44 -04:00
# clean / restore flags
complete -c gt -rf -n "__fish_seen_subcommand_from $clean_restore_commands" -l all -s a -d "clean / restore all files"
2024-06-30 22:07:08 -04:00
# list / clean / restore flags
2024-07-16 14:15:44 -04:00
complete -c gt -rf -n "__fish_seen_subcommand_from $already_in_trash_commands" -l original-path -s o -d "operate on files trashed from this directory"