fish-shell/share/completions/attributes.fish

44 lines
1.5 KiB
Fish
Raw Normal View History

function __attributes_disk_complete_args
if not __fish_seen_subcommand_from set clear
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
echo -e 'readonly\tSpecify that the disk is read-only
2021-11-25 16:12:14 +08:00
noerr\tWhen an error is encountered, DiskPart continues to process commands'
end
2021-11-25 12:00:45 +08:00
function __attributes_volume_complete_args
if not __fish_seen_subcommand_from set clear
echo -e 'set\tSet the specified attribute of the volume with focus
2021-11-25 16:12:14 +08:00
clear\tClear the specified attribute of the volume with focus'
return
end
2021-11-25 12:00:45 +08:00
if not __fish_seen_subcommand_from readonly hidden nodefaultdriveletter shadowcopy
echo -e 'readonly\tSpecify that the volume is read-only
hidden\tSpecify that the volume is hidden
2021-11-25 16:12:14 +08:00
nodefaultdriveletter\tSpecify that the volume does not receive a drive letter by default
shadowcopy\tSpecify that the volume is a shadow copy volume'
end
echo -e 'noerr\tWhen an error is encountered, DiskPart continues to process commands'
end
function __attributes_complete_args -d 'Function to generate args'
if not __fish_seen_subcommand_from disk volume
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
__attributes_disk_complete_args
else if __fish_seen_subcommand_from volume
__attributes_volume_complete_args
end
2021-11-25 12:00:45 +08:00
end
complete -c attributes -f -a '(__attributes_complete_args)'