2008-07-25 18:28:41 +02:00
|
|
|
#include "cache.h"
|
|
|
|
#include "strbuf.h"
|
|
|
|
#include "run-command.h"
|
|
|
|
|
2009-10-31 02:44:41 +01:00
|
|
|
#ifndef DEFAULT_EDITOR
|
|
|
|
#define DEFAULT_EDITOR "vi"
|
|
|
|
#endif
|
|
|
|
|
2009-11-12 01:01:27 +01:00
|
|
|
const char *git_editor(void)
|
2008-07-25 18:28:41 +02:00
|
|
|
{
|
Do not use VISUAL editor on dumb terminals
Refuse to use $VISUAL and fall back to $EDITOR if TERM is unset
or set to "dumb". Traditionally, VISUAL is set to a screen
editor and EDITOR to a line-based editor, which should be more
useful in that situation.
vim, for example, is happy to assume a terminal supports ANSI
sequences even if TERM is dumb (e.g., when running from a text
editor like Acme). git already refuses to fall back to vi on a
dumb terminal if GIT_EDITOR, core.editor, VISUAL, and EDITOR are
unset, but without this patch, that check is suppressed by
VISUAL=vi.
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2009-11-12 00:56:07 +01:00
|
|
|
const char *editor = getenv("GIT_EDITOR");
|
|
|
|
const char *terminal = getenv("TERM");
|
|
|
|
int terminal_is_dumb = !terminal || !strcmp(terminal, "dumb");
|
2008-07-25 18:28:41 +02:00
|
|
|
|
|
|
|
if (!editor && editor_program)
|
|
|
|
editor = editor_program;
|
Do not use VISUAL editor on dumb terminals
Refuse to use $VISUAL and fall back to $EDITOR if TERM is unset
or set to "dumb". Traditionally, VISUAL is set to a screen
editor and EDITOR to a line-based editor, which should be more
useful in that situation.
vim, for example, is happy to assume a terminal supports ANSI
sequences even if TERM is dumb (e.g., when running from a text
editor like Acme). git already refuses to fall back to vi on a
dumb terminal if GIT_EDITOR, core.editor, VISUAL, and EDITOR are
unset, but without this patch, that check is suppressed by
VISUAL=vi.
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2009-11-12 00:56:07 +01:00
|
|
|
if (!editor && !terminal_is_dumb)
|
2008-07-25 18:28:41 +02:00
|
|
|
editor = getenv("VISUAL");
|
|
|
|
if (!editor)
|
|
|
|
editor = getenv("EDITOR");
|
|
|
|
|
Do not use VISUAL editor on dumb terminals
Refuse to use $VISUAL and fall back to $EDITOR if TERM is unset
or set to "dumb". Traditionally, VISUAL is set to a screen
editor and EDITOR to a line-based editor, which should be more
useful in that situation.
vim, for example, is happy to assume a terminal supports ANSI
sequences even if TERM is dumb (e.g., when running from a text
editor like Acme). git already refuses to fall back to vi on a
dumb terminal if GIT_EDITOR, core.editor, VISUAL, and EDITOR are
unset, but without this patch, that check is suppressed by
VISUAL=vi.
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2009-11-12 00:56:07 +01:00
|
|
|
if (!editor && terminal_is_dumb)
|
2009-11-12 01:01:27 +01:00
|
|
|
return NULL;
|
2008-07-25 18:28:41 +02:00
|
|
|
|
|
|
|
if (!editor)
|
2009-10-31 02:44:41 +01:00
|
|
|
editor = DEFAULT_EDITOR;
|
2008-07-25 18:28:41 +02:00
|
|
|
|
2009-11-12 01:01:27 +01:00
|
|
|
return editor;
|
|
|
|
}
|
|
|
|
|
|
|
|
int launch_editor(const char *path, struct strbuf *buffer, const char *const *env)
|
|
|
|
{
|
|
|
|
const char *editor = git_editor();
|
|
|
|
|
|
|
|
if (!editor)
|
|
|
|
return error("Terminal is dumb, but EDITOR unset");
|
|
|
|
|
2008-07-25 18:28:41 +02:00
|
|
|
if (strcmp(editor, ":")) {
|
2009-12-30 11:56:16 +01:00
|
|
|
const char *args[] = { editor, path, NULL };
|
2008-07-25 18:28:41 +02:00
|
|
|
|
2009-12-30 11:56:16 +01:00
|
|
|
if (run_command_v_opt_cd_env(args, RUN_USING_SHELL, NULL, env))
|
2008-07-25 18:28:42 +02:00
|
|
|
return error("There was a problem with the editor '%s'.",
|
|
|
|
editor);
|
2008-07-25 18:28:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!buffer)
|
2008-07-25 18:28:42 +02:00
|
|
|
return 0;
|
2008-07-25 18:28:41 +02:00
|
|
|
if (strbuf_read_file(buffer, path, 0) < 0)
|
2008-07-25 18:28:42 +02:00
|
|
|
return error("could not read file '%s': %s",
|
|
|
|
path, strerror(errno));
|
|
|
|
return 0;
|
2008-07-25 18:28:41 +02:00
|
|
|
}
|