Hi, On Thu, 19 Jul 2007, Adam Roben wrote: > This function can be used to set the GIT_EDITOR variable to the user's > preferred editor. Much nicer, thank you. However, > - commit_editor=$(git config core.editor || echo ${VISUAL:-$EDITOR}) > - case "$commit_editor,$TERM" in > + case "$GIT_EDITOR,$TERM" in > ,dumb) This can no longer happen, since ... > +set_editor() { > + GIT_EDITOR=$(git config core.editor || echo ${VISUAL:-${EDITOR:-vi}}) > + export GIT_EDITOR > +} ... "vi" is the last resort, not "", right? So I guess you just want to drag that test and warning into git-sh-setup (where I think it has a better home anyway). Ciao, Dscho - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html