mirror of
https://github.com/spf13/cobra
synced 2024-11-24 14:47:12 +00:00
Update powershell_completions.go
Preliminary assignment before use
This commit is contained in:
parent
d17f539906
commit
f43b653d17
1 changed files with 2 additions and 1 deletions
|
@ -287,7 +287,8 @@ foreach($__%[2]sCmd in $available%[2]s){
|
|||
$__%[2]sAliases += Get-Alias | Where-Object { $_.Definition -eq ($__%[2]sCmd | Resolve-Path) }
|
||||
}
|
||||
# Register args completer for all cmds and aliases
|
||||
Register-ArgumentCompleter -CommandName ([array]$available%[2]s.Name + [array]${__%[2]sAliases}.Name + @('%[1]s')) -ScriptBlock ${__%[2]sCompleterBlock}
|
||||
[string[]]$joint%[2]snames = [array]$available%[2]s.Name + [array]${__%[2]sAliases}.Name + @('%[1]s')
|
||||
Register-ArgumentCompleter -CommandName $joint%[2]snames -ScriptBlock ${__%[2]sCompleterBlock}
|
||||
`, name, nameForVar, compCmd,
|
||||
ShellCompDirectiveError, ShellCompDirectiveNoSpace, ShellCompDirectiveNoFileComp,
|
||||
ShellCompDirectiveFilterFileExt, ShellCompDirectiveFilterDirs, ShellCompDirectiveKeepOrder, activeHelpEnvVar(name)))
|
||||
|
|
Loading…
Reference in a new issue