mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 00:33:00 +00:00
9 lines
372 B
PowerShell
9 lines
372 B
PowerShell
function Invoke-Completion {
|
|
param ([string]$command)
|
|
switch ($command) {
|
|
'docker' { docker completion powershell | Out-String | Invoke-Expression }
|
|
'git' { Import-Module Posh-Git }
|
|
'hugo' { hugo completion powershell | Out-String | Invoke-Expression }
|
|
'pip' { pip completion --powershell | Out-String | Invoke-Expression }
|
|
}
|
|
}
|