Skip to content

Commit

Permalink
Update powershell_completions.go
Browse files Browse the repository at this point in the history
Implement curly bracket technique like spf13#1960
  • Loading branch information
mavaddat committed Jun 19, 2023
1 parent cc6f7e0 commit 0676e26
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions powershell_completions.go
Expand Up @@ -282,12 +282,12 @@ filter __%[1]s_escapeStringWithSpecialChars {
$available%[2]s = Get-Command -Name '%[1]s' -All -ErrorAction SilentlyContinue
# Enumerate extant aliases for %[1]s (already set by user)
$__%[2]sAliases = @()
${__%[2]sAliases} = @()
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
Register-ArgumentCompleter -CommandName ([array]$available%[2]s.Name + [array]${__%[2]sAliases}.Name + @('%[1]s')) -ScriptBlock ${__%[2]sCompleterBlock}
`, name, nameForVar, compCmd,
ShellCompDirectiveError, ShellCompDirectiveNoSpace, ShellCompDirectiveNoFileComp,
ShellCompDirectiveFilterFileExt, ShellCompDirectiveFilterDirs, ShellCompDirectiveKeepOrder, activeHelpEnvVar(name)))
Expand Down

0 comments on commit 0676e26

Please sign in to comment.