dotfiles/bin/windows/create_completion_files.ps1

20 lines
791 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")
wezterm shell-completion --shell power-shell > (Join-Path $script_location "wezterm_completion.ps1")
chezmoi completion powershell > (Join-Path $script_location "chezmoi_completion.ps1")
2023-03-16 22:19:04 +09:00
# alias
Set-Location $PSScriptRoot
Get-ChildItem "../../extra_configs/completions" -File | Copy-Item -Destination $script_location