mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-01 07:38:46 +00:00
14 lines
405 B
Fish
14 lines
405 B
Fish
|
function __rd_generate_args --description 'Function to generate args'
|
||
|
set --local current_token (commandline --current-token --cut-at-cursor)
|
||
|
switch $current_token
|
||
|
case '/*'
|
||
|
echo -e '/s\tDelete a directory tree
|
||
|
/q\tSpecify quiet mode
|
||
|
/?\tShow help'
|
||
|
case '*'
|
||
|
wmic logicaldisk get name | tail --lines +2
|
||
|
end
|
||
|
end
|
||
|
|
||
|
complete --command rd --no-files --arguments '(__rd_generate_args)'
|