From aa1df74b613ef4d9a355745d4f1a02cab9230657 Mon Sep 17 00:00:00 2001 From: Holger Just Date: Tue, 26 Jun 2012 19:50:13 +0200 Subject: [PATCH] Re-enable sublime as the default editor --- .bashrc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.bashrc b/.bashrc index 21ae6b8..67b260b 100755 --- a/.bashrc +++ b/.bashrc @@ -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