mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-15 01:17:45 +00:00
11 lines
357 B
Fish
11 lines
357 B
Fish
function __vol_generate_args --description 'Function to generate args'
|
|
set --local current_token (commandline --current-token --cut-at-cursor)
|
|
switch $current_token
|
|
case '/*'
|
|
echo -e '/?\tShow help'
|
|
case "*"
|
|
wmic logicaldisk get name | tail --lines +2
|
|
end
|
|
end
|
|
|
|
complete --command vol --no-files --arguments '(__vol_generate_args)'
|