sublime.plugin.zsh 3.66 KB
Newer Older
1
# Sublime Text aliases
2

3
4
alias st=subl
alias stt='subl .'
5

6
7
8
9
10
11
12
13
14
15
16
17
# Define sst only if sudo exists
(( $+commands[sudo] )) && alias sst='sudo subl'

alias stp=find_project
alias stn=create_project


# Search for the Sublime Text command if not found
(( $+commands[subl] )) || {
  declare -a _sublime_paths

  if [[ "$OSTYPE" == linux* ]]; then
18
    if [[ "$(uname -r)" = *icrosoft* ]]; then
19
      _sublime_paths=(
20
21
        "$(wslpath -u 'C:\Program Files\Sublime Text 3\subl.exe' 2>/dev/null)"
        "$(wslpath -u 'C:\Program Files\Sublime Text 2\subl.exe' 2>/dev/null)"
22
23
24
      )
    else
      _sublime_paths=(
Kaiwen Xu's avatar
Kaiwen Xu committed
25
26
        "$HOME/bin/sublime_text"
        "/opt/sublime_text/sublime_text"
27
        "/opt/sublime_text_3/sublime_text"
Kaiwen Xu's avatar
Kaiwen Xu committed
28
29
        "/usr/bin/sublime_text"
        "/usr/local/bin/sublime_text"
30
        "/usr/bin/subl"
31
        "/usr/bin/subl3"
32
33
        "/snap/bin/subl"
        "/snap/bin/sublime-text.subl"
34
35
36
37
38
39
      )
    fi
  elif [[ "$OSTYPE" = darwin* ]]; then
    _sublime_paths=(
      "/usr/local/bin/subl"
      "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl"
40
      "/Applications/Sublime Text 4.app/Contents/SharedSupport/bin/subl"
41
42
43
      "/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"
44
      "$HOME/Applications/Sublime Text 4.app/Contents/SharedSupport/bin/subl"
45
46
      "$HOME/Applications/Sublime Text 3.app/Contents/SharedSupport/bin/subl"
      "$HOME/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl"
Kaiwen Xu's avatar
Kaiwen Xu committed
47
    )
48
49
50
51
  elif [[ "$OSTYPE" = cygwin ]]; then
    _sublime_paths=(
      "$(cygpath "$ProgramW6432/Sublime Text 2")/subl.exe"
      "$(cygpath "$ProgramW6432/Sublime Text 3")/subl.exe"
Kaiwen Xu's avatar
Kaiwen Xu committed
52
    )
53
54
55
56
  elif [[ "$OSTYPE" = msys ]]; then
    _sublime_paths=(
      "/c/Program Files/Sublime Text 2/subl.exe"
      "/c/Program Files/Sublime Text 3/subl.exe"
Tyler Charlesworth's avatar
Tyler Charlesworth committed
57
    )
58
  fi
Tyler Charlesworth's avatar
Tyler Charlesworth committed
59

60
61
62
63
64
65
66
  for _sublime_path in $_sublime_paths; do
    if [[ -a $_sublime_path ]]; then
      alias subl="'$_sublime_path'"
      (( $+commands[sudo] )) && alias sst="sudo '$_sublime_path'"
      break
    fi
  done
67

68
69
  unset _sublime_paths _sublime_path
}
70

71
72
73
function find_project() {
  local PROJECT_ROOT="${PWD}"
  local FINAL_DEST="."
74

75
76
77
  while [[ $PROJECT_ROOT != "/" && ! -d "$PROJECT_ROOT/.git" ]]; do
    PROJECT_ROOT=$(dirname $PROJECT_ROOT)
  done
78

79
80
  if [[ $PROJECT_ROOT != "/" ]]; then
    local PROJECT_NAME="${PROJECT_ROOT##*/}"
81

82
83
84
85
    local SUBL_DIR=$PROJECT_ROOT
    while [[ $SUBL_DIR != "/" && ! -f "$SUBL_DIR/$PROJECT_NAME.sublime-project" ]]; do
      SUBL_DIR=$(dirname $SUBL_DIR)
    done
86

87
88
89
90
    if [[ $SUBL_DIR != "/" ]]; then
      FINAL_DEST="$SUBL_DIR/$PROJECT_NAME.sublime-project"
    else
      FINAL_DEST=$PROJECT_ROOT
91
    fi
92
  fi
93

94
  subl $FINAL_DEST
95
96
}

97
function create_project() {
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
  local _target=$1

  if [[ "${_target}" == "" ]]; then
    _target=$(pwd);
  elif [[ ! -d ${_target} ]]; then
    echo "${_target} is not a valid directory"
    return 1
  fi

  local _sublime_project_file=$_target/$(basename $_target).sublime-project

  if [[ ! -f $_sublime_project_file ]]; then
    touch $_sublime_project_file

    echo -e "{"                         >> $_sublime_project_file
    echo -e "\t\"folders\":"            >> $_sublime_project_file
    echo -e "\t\t[{"                    >> $_sublime_project_file
    echo -e "\t\t\t\"path\": \".\","    >> $_sublime_project_file
    echo -e "\t\t\t\"file_exclude_patterns\": []" >> $_sublime_project_file
    echo -e "\t\t}]"                    >> $_sublime_project_file
    echo -e "}"                         >> $_sublime_project_file

    echo -e "New Sublime Text project created:\n\t${_sublime_project_file}"
  fi
122
}