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