mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-24 12:15:28 +08:00
18 lines
765 B
Fish
18 lines
765 B
Fish
function __cleanmgr_generate_args --description 'Function to generate args'
|
|
set --local previous_token (commandline --tokenize --cut-at-cursor)[-1]
|
|
|
|
if test "$previous_token" = '/d'
|
|
wmic logicaldisk get caption | sed --quiet '1b;/./p'
|
|
return
|
|
end
|
|
|
|
echo -e '/d\tSpecify the drive that you want Disk Cleanup to clean
|
|
/sageset\tDisplay the Disk Cleanup Settings dialog box and also create a registry keyt
|
|
/sagerun\tRun the specified tasks that are assigned to the n value if you use the /sageset option
|
|
/tuneup\tRun /sageset and /sagerun for the same n
|
|
/lowdisk\tRun with the default settings
|
|
/verylowdisk\tRun with the default settings, no user prompts
|
|
/?\tShow help'
|
|
end
|
|
|
|
complete --command cleanmgr --no-files --arguments '(__cleanmgr_generate_args)' |