dotfiles/bin/windows/create_completion_files.ps1

22 lines
958 B
PowerShell
Raw Normal View History

2023-02-19 06:29:15 +09:00
# create completion scripts file
$script_location = "$HOME\.config\powershell\completions"
if (!(Test-Path $script_location)) {
echo "No existing completions"
echo "Creating ~/.config/powershell/completions..."
mkdir $script_location
}
# write
Get-ChildItem $script_location | Remove-Item
rclone completion powershell > (Join-Path $script_location "rclone_completion.ps1")
rustup completions powershell > (Join-Path $script_location "rustup_completion.ps1")
elan completions powershell > (Join-Path $script_location "elan_completion.ps1")
2023-02-19 06:29:15 +09:00
wezterm shell-completion --shell power-shell > (Join-Path $script_location "wezterm_completion.ps1")
chezmoi completion powershell > (Join-Path $script_location "chezmoi_completion.ps1")
pip completion --powershell > (Join-Path $script_location "pip_completion.ps1")
2023-02-19 06:29:15 +09:00
2023-03-16 22:19:04 +09:00
# alias
Set-Location $PSScriptRoot
2023-03-18 21:07:53 +09:00
Get-ChildItem "../../extra_configs/completions" -File *.ps1 | Copy-Item -Destination $script_location