mirror of
https://github.com/spf13/cobra
synced 2024-11-04 21:07:19 +00:00
completers ∀x∈ {cmds, aliases} in powershell_completions.go
pwsh completers ∀x∈ {cmds, aliases}
This commit is contained in:
parent
0e3a0bfe91
commit
a6a563d656
1 changed files with 9 additions and 1 deletions
|
@ -278,8 +278,16 @@ 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
|
||||||
|
|
||||||
Register-ArgumentCompleter -CommandName '%[1]s' -ScriptBlock $__%[2]sCompleterBlock
|
# Enumerate set aliases for %[1]s (set by user)
|
||||||
|
$__%[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) -ScriptBlock $__%[2]sCompleterBlock
|
||||||
`, name, nameForVar, compCmd,
|
`, name, nameForVar, compCmd,
|
||||||
ShellCompDirectiveError, ShellCompDirectiveNoSpace, ShellCompDirectiveNoFileComp,
|
ShellCompDirectiveError, ShellCompDirectiveNoSpace, ShellCompDirectiveNoFileComp,
|
||||||
ShellCompDirectiveFilterFileExt, ShellCompDirectiveFilterDirs, ShellCompDirectiveKeepOrder, activeHelpEnvVar(name)))
|
ShellCompDirectiveFilterFileExt, ShellCompDirectiveFilterDirs, ShellCompDirectiveKeepOrder, activeHelpEnvVar(name)))
|
||||||
|
|
Loading…
Reference in a new issue