Home
last modified time | relevance | path

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

12345678910>>...14

/netbsd-src/usr.bin/sdiff/
H A Dedit.c32 const char *editor; in edit() local
34 editor = getenv("VISUAL"); in edit()
35 if (editor == NULL) in edit()
36 editor = getenv("EDITOR"); in edit()
37 if (editor == NULL) in edit()
38 editor = "vi"; in edit()
44 execlp(editor, editor, filename, (void *)NULL); in edit()
45 warn("could not execute editor: %s", editor); in edit()
61 warn("%s terminated abnormally", editor); in edit()
/netbsd-src/external/bsd/openldap/dist/doc/guide/
H A Dpreamble.sdf122 RFC Editor|RFC Editor|https://www.rfc-editor.org/
285 …and an Object Class to Hold Uniform Resource Identifiers|https://www.rfc-editor.org/rfc/rfc2079.txt
286 RFC2296|PS|Use of Language Codes in LDAP|https://www.rfc-editor.org/rfc/rfc2296.txt
287 RFC2307|X|An Approach for Using LDAP as a Network Information Service|https://www.rfc-editor.org/rf…
288 …Protocol (v3): Extensions for Dynamic Directory Services|https://www.rfc-editor.org/rfc/rfc2589.txt
289 RFC2798|I|Definition of the inetOrgPerson LDAP Object Class|https://www.rfc-editor.org/rfc/rfc2798.…
290 RFC2831|PS|Using Digest Authentication as a SASL Mechanism|https://www.rfc-editor.org/rfc/rfc2831.t…
291 RFC2849|PS|The LDAP Data Interchange Format|https://www.rfc-editor.org/rfc/rfc2849.txt
292 RFC3088|X|OpenLDAP Root Service|https://www.rfc-editor.org/rfc/rfc3088.txt
293 RFC3296|PS|Named Subordinate References in LDAP|https://www.rfc-editor.org/rfc/rfc3296.txt
[all …]
/netbsd-src/external/bsd/less/dist/
H A Dmain.c45 public char * editor; variable
174 editor = lgetenv("VISUAL"); in main()
175 if (editor == NULL || *editor == '\0') in main()
177 editor = lgetenv("EDITOR"); in main()
178 if (isnullenv(editor)) in main()
179 editor = EDIT_PGM; in main()
H A Dprompt.c37 extern char *editor;
285 ap_str(editor); in protochar()
/netbsd-src/distrib/utils/more/
H A Dcommand.c580 static char *editor; in editfile() local
584 if (editor == NULL) { in editfile()
585 editor = getenv("EDITOR"); in editfile()
587 if (editor == NULL || *editor == '\0') { in editfile()
588 editor = _PATH_VI; in editfile()
595 (void)snprintf(buf, sizeof(buf), "%s +%d %s", editor, c, in editfile()
598 (void)snprintf(buf, sizeof(buf), "%s %s", editor, current_file); in editfile()
/netbsd-src/external/bsd/cron/dist/
H A Dcrontab.c362 const char *editor; in edit_cmd() local
447 if (((editor = getenv("VISUAL")) == NULL || *editor == '\0') && in edit_cmd()
448 ((editor = getenv("EDITOR")) == NULL || *editor == '\0')) { in edit_cmd()
449 editor = EDITOR; in edit_cmd()
478 if (!glue_strings(q, sizeof q, editor, Filename, ' ')) { in edit_cmd()
482 err(ERROR_EXIT, "cannot start `%s'", editor); in edit_cmd()
495 "from `%s'", (long)pid, editor); in edit_cmd()
498 (long)xpid, (long)pid, editor); in edit_cmd()
504 editor, WEXITSTATUS(waiter)); in edit_cmd()
508 editor, WTERMSIG(waiter), in edit_cmd()
/netbsd-src/lib/libutil/
H A Dpasswd.c239 const char * volatile editor; in pw_edit() local
249 if ((editor = getenv("EDITOR")) == NULL) in pw_edit()
250 editor = _PATH_VI; in pw_edit()
252 p = malloc(strlen(editor) + 1 + strlen(filename) + 1); in pw_edit()
256 sprintf(p, "%s %s", editor, filename); in pw_edit()
277 pw_error(editor, 1, 1); in pw_edit()
283 pw_error(editor, 1, 1); in pw_edit()
/netbsd-src/external/apache2/llvm/dist/llvm/utils/kate/
H A DREADME3 These are syntax highlighting files for the Kate editor. Included are:
7 Syntax Highlighting Mode for the KDE Kate editor. To install just copy
/netbsd-src/external/gpl2/xcvs/dist/
H A Dconfigure.in695 dnl begin --with-editor
697 dnl Set the default editor to use for log messages
702 [The text editor CVS will use by default for log messages.])
704 # Let the confiscator request a specific editor
706 [editor], optwith
708 [--with-editor],
709 [The default text editor CVS should use for log messages
713 # If --with-editor was supplied with an argument, let it override $EDITOR from
716 # ignore the --without-editor case since it will be caught below.
721 # Set the default when --with-editor wasn't supplied or when it was supplied
[all …]
/netbsd-src/external/bsd/nvi/dist/
H A DREADME81 to support a full-screen editor using curses.
96 editor. Peter Kessler helped bring sanity to version 2's
98 and created the framework that users see in the present editor.
99 Mark Horton added macros and other features and made the editor
/netbsd-src/external/bsd/nvi/dist/motif/
H A Dm_main.c172 Widget main_w, editor; local
245 editor = vi_create_editor( "editor", main_w, onexit );
256 XtSetKeyboardFocus( top_level, XtNameToWidget( editor, "*screen" ) );
/netbsd-src/external/apache2/llvm/dist/llvm/utils/vscode/llvm/
H A DREADME.md30 Please refer to https://code.visualstudio.com/docs/editor/extension-gallery#_where-are-extensions-i…
38 https://code.visualstudio.com/docs/editor/extension-gallery#_install-from-a-vsix.
/netbsd-src/lib/libedit/
H A Dmap.c950 * Free the space taken by the editor maps
1092 * Set the editor
1095 map_set_editor(EditLine *el, wchar_t *editor) in map_set_editor() argument
1098 if (wcscmp(editor, L"emacs") == 0) { in map_set_editor()
1102 if (wcscmp(editor, L"vi") == 0) { in map_set_editor()
1111 * Retrieve the editor
1114 map_get_editor(EditLine *el, const wchar_t **editor) in map_get_editor() argument
1117 if (editor == NULL) in map_get_editor()
1121 *editor = L"emacs"; in map_get_editor()
1124 *editor in map_get_editor()
[all...]
H A Dlibedit.pc7 Description: command line editor library providing generic line editing, history, and tokenization …
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()
/netbsd-src/external/gpl2/gettext/dist/gettext-runtime/doc/
H A Dmatrix.texi107 keytouch-editor | |
285 keytouch-editor | [] |
463 keytouch-editor | |
641 keytouch-editor | [] |
819 keytouch-editor | | 2
/netbsd-src/crypto/external/bsd/heimdal/dist/cf/
H A Dvalgrind-suppressions69 Unknown suppression in runtime link editor
77 Unknown suppression in runtime link editor
/netbsd-src/external/gpl2/send-pr/dist/send-pr/
H A DREADME23 `send-pr' invokes an editor on a problem report template (after trying
25 the editor, `send-pr' sends the completed form to the support site.
/netbsd-src/crypto/external/bsd/openssl/dist/providers/common/der/
H A DEC.asn110 -- (https://www.rfc-editor.org/rfc/rfc3279.html#section-3)
67 -- (https://www.rfc-editor.org/rfc/rfc5758.html#section-3.2)
/netbsd-src/external/gpl2/xcvs/dist/src/
H A Dedit.h35 extern void editor_set (const char *filename, const char *editor,
/netbsd-src/external/bsd/nvi/dist/docs/vi.ref/
H A Dset.opt.texi13 change the editor's behavior.
259 user running the editor, and not accessible by any other user.
581 This option causes the editor to attempt to get an exclusive lock on
638 editor was invoked, they will stay turned off.
882 The editor simulates (using great amounts of output), an intelligent
918 about which the editor is silent, i.e. by default, 6 lines must be
1014 Select the shell used by the editor.
1083 to display a string identifying the current editor mode on the colon
1115 the editor user.
1126 This option sets tab widths for the editor display.
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/utils/textmate/
H A DREADME2 files for the TextMate editor for OS X. The highlighting follows that done
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/tests/
H A Dmm-viet.comp.po311 #: ../src/glade-editor.c:815 ../src/dialog-win.cc:86
312 #: ../src/form-editor/list-prop.cc:83 ../src/form-editor/table-prop.cc:153
378 #: ../gnomecard/card-editor.glade.h:37
1548 #: ../mail/em-account-editor.c:766 ../src/personal_info.c:267
1926 #: ../src/glade-editor-property.c:2076 ../src/glade-widget.c:146
2732 #: ../src/form-editor/button-prop.cc:145
3045 #: app/sample-editor.c:1486 app/sample-editor.c:1661 app/sample-editor.c:1985
3307 #: ../mail/em-account-editor.c:304 ../mail/em-account-editor.c:767
3873 #: ../src/glade-editor.c:1050 ../src/form-win.cc:381 ../src/form-win.cc:443
3882 #. Custom editor button
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/utils/jedit/
H A DREADME3 These are syntax highlighting files for the jEdit editor. Included are:
/netbsd-src/distrib/hp300/miniroot/
H A Dinstall.md145 label can be placed on disk for editing. When the disklabel editor appears,
151 Note that the disklabel editor will be run twice; once to set the size of

12345678910>>...14