mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-19 00:14:01 +00:00
2683dc4af8
- use __fish_list_windows_drives - reformat
12 lines
343 B
Fish
12 lines
343 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 '*'
|
|
__fish_list_windows_drives
|
|
end
|
|
end
|
|
|
|
complete --command vol --no-files --arguments '(__vol_generate_args)'
|