2018-10-13 13:06:23 -07:00
|
|
|
#compdef quickdel
|
|
|
|
|
2019-03-01 15:59:17 -08:00
|
|
|
# ========== Completions ==========
|
2018-10-13 13:06:23 -07:00
|
|
|
local arguments
|
|
|
|
|
|
|
|
arguments=(
|
|
|
|
{-d,--directories-only}'[only delete directories]'
|
|
|
|
{-h,--help}'[print this help page]'
|
|
|
|
{-i,--no-ignore}'[do not ignore .gitignore and .fdignore]'
|
|
|
|
{-I,--no-ignore-vcs}'[do not ignore .gitignore]'
|
|
|
|
'*:filename:_files'
|
|
|
|
)
|
|
|
|
|
|
|
|
_arguments -s $arguments
|