-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
powershell completion with custom comp
The current powershell completion is not very capable. Let's port it to the go custom completion logic to have a unified experience accross all shells. Powershell supports three different completion modes - TabCompleteNext (default windows style - on each key press the next option is displayed) - Complete (works like bash) - MenuComplete (works like zsh) You set the mode with `Set-PSReadLineKeyHandler -Key Tab -Function <mode>` Descriptions will only be supported for Complete and MenuComplete. Signed-off-by: Paul Holzinger <paul.holzinger@web.de>
- Loading branch information
Paul Holzinger
committed
Aug 28, 2020
1 parent
02a0d2f
commit 4af1e92
Showing
4 changed files
with
274 additions
and
206 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,3 @@ | ||
# Generating PowerShell Completions For Your Own cobra.Command | ||
|
||
Cobra can generate PowerShell completion scripts. Users need PowerShell version 5.0 or above, which comes with Windows 10 and can be downloaded separately for Windows 7 or 8.1. They can then write the completions to a file and source this file from their PowerShell profile, which is referenced by the `$Profile` environment variable. See `Get-Help about_Profiles` for more info about PowerShell profiles. | ||
|
||
*Note*: PowerShell completions have not (yet?) been aligned to Cobra's generic shell completion support. This implies the PowerShell completions are not as rich as for other shells (see [What's not yet supported](#whats-not-yet-supported)), and may behave slightly differently. They are still very useful for PowerShell users. | ||
|
||
# What's supported | ||
|
||
- Completion for subcommands using their `.Short` description | ||
- Completion for non-hidden flags using their `.Name` and `.Shorthand` | ||
|
||
# What's not yet supported | ||
|
||
- Command aliases | ||
- Required, filename or custom flags (they will work like normal flags) | ||
- Custom completion scripts | ||
Please refer to [Shell Completions](shell_completions.md#powershell-completions) for details. |
Oops, something went wrong.