fish-shell/share/completions/attributes.fish

36 lines
1.3 KiB
Fish
Raw Normal View History

2021-11-25 12:00:45 +08:00
function __attributes_generate_args --description 'Function to generate args'
2021-11-26 13:26:04 +08:00
if not __fish_seen_subcommand_from disk volume
2021-11-25 16:12:14 +08:00
echo -e 'disk\tDisplay, set, or clear the attributes of a disk
volume\tDisplay, set, or clear the attributes of a volume'
2021-11-25 12:00:45 +08:00
return
end
if __fish_seen_subcommand_from disk
2021-11-26 13:26:04 +08:00
if not __fish_seen_subcommand_from set clear
2021-11-25 16:12:14 +08:00
echo -e 'set\tSet the specified attribute of the disk with focus
clear\tClear the specified attribute of the disk with focus'
2021-11-25 12:00:45 +08:00
return
end
2021-11-25 16:12:14 +08:00
echo -e 'readonly\tSpecify that the disk is read-only
noerr\tWhen an error is encountered, DiskPart continues to process commands'
2021-11-25 12:00:45 +08:00
return
end
if __fish_seen_subcommand_from volume
2021-11-26 13:26:04 +08:00
if not __fish_seen_subcommand_from set clear
2021-11-25 16:12:14 +08:00
echo -e 'set\tSet the specified attribute of the volume with focus
clear\tClear the specified attribute of the volume with focus'
2021-11-25 12:00:45 +08:00
return
end
2021-11-25 16:12:14 +08:00
echo -e 'readonly\tSpecify that the volume is read-only
readonly\tSpecify that the volume is hidden
nodefaultdriveletter\tSpecify that the volume does not receive a drive letter by default
shadowcopy\tSpecify that the volume is a shadow copy volume
noerr\tWhen an error is encountered, DiskPart continues to process commands'
2021-11-25 12:00:45 +08:00
return
end
end
complete --command attributes --no-files --arguments '(__attributes_generate_args)'