1
0
mirror of https://github.com/meineerde/dotfiles.git synced 2026-02-06 00:53:23 +00:00

Re-enable sublime as the default editor

This commit is contained in:
Holger Just 2012-06-26 19:50:13 +02:00
parent dd5289fc18
commit aa1df74b61

10
.bashrc
View File

@ -76,11 +76,11 @@ case `uname` in
# this requires a symlink from "/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl"
# into $PATH, e.g. ~/bin/subl
# if [[ $(which subl) ]]; then
# export EDITOR="subl -n"
# export SVN_EDITOR="subl -nw"
# elif [[ $(which mate) ]]; then
if [[ $(which mate) ]]; then
if [[ $(which subl) ]]; then
export EDITOR="subl -n"
export SVN_EDITOR="subl -nw"
elif [[ $(which mate) ]]; then
# if [[ $(which mate) ]]; then
export EDITOR="mate -wl1 -n"
export SVN_EDITOR="mate -wl1 -n"
fi