sublime.plugin.zsh 1.34 KB
Newer Older
Dylan Hudson's avatar
Dylan Hudson committed
1
# Sublime Text 2 Aliases
2
3

if [[ $('uname') == 'Linux' ]]; then
Kaiwen Xu's avatar
Kaiwen Xu committed
4
5
6
7
8
9
    local _sublime_linux_paths > /dev/null 2>&1
    _sublime_linux_paths=(
        "$HOME/bin/sublime_text"
        "/opt/sublime_text/sublime_text"
        "/usr/bin/sublime_text"
        "/usr/local/bin/sublime_text"
10
        "/usr/bin/subl"
Kaiwen Xu's avatar
Kaiwen Xu committed
11
12
13
14
15
16
17
18
    )
    for _sublime_path in $_sublime_linux_paths; do
        if [[ -a $_sublime_path ]]; then
            st_run() { $_sublime_path $@ >/dev/null 2>&1 &| }
            alias st=st_run
            break
        fi
    done
19

20
elif  [[ $('uname') == 'Darwin' ]]; then
Kaiwen Xu's avatar
Kaiwen Xu committed
21
22
23
24
25
26
27
28
29
30
    local _sublime_darwin_paths > /dev/null 2>&1
    _sublime_darwin_paths=(
        "/usr/local/bin/subl"
        "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl"
        "/Applications/Sublime Text 3.app/Contents/SharedSupport/bin/subl"
        "/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl"
        "$HOME/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl"
        "$HOME/Applications/Sublime Text 3.app/Contents/SharedSupport/bin/subl"
        "$HOME/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl"
    )
31

Gaetan Semet's avatar
Gaetan Semet committed
32
33
34
35
36
37
38
    for _sublime_path in $_sublime_darwin_paths; do
        if [[ -a $_sublime_path ]]; then
            alias subl="'$_sublime_path'"
            alias st=subl
            break
        fi
    done
39
fi
40

Dylan Hudson's avatar
Dylan Hudson committed
41
alias stt='st .'