add pdm scoop package
This commit is contained in:
parent
80a37ea936
commit
59baa230d8
2 changed files with 5 additions and 0 deletions
|
@ -16,6 +16,7 @@ wezterm shell-completion --shell power-shell > (Join-Path $script_location "wezt
|
|||
chezmoi completion powershell > (Join-Path $script_location "chezmoi_completion.ps1")
|
||||
pip completion --powershell > (Join-Path $script_location "pip_completion.ps1")
|
||||
rye self completion -s powershell > (Join-Path $script_location "rye_completion.ps1")
|
||||
pdm completion powershell > (Join-Path $script_location "pdm_completion.ps1")
|
||||
|
||||
# alias
|
||||
Set-Location $PSScriptRoot
|
||||
|
|
|
@ -231,3 +231,7 @@ Import-Module WSLTabCompletion
|
|||
|
||||
Get-ChildItem ~\.config\powershell\completions\ | % { . $_ }
|
||||
|
||||
# Automatically appended by pdm scoop package
|
||||
Get-ChildItem "$PROFILE\..\Completions\" | ForEach-Object {
|
||||
. $_.FullName
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue