dotnet / sdk

Core functionality needed to create .NET Core projects, that is shared between Visual Studio and CLI
https://dot.net/core
MIT License
2.67k stars 1.06k forks source link

Add tab completion for fish-shell #8374

Open spboyer opened 7 years ago

spboyer commented 7 years ago

Docs: https://fishshell.com/docs/current/index.html#completion

Awesome support for current Powershell, bash and zsh. (https://github.com/dotnet/cli/blob/master/Documentation/general/tab-completion.md)

Need support for fish-shell. http://fishshell.com

CumpsD commented 6 years ago

I think this should do it:

complete --command dotnet --arguments '(dotnet complete (commandline -cp))'

slang25 commented 6 years ago

@CumpsD worked great! Thank you