zsh: add `finder` function to open Finder
Alan Pearce alan@alanpearce.eu
Tue, 04 Apr 2023 08:20:51 +0200
1 files changed, 4 insertions(+), 0 deletions(-)
jump to
M user/zsh/zshrc.darwin → user/zsh/zshrc.darwin
@@ -27,3 +27,7 @@ retval=$? set_title return $retval } +finder() { + open -a Finder "${1:-.}" +} +compdef '_path_files -/' finder