ohmyzsh/plugins/atom/atom.plugin.zsh
2014-10-06 06:51:09 +02:00

14 lines
267 B
Bash

local _atom_paths > /dev/null 2>&1
_atom_paths=(
"$HOME/Applications/Atom.app"
"/Applications/Atom.app"
)
for _atom_path in $_atom_paths; do
if [[ -a $_atom_path ]]; then
alias a="open -a '$_atom_path'"
break
fi
done
alias att='a .'