fish-shell/share/completions/xbps-uchroot.fish
Johannes Altmanninger 9c327b19a6 Fix extra or missing newlines at end of file in our fish scripts
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
2020-08-09 23:53:46 +02:00

11 lines
610 B
Fish

# Completions for xbps-uchroot
# Author: Allen Sobot <chilledfrogs@disroot.org>
set -l progname xbps-uchroot
complete -c $progname -f -a "(__fish_complete_directories)"
complete -c $progname -s b -d 'Bind mounts src into CHROOTDIR/dest.' -F
complete -c $progname -s O -d 'Setups a temporary directory and then creates an overlay layer (via overlayfs).'
complete -c $progname -s o -d 'Arguments passed to the tmpfs mount, if the O and t options are specified.'
complete -c $progname -s t -d 'This makes the temporary directory to be mounted in tmpfs, so that everything is stored in RAM. Used only with -O.'