mirror of
https://github.com/spf13/cobra
synced 2024-11-04 21:07:19 +00:00
Merge 955cac7eb9
into bd914e58d6
This commit is contained in:
commit
8115abd854
1 changed files with 10 additions and 1 deletions
|
@ -278,8 +278,17 @@ filter __%[1]s_escapeStringWithSpecialChars {
|
|||
|
||||
}
|
||||
}
|
||||
# Enumerate the cmds for %[1]s (set by System.Environment)
|
||||
$available%[2]s = Get-Command -Name '%[1]s' -All -ErrorAction SilentlyContinue | Select-Object -ExpandProperty Definition -ErrorAction SilentlyContinue
|
||||
|
||||
Register-ArgumentCompleter -CommandName '%[1]s' -ScriptBlock ${__%[2]sCompleterBlock}
|
||||
# Enumerate extant aliases for %[1]s (already set by user)
|
||||
${__%[2]sAliases} = @()
|
||||
foreach($__%[2]sCmd in $available%[2]s){
|
||||
$__%[2]sAliases += Get-Alias | Where-Object { $_.Definition -eq ($__%[2]sCmd | Resolve-Path -ErrorAction SilentlyContinue) -or $_.Definition -eq (Get-Command -Name $__%[2]sCmd -ErrorAction SilentlyContinue).Definition }
|
||||
}
|
||||
# Register args completer for all cmds and aliases
|
||||
[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