diff options
author | Amine Hilaly <hilalyamine@gmail.com> | 2019-06-23 14:50:15 +0200 |
---|---|---|
committer | Amine Hilaly <hilalyamine@gmail.com> | 2019-06-24 21:34:48 +0200 |
commit | 9b4b1fc09a9fca1aeb48560a258de8990070b3b5 (patch) | |
tree | ec4da082f377f6e7ec84128cc50443d97dc6daa0 /misc/powershell_completion | |
parent | 0dea0f6a7673865b16e71f1998c3b0db33a54514 (diff) | |
download | git-bug-9b4b1fc09a9fca1aeb48560a258de8990070b3b5.tar.gz |
Rebase and add bridge push zsh & powershell completion
Diffstat (limited to 'misc/powershell_completion')
-rw-r--r-- | misc/powershell_completion/git-bug | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/misc/powershell_completion/git-bug b/misc/powershell_completion/git-bug index 7eff1cda..b89897a3 100644 --- a/misc/powershell_completion/git-bug +++ b/misc/powershell_completion/git-bug @@ -50,6 +50,7 @@ Register-ArgumentCompleter -Native -CommandName 'git-bug' -ScriptBlock { 'git-bug;bridge' { [CompletionResult]::new('configure', 'configure', [CompletionResultType]::ParameterValue, 'Configure a new bridge.') [CompletionResult]::new('pull', 'pull', [CompletionResultType]::ParameterValue, 'Pull updates.') + [CompletionResult]::new('push', 'push', [CompletionResultType]::ParameterValue, 'Push updates.') [CompletionResult]::new('rm', 'rm', [CompletionResultType]::ParameterValue, 'Delete a configured bridge.') break } @@ -71,6 +72,9 @@ Register-ArgumentCompleter -Native -CommandName 'git-bug' -ScriptBlock { 'git-bug;bridge;pull' { break } + 'git-bug;bridge;push' { + break + } 'git-bug;bridge;rm' { break } |