Symbol: editor
bin/ksh/history.c
124
if (editor || lflag || nflag || rflag) {
bin/ksh/history.c
155
if (editor && (lflag || nflag)) {
bin/ksh/history.c
237
ret = command(editor ? editor : "${FCEDIT:-/bin/ed} $_", 0);
bin/ksh/history.c
57
char *p, *editor = NULL;
bin/ksh/history.c
82
editor = str_nsave(p, len, ATEMP);
bin/ksh/history.c
83
strlcat(editor, " $_", len);
lib/libedit/map.c
1087
map_set_editor(EditLine *el, wchar_t *editor)
lib/libedit/map.c
1090
if (wcscmp(editor, L"emacs") == 0) {
lib/libedit/map.c
1094
if (wcscmp(editor, L"vi") == 0) {
lib/libedit/map.c
1106
map_get_editor(EditLine *el, const wchar_t **editor)
lib/libedit/map.c
1109
if (editor == NULL)
lib/libedit/map.c
1113
*editor = L"emacs";
lib/libedit/map.c
1116
*editor = L"vi";
lib/libutil/passwd.c
215
char *editor;
lib/libutil/passwd.c
224
if ((editor = getenv("EDITOR")) == NULL)
lib/libutil/passwd.c
225
editor = _PATH_VI;
lib/libutil/passwd.c
227
if (asprintf(&p, "%s %s", editor, filename) == -1)
lib/libutil/passwd.c
248
pw_error(editor, 1, 1);
lib/libutil/passwd.c
254
pw_error(editor, 1, 1);
sbin/disklabel/disklabel.c
255
error = editor(f);
sbin/disklabel/extern.h
33
int editor(int);
usr.bin/less/command.c
44
extern char *editor;
usr.bin/less/main.c
175
editor = lgetenv("VISUAL");
usr.bin/less/main.c
176
if (editor == NULL || *editor == '\0') {
usr.bin/less/main.c
177
editor = lgetenv("EDITOR");
usr.bin/less/main.c
178
if (editor == NULL || *editor == '\0')
usr.bin/less/main.c
179
editor = EDIT_PGM;
usr.bin/less/main.c
43
char *editor;
usr.bin/less/prompt.c
267
ap_str(editor);
usr.bin/less/prompt.c
34
extern char *editor;
usr.bin/mail/cmdtab.c
95
{ "edit", { editor }, I|MSGLIST, 0, MMNORM },
usr.bin/mail/extern.h
111
int editor(void *);
usr.bin/ssh/sftp.c
2207
const char *editor;
usr.bin/ssh/sftp.c
2245
if (el_get(el, EL_EDITOR, &editor) == 0 && editor[0] == 'v')
usr.bin/tmux/popup.c
935
const char *editor;
usr.bin/tmux/popup.c
938
editor = options_get_string(global_options, "editor");
usr.bin/tmux/popup.c
939
if (*editor == '\0')
usr.bin/tmux/popup.c
964
xasprintf(&cmd, "%s %s", editor, path);
usr.bin/vi/cl/cl_main.c
97
rval = editor(gp, argc, argv);
usr.bin/vi/include/com_extern.h
46
int editor(GS *, int, char *[]);