modified EDITOR variable to use exact path

pull/2/head
Bodaniel Jeanes 2008-09-10 07:59:10 +10:00
parent 1dde7c26b8
commit 398023d7f2
1 changed files with 3 additions and 3 deletions

6
bashrc
View File

@ -27,9 +27,9 @@ export PS1='\h:\W \u$(__git_ps1 " \[${COLOR_RED}\](%s)\[${COLOR_NC}\]")\$ '
export TERM=xterm-color export TERM=xterm-color
export GREP_OPTIONS='--color=auto' GREP_COLOR='1;32' export GREP_OPTIONS='--color=auto' GREP_COLOR='1;32'
export CLICOLOR=1 export CLICOLOR=1
export EDITOR='mate -w' export EDITOR='/usr/bin/mate -w'
export GIT_EDITOR='mate -w' export GIT_EDITOR=$EDITOR
export VISUAL='mate -w' export VISUAL=$EDITOR
# sets title of window to be user@host # sets title of window to be user@host
export PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME%%.*} ${PWD}"; echo -ne "\007"' export PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME%%.*} ${PWD}"; echo -ne "\007"'