Sublime Text CLI plugin

pull/219/head
Jason Benterou 2013-07-24 10:54:16 -07:00
parent 4da84ccaa9
commit 7f20ff3f1d
2 changed files with 11 additions and 1 deletions

1
.gitignore vendored
View File

@ -8,3 +8,4 @@ lib/custom.bash
plugins/custom.plugins.bash
*.swp
.*.un~
.subl-*/*

View File

@ -1,4 +1,13 @@
cite about-plugin
about-plugin 'Add Sublime Text cli binary "subl" to path'
export PATH=$PATH:/Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl
SUBL_BIN="/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl"
SUBL_LOCAL_DIR=$BASH_IT/.subl-bin/
SUBL_LOCAL_BIN=$BASH_IT/.subl-bin/subl
if [ ! -f $SUBL_LOCAL_BIN ]; then
mkdir -p $SUBL_LOCAL_DIR
ln -s "$SUBL_BIN" $SUBL_LOCAL_BIN
fi
export PATH=$PATH:$SUBL_LOCAL_DIR