mirror of
https://github.com/grafana/grafana.git
synced 2026-02-03 20:49:50 -05:00
8 lines
367 B
PowerShell
8 lines
367 B
PowerShell
$name = "grafana"
|
|
Register-ArgumentCompleter -Native -CommandName $name -ScriptBlock {
|
|
param($commandName, $wordToComplete, $cursorPosition)
|
|
$other = "$wordToComplete --generate-bash-completion"
|
|
Invoke-Expression $other | ForEach-Object {
|
|
[System.Management.Automation.CompletionResult]::new($_, $_, 'ParameterValue', $_)
|
|
}
|
|
}
|