private/Open-Code.ps1
function Open-Code { param([string]$aliasNameOrPath) $alias = Get-Alias $aliasNameOrPath $path = $alias.WindowsPath ?? $aliasNameOrPath if (!(Test-Path $path)) { throw "Could not find path for '$aliasNameOrPath'" } Start-Process "code" $path -NoNewWindow } |