Home
last modified time | relevance | path

Searched refs:editor (Results 1 – 25 of 107) sorted by relevance

12345

/dflybsd-src/contrib/dialog/
H A Dinputbox.c87 WINDOW *editor; in dialog_inputbox() local
162 editor = dlg_sub_window(dialog, 1, box_width, yorg + box_y, xorg + box_x); in dialog_inputbox()
163 dlg_register_window(editor, "inputbox2", binding2); in dialog_inputbox()
166 dlg_show_string(editor, input, chr_offset, inputbox_attr, in dialog_inputbox()
168 wsyncup(editor); in dialog_inputbox()
169 wcursyncup(editor); in dialog_inputbox()
185 dlg_show_string(editor, input, chr_offset, inputbox_attr, in dialog_inputbox()
187 wmove(editor, 0, chr_offset); in dialog_inputbox()
188 wsyncup(editor); in dialog_inputbox()
189 wcursyncup(editor); in dialog_inputbox()
[all …]
/dflybsd-src/bin/sh/
H A Dhistedit.c187 const char *editor = NULL; in histcmd() local
211 editor = shoptarg; in histcmd()
231 if (lflg == 0 || editor || sflg) { in histcmd()
255 if (editor == NULL && in histcmd()
256 (editor = bltinlookup("FCEDIT", 1)) == NULL && in histcmd()
257 (editor = bltinlookup("EDITOR", 1)) == NULL) in histcmd()
258 editor = DEFEDITOR; in histcmd()
259 if (editor[0] == '-' && editor[1] == '\0') { in histcmd()
261 editor = NULL; in histcmd()
310 if (editor) { in histcmd()
[all …]
/dflybsd-src/usr.sbin/cron/crontab/
H A Dcrontab.c298 char n[MAX_FNAME], q[MAX_TEMPSTR], *editor; local
379 if ((!(editor = getenv("VISUAL")))
380 && (!(editor = getenv("EDITOR")))
382 editor = EDITOR;
403 if (strlen(editor) + strlen(Filename) + 2 >= MAX_TEMPSTR)
405 execlp(editor, editor, Filename, NULL);
406 err(ERROR_EXIT, "%s", editor);
425 warnx("wrong PID (%d != %d) from \"%s\"", xpid, pid, editor);
429 warnx("\"%s\" exited with status %d", editor, WEXITSTATUS(waiter));
434 editor, WTERMSIG(waiter), WCOREDUMP(waiter) ?"" :"no ");
/dflybsd-src/sbin/hammer/
H A Dcmd_config.c108 char *runcmd, *editor, *tmp; in hammer_cmd_viconfig() local
170 editor = strdup(tmp); in hammer_cmd_viconfig()
172 editor = strdup("vi"); in hammer_cmd_viconfig()
175 asprintf(&runcmd, "%s %s", editor, path); in hammer_cmd_viconfig()
205 free(editor); in hammer_cmd_viconfig()
/dflybsd-src/contrib/less/
H A Dmain.c49 public constant char * editor; variable
332 editor = lgetenv("VISUAL"); in main()
333 if (editor == NULL || *editor == '\0') in main()
335 editor = lgetenv("EDITOR"); in main()
336 if (isnullenv(editor)) in main()
337 editor = EDIT_PGM; in main()
H A Dprompt.c37 extern constant char *editor;
309 ap_str(editor); in protochar()
/dflybsd-src/contrib/tcsh-6/nls/spanish/
H A Dset2019 17 -v usa las definiciones del editor vi\n
20 18 -e usa las definiciones del editor vi\n
21 19 -d usa las definiciones del editor por defecto (%s)\n
22 20 -l lista los comandos del editor y sus descripciones\n
H A Dset610 8 *** ERROR fatal del editor ***\r\n\n
/dflybsd-src/contrib/nvi2/
H A DREADME41 to support a full-screen editor using curses.
56 editor. Peter Kessler helped bring sanity to version 2's
58 and created the framework that users see in the present editor.
59 Mark Horton added macros and other features and made the editor
/dflybsd-src/contrib/tcsh-6/nls/greek/
H A Dset2021 19 -d συσχέτιση όλων των πλήκτρων στην default του editor (%s)\n
22 20 -l εμφάνιση των εντολών του editor με περιγραφές\n
H A Dset610 8 *** μοιραίο ΣΦΑΛΜΑ editor ***\r\n\n
/dflybsd-src/sbin/camcontrol/
H A Dmodeedit.c715 const char *editor; in modepage_edit() local
727 if ((editor = getenv("EDITOR")) == NULL) in modepage_edit()
728 editor = DEFAULT_EDITOR; in modepage_edit()
755 commandline = malloc(strlen(editor) + strlen(edit_path) + 2); in modepage_edit()
758 sprintf(commandline, "%s %s", editor, edit_path); in modepage_edit()
762 err(EX_UNAVAILABLE, "could not invoke %s", editor); in modepage_edit()
/dflybsd-src/share/skel/
H A Ddot.shrc17 # Enable the builtin emacs(1) command line editor in sh(1),
22 # line editor in sh(1), e.g. ESC to go into visual mode.
/dflybsd-src/lib/libutil/
H A Dpw_util.c285 const char *editor; in pw_edit() local
288 if ((editor = getenv("EDITOR")) == NULL) in pw_edit()
289 editor = _PATH_VI; in pw_edit()
312 execlp(editor, basename(strdup(editor)), tempname, NULL); in pw_edit()
/dflybsd-src/contrib/ee/
H A DREADME.ee29 The editor 'ee' (easy editor) is intended to be a simple, easy to use
30 terminal-based screen oriented editor that requires no instruction to
59 For a text editor to be easy to use requires a certain set of abilities. In
72 will have a defect that reduces the usefulness of the editor relying upon
H A Dee.msg1 $ This file contains the messages for ee ("easy editor"). See the file
26 16 "print editor contents"
38 28 "leave editor"
174 164 "save editor configuration"
/dflybsd-src/contrib/tcsh-6/nls/ukrainian/
H A Dset2021 19 -d bind all keys to default editor's bindings (%s)\n
22 20 -l list editor commands with descriptions\n
/dflybsd-src/contrib/libedit/src/
H A Dmap.c1092 map_set_editor(EditLine *el, wchar_t *editor) in map_set_editor() argument
1095 if (wcscmp(editor, L"emacs") == 0) { in map_set_editor()
1099 if (wcscmp(editor, L"vi") == 0) { in map_set_editor()
1111 map_get_editor(EditLine *el, const wchar_t **editor) in map_get_editor() argument
1114 if (editor == NULL) in map_get_editor()
1118 *editor = L"emacs"; in map_get_editor()
1121 *editor = L"vi"; in map_get_editor()
H A Dvi.c1011 const char *editor; in vi_histedit() local
1018 if ((editor = getenv("EDITOR")) == NULL) in vi_histedit()
1019 editor = "vi"; in vi_histedit()
1044 execlp(editor, editor, tempfile, (char *)NULL); in vi_histedit()
/dflybsd-src/contrib/tcsh-6/nls/finnish/
H A Dset2021 19 -d bind all keys to default editor's bindings (%s)\n
22 20 -l list editor commands with descriptions\n
/dflybsd-src/usr.bin/ee/nls/pt_BR.ISO8859-1/
H A Dee.msg1 $ This file contains the messages for ee ("easy editor"). See the file
39 28 "deixar editor"
122 111 "enviando conte�do no buffer do editor para 'corre��o'"
175 164 "salvar configura��es do editor"
/dflybsd-src/contrib/cvs-1.12/src/
H A Dedit.h35 extern void editor_set (const char *filename, const char *editor,
/dflybsd-src/contrib/tcsh-6/nls/italian/
H A Dset610 8 *** ERRORE fatale nell'editor ***\r\n\n
/dflybsd-src/initrd/etc/
H A Dmotd7 * Text editor:
/dflybsd-src/bin/ed/
H A DREADME3 ed is an 8-bit-clean, POSIX-compliant line editor. It should work with

12345