1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-21 07:20:09 +00:00

atom plugin

This commit is contained in:
Arno Fortelny 2014-03-21 11:49:52 -04:00
parent 6b3c953775
commit 5f31190ab9

View file

@ -1,4 +1,14 @@
# local _atom_paths > /dev/null 2>&1
# Your guess is as good as mine. Let's just assume that we will need this... _atom_paths=(
# - For more info visit... http://atom.io/ "$HOME/Applications/Atom.app"
# "/Applications/Atom.app"
)
for _atom_path in $_atom_paths; do
if [[ -a $_atom_path ]]; then
alias at="open -a '$_atom_path'"
break
fi
done
alias att='at .'