summaryrefslogtreecommitdiff
path: root/editor.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-12-18 00:27:59 -0800
committerJunio C Hamano <gitster@pobox.com>2011-12-18 00:28:16 -0800
commit03f94ae9f909952ed5a78917ab319a312889354b (patch)
tree0fd041e8b390bd0d2a960ae629d8e965d363de92 /editor.c
parent2c47789d817aaf745a5ce5d5f79619c634cc8566 (diff)
parent81b50f3ce40bfdd66e5d967bf82be001039a9a98 (diff)
downloadgit-jk/maint-strbuf-missing-init.tar.gz
Update jk/maint-strbuf-missing-init to builtin/ renamejk/maint-strbuf-missing-init
Diffstat (limited to 'editor.c')
-rw-r--r--editor.c52
1 files changed, 52 insertions, 0 deletions
diff --git a/editor.c b/editor.c
new file mode 100644
index 0000000000..d8340031d2
--- /dev/null
+++ b/editor.c
@@ -0,0 +1,52 @@
+#include "cache.h"
+#include "strbuf.h"
+#include "run-command.h"
+
+#ifndef DEFAULT_EDITOR
+#define DEFAULT_EDITOR "vi"
+#endif
+
+const char *git_editor(void)
+{
+ const char *editor = getenv("GIT_EDITOR");
+ const char *terminal = getenv("TERM");
+ int terminal_is_dumb = !terminal || !strcmp(terminal, "dumb");
+
+ if (!editor && editor_program)
+ editor = editor_program;
+ if (!editor && !terminal_is_dumb)
+ editor = getenv("VISUAL");
+ if (!editor)
+ editor = getenv("EDITOR");
+
+ if (!editor && terminal_is_dumb)
+ return NULL;
+
+ if (!editor)
+ editor = DEFAULT_EDITOR;
+
+ 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");
+
+ if (strcmp(editor, ":")) {
+ const char *args[] = { editor, path, NULL };
+
+ if (run_command_v_opt_cd_env(args, RUN_USING_SHELL, NULL, env))
+ return error("There was a problem with the editor '%s'.",
+ editor);
+ }
+
+ if (!buffer)
+ return 0;
+ if (strbuf_read_file(buffer, path, 0) < 0)
+ return error("could not read file '%s': %s",
+ path, strerror(errno));
+ return 0;
+}