fish-shell/share/completions/md.fish
2022-01-26 21:37:39 -08:00

11 lines
354 B
Fish

function __md_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 md --no-files --arguments '(__md_generate_args)'