summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorRobby Russell <robby@planetargon.com>2014-03-22 07:52:24 -0700
committerRobby Russell <robby@planetargon.com>2014-03-22 07:52:24 -0700
commit6d616de6f1a9046de75198959a55e96e110b38f0 (patch)
tree81fd069fdc68944238155378aaf1921504150188 /plugins
parent184e93cb059c639592ed64f58955a5363fbf0f45 (diff)
parent5f31190ab9fd41fd1ffe2b0878674adc02933f9b (diff)
downloadzsh-6d616de6f1a9046de75198959a55e96e110b38f0.tar.gz
zsh-6d616de6f1a9046de75198959a55e96e110b38f0.tar.bz2
zsh-6d616de6f1a9046de75198959a55e96e110b38f0.zip
Merge pull request #2637 from aforty/master
Atom plugin
Diffstat (limited to 'plugins')
-rw-r--r--plugins/atom/atom.plugin.zsh18
1 files changed, 14 insertions, 4 deletions
diff --git a/plugins/atom/atom.plugin.zsh b/plugins/atom/atom.plugin.zsh
index 048fd7521..9adb9031a 100644
--- a/plugins/atom/atom.plugin.zsh
+++ b/plugins/atom/atom.plugin.zsh
@@ -1,4 +1,14 @@
-#
-# Your guess is as good as mine. Let's just assume that we will need this...
-# - For more info visit... http://atom.io/
-# \ No newline at end of file
+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 at="open -a '$_atom_path'"
+ break
+ fi
+done
+
+alias att='at .'