Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/artiga033/PwshComplete

<TAB> completions with PowerShell for many popular cli tools
https://github.com/artiga033/PwshComplete

command-line powershell tab-completion

Last synced: 3 months ago
JSON representation

<TAB> completions with PowerShell for many popular cli tools

Awesome Lists containing this project

README

        

## pwsh-complete

Add **Tab** completions for popular cli tools on powershell.

## Installation
### Quick Start
``` powershell
Install-Module -Name PwshComplete
Import-Module PwshComplete
```
You may modify your powershell profile to make it load automatically:
``` powershell
notepad $PROFILE
```
Note that if the file doesn't exist, you need to create it manually by checking the `$PROFILE` variable.

And add the following line to the end of the file:
``` powershell
Import-Module PwshComplete
```

## Works for:

- [x] adb
- [ ] cargo
- [ ] curl
- [x] deno
- [x] dotnet
- [x] gpg & gpgv
- [x] scoop
- [x] ssh & scp
- [x] winget

## Credits
[Moeologist/scoop-completion](https://github.com/Moeologist/scoop-completion) (MIT License)