mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 15:14:44 +00:00
9c327b19a6
New fish_indent does that too, so this will make any future reformatting diffs smaller. Done using either of: perl -pi -e 'undef $/; s/\n*$/\n/' share/**.fish kak -n -f '<a-/>\n*<ret>d' share/**.fish
7 lines
422 B
Fish
7 lines
422 B
Fish
#Completions for rmdir
|
|
complete -x -c rmdir -a "(__fish_complete_directories (commandline -ct))"
|
|
complete -c rmdir -l ignore-fail-on-non-empty -d "Ignore errors from non-empty directories"
|
|
complete -c rmdir -s p -l parents -d "Remove each component of path"
|
|
complete -c rmdir -s v -l verbose -d "Verbose mode"
|
|
complete -c rmdir -l help -d "Display help and exit"
|
|
complete -c rmdir -l version -d "Display version and exit"
|