Lines Matching refs:Editor
78 static int EditComment = FALSE; // Invoke an editor for editing the comment
140 // Invoke an editor for editing a string.
160 char * Editor;
161 Editor = getenv("EDITOR");
162 if (Editor == NULL){
164 Editor = "notepad";
166 Editor = "vi";
169 if (strlen(Editor) > PATH_MAX) ErrFatal("env too long");
171 sprintf(QuotedPath, "%s \"%s\"",Editor, TempFileName);
176 perror("Editor failed to launch");
1228 " -ce Edit comment field. Uses environment variable 'editor' to\n"
1229 " determine which editor to use. If editor not set, uses VI\n"