14 lines
No EOL
348 B
Bash
14 lines
No EOL
348 B
Bash
#!/bin/bash
|
|
# bash parameter completion for the dotnet CLI
|
|
|
|
_dotnet_bash_complete()
|
|
{
|
|
local word=${COMP_WORDS[COMP_CWORD]}
|
|
local dotnetPath=${COMP_WORDS[1]}
|
|
|
|
local completions=("$(dotnet complete --position ${COMP_POINT} "${COMP_LINE}")")
|
|
|
|
COMPREPLY=( $(compgen -W "$completions" -- "$word") )
|
|
}
|
|
|
|
complete -f -F _dotnet_bash_complete dotnet |