Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/artiga033/PwshComplete
- Owner: artiga033
- License: mit
- Created: 2022-07-20T08:59:44.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-17T04:05:09.000Z (over 1 year ago)
- Last Synced: 2024-05-22T22:35:46.065Z (6 months ago)
- Topics: command-line, powershell, tab-completion
- Language: PowerShell
- Homepage:
- Size: 27.3 KB
- Stars: 6
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - artiga033/PwshComplete - <TAB> completions with PowerShell for many popular cli tools (PowerShell)
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)