Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Ohmyzsh
Commits
aaf705c5
Commit
aaf705c5
authored
Jul 29, 2012
by
bwl
Browse files
Adding logic for ~/Applications folder installs of Sublime Text 2
parent
d05b2010
Changes
1
Show whitespace changes
Inline
Side-by-side
plugins/sublime/sublime.plugin.zsh
View file @
aaf705c5
# Sublime Text 2 Aliases
# Sublime Text 2 Aliases
#unamestr = 'uname'
#unamestr = 'uname'
local
_sublime_darwin_subl
=
/Applications/Sublime
\
Text
\
2.app/Contents/SharedSupport/bin/subl
if
[[
$(
'uname'
)
==
'Linux'
]]
;
then
if
[[
$(
'uname'
)
==
'Linux'
]]
;
then
alias
st
=
'/usr/bin/sublime_text&'
alias
st
=
'/usr/bin/sublime_text&'
elif
[[
$(
'uname'
)
==
'Darwin'
]]
;
then
elif
[[
$(
'uname'
)
==
'Darwin'
]]
;
then
alias
st
=
'/Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl'
# Check if Sublime is installed in user's home application directory
if
[[
-a
$HOME
/
${
_sublime_darwin_subl
}
]]
;
then
alias
st
=
'$HOME/${_sublime_darwin_subl}'
else
alias
st
=
'${_sublime_darwin_subl}'
fi
fi
fi
alias
stt
=
'st .'
alias
stt
=
'st .'
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment