2022-01-24 10:10:56 +00:00
|
|
|
function __cleanmgr_complete_args -d 'Function to generate args'
|
2022-01-27 06:02:23 +00:00
|
|
|
set -l previous_token (commandline -oc)[-1]
|
2021-11-26 00:20:09 +00:00
|
|
|
|
2022-01-27 06:02:23 +00:00
|
|
|
if test "$previous_token" = /d
|
|
|
|
__fish_print_windows_drives
|
|
|
|
return
|
|
|
|
end
|
2021-11-26 00:20:09 +00:00
|
|
|
end
|
|
|
|
|
2022-01-24 10:10:56 +00:00
|
|
|
complete -c cleanmgr -f -a '(__cleanmgr_complete_args)'
|
|
|
|
|
|
|
|
complete -c cleanmgr -f -a /d -d 'Specify the drive'
|
|
|
|
complete -c cleanmgr -f -a /sageset \
|
|
|
|
-d 'Display the Disk Cleanup Settings dialog box and also create a registry key'
|
|
|
|
complete -c cleanmgr -f -a /sagerun -d 'Run the specified tasks that are assigned to the n value'
|
|
|
|
complete -c cleanmgr -f -a /tuneup -d 'Run /sageset and /sagerun for the same n'
|
|
|
|
complete -c cleanmgr -f -a /lowdisk -d 'Run with the default settings'
|
|
|
|
complete -c cleanmgr -f -a /verylowdisk -d 'Run with the default settings, no user prompts'
|
|
|
|
complete -c cleanmgr -f -a '/?' -d 'Show help'
|