Run fish_indent on all non-test .fish files

This commit is contained in:
Ilan Cosman
2021-11-22 19:55:15 -08:00
committed by Fabian Homborg
parent 37f385b193
commit 566a673e4f
28 changed files with 262 additions and 266 deletions

View File

@@ -17,125 +17,125 @@ function __fish_print_group_ids
end
function __fish_complete_mount_opts
set -l fish_mount_opts\
async\t'Use asynchronous I/O'\
atime\t'Update time on each access'\
noatime\t'Do not update time on each access'\
auto\t'Mounted with'\
noauto\t'Not mounted by -a'\
defaults\t'Use default options'\
dev\t'Interpret character/block special devices'\
nodev\t'Do not interpret character/block special devices'\
diratime\t'Update directory inode access time'\
nodiratime\t'Don\'t update directory inode access time'\
dirsync\t'Use synchronous directory operations'\
exec\t'Permit executables'\
noexec\t'Do not permit executables'\
group\t'Any user within device group may mount'\
iversion\t'Increment i_version field on inode modification'\
noiversion\t'Don\'t increment i_version field on inode modification'\
mand\t'Allow mandatory locks'\
nomand\t'Don\'t allow mandatory locks'\
_netdev\t'Filesystem uses network'\
nofail\t'Don\'t report errors'\
relatime\t'Update inode access times'\
norelatime\t'Don\'t update inode access times'\
strictatime\
nostrictatime\
lazytime\
nolazytime\
suid\t'Allow suid bits'\
nosuid\t'Ignore suid bits'\
silent\
loud\
owner\
remount\t'Remount read-only filesystem'\
ro\t'Mount read-only'\
rw\t'Mount read-write'\
sync\t'Use synchronous I/O'\
user\t'Any user may mount'\
nouser\t'Only root may mount'\
users\t'Any user may mount and unmount'\
protect\
usemp\
verbose\
{grp,no,usr,}quota\
autodefrag\
compress\
compress-force\
degraded\
discard\
enospc_debug\
flushoncommit\
inode_cache\
context=\t'Set SELinux context'\
uid=\
gid=\
ownmask=\
othmask=\
setuid=\
setgid=\
mode=\
prefix=\
volume=\
reserved=\
root=\
bs=\
alloc_start=\
check_int{,_data,_print,_mask}=\
commit=\
compress=\
compress-force=\
device=\
fatal_errors=\
max_inline=\
metadata_ratio=\
noacl\
nobarrier\
nodatacow\
nodatasum\
notreelog\
recovery\
rescan_uuid_tree\
skip_balance\
nospace_cache\
clear_cache\
ssd\
nossd\
ssd_spread\
subvol=\
subvolrootid=\
thread_pool=\
user_subvol_rm_allowed\
acl\
noacl\
bsddf\
minixdf\
check=none\
nocheck\
debug\
errors={continue,remount-ro,panic}\
grpid\
bsdgroups\
bsdgroups\
bsdgroups\
nouid32\
grpquota\
grpquota\
resgid=\
resuid=\
sb=\
{user,nouser}_xattr\
journal={update,unum}\
journal{_dev,_path}=\
norecovery\
noload\
data={journal,ordered,writeback}\
data_err={ignore,abort}\
barrier={0,1}\
user_xattr\
acl\
set -l token (commandline -tc | string replace -r '^-o' -- '')
set -l fish_mount_opts \
async\t'Use asynchronous I/O' \
atime\t'Update time on each access' \
noatime\t'Do not update time on each access' \
auto\t'Mounted with' \
noauto\t'Not mounted by -a' \
defaults\t'Use default options' \
dev\t'Interpret character/block special devices' \
nodev\t'Do not interpret character/block special devices' \
diratime\t'Update directory inode access time' \
nodiratime\t'Don\'t update directory inode access time' \
dirsync\t'Use synchronous directory operations' \
exec\t'Permit executables' \
noexec\t'Do not permit executables' \
group\t'Any user within device group may mount' \
iversion\t'Increment i_version field on inode modification' \
noiversion\t'Don\'t increment i_version field on inode modification' \
mand\t'Allow mandatory locks' \
nomand\t'Don\'t allow mandatory locks' \
_netdev\t'Filesystem uses network' \
nofail\t'Don\'t report errors' \
relatime\t'Update inode access times' \
norelatime\t'Don\'t update inode access times' \
strictatime \
nostrictatime \
lazytime \
nolazytime \
suid\t'Allow suid bits' \
nosuid\t'Ignore suid bits' \
silent \
loud \
owner \
remount\t'Remount read-only filesystem' \
ro\t'Mount read-only' \
rw\t'Mount read-write' \
sync\t'Use synchronous I/O' \
user\t'Any user may mount' \
nouser\t'Only root may mount' \
users\t'Any user may mount and unmount' \
protect \
usemp \
verbose \
{grp,no,usr,}quota \
autodefrag \
compress \
compress-force \
degraded \
discard \
enospc_debug \
flushoncommit \
inode_cache \
context=\t'Set SELinux context' \
uid= \
gid= \
ownmask= \
othmask= \
setuid= \
setgid= \
mode= \
prefix= \
volume= \
reserved= \
root= \
bs= \
alloc_start= \
check_int{,_data,_print,_mask}= \
commit= \
compress= \
compress-force= \
device= \
fatal_errors= \
max_inline= \
metadata_ratio= \
noacl \
nobarrier \
nodatacow \
nodatasum \
notreelog \
recovery \
rescan_uuid_tree \
skip_balance \
nospace_cache \
clear_cache \
ssd \
nossd \
ssd_spread \
subvol= \
subvolrootid= \
thread_pool= \
user_subvol_rm_allowed \
acl \
noacl \
bsddf \
minixdf \
check=none \
nocheck \
debug \
errors={continue,remount-ro,panic} \
grpid \
bsdgroups \
bsdgroups \
bsdgroups \
nouid32 \
grpquota \
grpquota \
resgid= \
resuid= \
sb= \
{user,nouser}_xattr \
journal={update,unum} \
journal{_dev,_path}= \
norecovery \
noload \
data={journal,ordered,writeback} \
data_err={ignore,abort} \
barrier={0,1} \
user_xattr \
acl \
set -l token (commandline -tc | string replace -r '^-o' -- '')
set -l args (string split , -- $token)
if test (count $args) -ne 0