Re: EDITOR with tilde not expanded in git-commit

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Kyle Rose
Date: Tuesday, August 28, 2007 - 8:22 am

> As I said, EDITOR is set to "~/bin/xemacs -nw", that is, he did
It's not clear to me how this ever would have worked.  Programs *can*
execute $EDITOR with system(3), but it's possible they could execute it
with exec, in which case the binary "~/bin/xemacs -nw" definitely would
not be found.

The right solution to this IMO is to do both of the following:

(1) Create a shell script ~/bin/xemacs-nox that contains

#! /bin/bash
xemacs -nw "$@"

(2) Set the editor to

EDITOR=~/bin/xemacs-nox

Note the distinct LACK of double quotes around the value, which will
result in the shell expanding the ~ before assigning the value to $EDITOR.

Kyle

-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
EDITOR with tilde not expanded in git-commit, Bill Lear, (Tue Aug 28, 7:12 am)
Re: EDITOR with tilde not expanded in git-commit, Nguyen Thai Ngoc Duy, (Tue Aug 28, 7:37 am)
Re: EDITOR with tilde not expanded in git-commit, Bill Lear, (Tue Aug 28, 7:44 am)
Re: EDITOR with tilde not expanded in git-commit, Mike Hommey, (Tue Aug 28, 7:52 am)
Re: EDITOR with tilde not expanded in git-commit, Petr Baudis, (Tue Aug 28, 7:58 am)
Re: EDITOR with tilde not expanded in git-commit, Mike Hommey, (Tue Aug 28, 8:03 am)
Re: EDITOR with tilde not expanded in git-commit, Randal L. Schwartz, (Tue Aug 28, 8:16 am)
Re: EDITOR with tilde not expanded in git-commit, Bill Lear, (Tue Aug 28, 8:17 am)
Re: EDITOR with tilde not expanded in git-commit, Mike Hommey, (Tue Aug 28, 8:20 am)
Re: EDITOR with tilde not expanded in git-commit, Kyle Rose, (Tue Aug 28, 8:22 am)
Re: EDITOR with tilde not expanded in git-commit, Petr Baudis, (Tue Aug 28, 8:24 am)
Re: EDITOR with tilde not expanded in git-commit, Bill Lear, (Tue Aug 28, 8:24 am)
Re: EDITOR with tilde not expanded in git-commit, Mike Hommey, (Tue Aug 28, 8:25 am)
Re: EDITOR with tilde not expanded in git-commit, Petr Baudis, (Tue Aug 28, 8:27 am)
Re: EDITOR with tilde not expanded in git-commit, Bill Lear, (Tue Aug 28, 8:28 am)
Re: EDITOR with tilde not expanded in git-commit, Matthieu Moy, (Tue Aug 28, 8:50 am)
Re: EDITOR with tilde not expanded in git-commit, Matthieu Moy, (Tue Aug 28, 8:58 am)
Re: EDITOR with tilde not expanded in git-commit, Randal L. Schwartz, (Tue Aug 28, 9:00 am)
Re: EDITOR with tilde not expanded in git-commit, Matthieu Moy, (Tue Aug 28, 9:11 am)
Re: EDITOR with tilde not expanded in git-commit, Alex Riesen, (Tue Aug 28, 10:47 am)
Re: EDITOR with tilde not expanded in git-commit, Kyle Rose, (Tue Aug 28, 10:52 am)