From 96032e8e70d61ab5f7ed8419fd52b58fd9d0e734 Mon Sep 17 00:00:00 2001 From: Jeremy Wall Date: Sat, 26 Oct 2019 14:59:31 -0500 Subject: [PATCH] Add open as alias to Invoke-Item --- PS/PowerShellProfile.ps1 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/PS/PowerShellProfile.ps1 b/PS/PowerShellProfile.ps1 index 7548376..971602f 100644 --- a/PS/PowerShellProfile.ps1 +++ b/PS/PowerShellProfile.ps1 @@ -68,4 +68,7 @@ function New-Link { New-Item -ItemType SymbolicLink -Path $Destination -Target $Source } } -} \ No newline at end of file +} + +# It's way more useful to call this open than ii +Set-Alias -Name open -Value Invoke-Item \ No newline at end of file