Jakub Narebski <jnareb@xxxxxxxxx> wrote: > Junio C Hamano <gitster@xxxxxxxxx> writes: > > Eric Wong <normalperson@xxxxxxxx> writes: > > > > > This exposes the launch_editor() library function for use by > > > various scripting languages. This allows the ensure consistent > > > handling of GIT_EDITOR/VISUAL/EDITOR environment variables as > > > well as the handling of special characters such as spaces in the > > > various environment variables. > > > > > > Signed-off-by: Eric Wong <normalperson@xxxxxxxx> > > > --- > > > > > > I'm not sure if git-config is the best place to stick it. I plan to > > > start using this in git-svn but I don't want to implement Git::Editor > > > in Perl and have to keep track of editor.c. Of course this also makes > > > the logic/rules used in libgit usable to any other scripting language > > > capable of launching other programs. > > > > I agree that git-config is probably a wrong place. A separate command > > "git editor" (or "git user-preference --editor", if you extend it to pager > > and others) perhaps? > > > > I also agree that something like this would make scripting Porcelains a > > much pleasant experience. > > I don't think this is something that should be put in 'git rev-parse', You meant 'git config' --/ Unless you remotely accessed my brain while I was deciding on this before I picked 'git config' :) > but perhaps a bit obscure 'git var' (print a git logical variable) > would be a good place for that? Well, it would involve executing another program; so 'git var' might not be a good fit. I don't want it to just print out what command to run because of quoting rules (and my primary reason for wanting to standardize on this was because a user privately emailed me about wanting to use 'mate -w' as his GIT_EDITOR with git-svn). Junio: "git user-preference" would be confusing given we already have "git config"... Perhaps a new command called 'git exec-helper' ? git exec-helper pager git exec-helper editor <FILE> ... git exec-helper sendmail ? git exec-helper browser <URL> ? -- Eric Wong -- 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