Searched refs:editor (Results 1 - 25 of 149) sorted by relevance

123456

/macosx-10.10/CPANInternal-159.1/Perl-Tidy-20121207/docs/
H A Dtestfile.pl2 chomp($editor = <STDIN>);
3 if ($editor =~ /emacs/i) {
5 } elsif ($editor =~ /vi/i) {
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DScriptContentView.css26 .content-view.script > .text-editor {
H A DTextContentView.css26 .content-view.text > .text-editor {
H A DTextResourceContentView.css26 .content-view.resource.text > .text-editor {
H A DTextEditor.css26 .text-editor {
32 .text-editor > .CodeMirror {
41 .text-editor > .CodeMirror .has-breakpoint:not(.breakpoint-disabled) .CodeMirror-linenumber {
45 .text-editor > .CodeMirror .has-breakpoint.multiple-breakpoints .CodeMirror-linenumber {
49 .text-editor > .CodeMirror .has-breakpoint .CodeMirror-linenumber::before {
65 .text-editor > .CodeMirror .breakpoint-resolved .CodeMirror-linenumber::before {
69 .text-editor > .CodeMirror .breakpoint-auto-continue:not(.breakpoint-disabled) .CodeMirror-linenumber::before {
73 .text-editor > .CodeMirror .breakpoint-disabled .CodeMirror-linenumber::before {
77 .text-editor > .CodeMirror .has-breakpoint.multiple-breakpoints .CodeMirror-linenumber::before {
85 .text-editor >
[all...]
H A DCSSStyleDeclarationTextEditor.css26 .css-style-text-editor {
31 .css-style-text-editor > .CodeMirror {
35 .css-style-text-editor > .CodeMirror-scroll {
39 .css-style-text-editor > .CodeMirror .CodeMirror-placeholder {
45 .css-style-text-editor > .CodeMirror pre {
51 .css-style-text-editor > .CodeMirror pre * {
55 .css-style-text-editor.read-only > .CodeMirror pre {
59 .css-style-text-editor.read-only > .CodeMirror .CodeMirror-cursor {
63 .css-style-text-editor > .CodeMirror .CodeMirror-lines pre > span span:not(.css-style-declaration-property):not(.CodeMirror-widget):not(.cm-comment):not(.cm-tab),
64 .css-style-text-editor >
[all...]
H A DBreakpointActionView.css70 .breakpoint-action-eval-editor {
77 .breakpoint-action-eval-editor > .CodeMirror {
82 .breakpoint-action-eval-editor > .CodeMirror-scroll {
/macosx-10.10/system_cmds-643.1.1/vifs.tproj/
H A Dvifs.c52 char *p, *editor; local
77 /* prepare the file for the editor */
90 /* obtain and invoke the editor */
91 editor = getenv("EDITOR");
92 if (editor == NULL)
93 editor = _PATH_VI;
94 p = strrchr(editor, '/');
98 p = editor;
102 execlp(editor, p, _PATH_FSTAB, NULL);
/macosx-10.10/sudo-73/src/
H A Dsudo_edit.c72 char *cp, *suff, **nargv, *editor, **files; local
86 /* Determine user's editor. */
87 editor = find_editor(&editor_argc, &editor_argv);
88 if (editor == NULL)
194 * We concatenate the editor with its args and the file list
208 * Run the editor with the invoking user's creds,
209 * keeping track of the time spent in the editor.
212 rval = run_command(editor, nargv, envp, user_uid, TRUE);
241 * time in the editor we can't tell if the file was changed.
295 resolve_editor(editor, argc_ou
350 char *cp, *editor, *editor_path = NULL, **ev, *ev0[4]; local
[all...]
/macosx-10.10/tcl-105/tk/tk/library/demos/
H A Dttknote.tcl54 ttk::frame $w.note.editor
55 $w.note add $w.note.editor -text "Text Editor" -underline 0
56 text $w.note.editor.t -width 40 -height 10 -wrap char \
57 -yscroll "$w.note.editor.s set"
59 ttk::scrollbar $w.note.editor.s -orient vertical -command "$w.note.editor.t yview"
61 scrollbar $w.note.editor.s -orient vertical -command "$w.note.editor.t yview"
63 pack $w.note.editor.s -side right -fill y -padx {0 2} -pady 2
64 pack $w.note.editor
[all...]
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebPage/efl/
H A DWebPageEfl.cpp180 Editor& editor = frame.editor(); local
181 if (!editor.canEdit())
184 if (editor.hasComposition()) {
189 if (PassRefPtr<Range> range = editor.compositionRange()) {
205 targetFrame->editor().confirmComposition(compositionString);
214 targetFrame->editor().setComposition(compositionString, underlines, cursorPosition, 0);
220 frame.editor().cancelComposition();
/macosx-10.10/system_cmds-643.1.1/vipw.tproj/
H A Dpw_util.c188 char *p, *editor; local
190 if (!(editor = getenv("EDITOR")))
191 editor = _PATH_VI;
192 if (p = strrchr(editor, '/'))
195 p = editor;
202 execlp(editor, p, tempname, NULL);
208 pw_error(editor, 1, 1);
214 pw_error(editor, 1, 1);
/macosx-10.10/tcl-105/tcl_ext/tclx/tclx/library/
H A Dedprocs.tcl51 set editor $env(EDITOR)
53 set editor vi
57 system "$editor $tmpFilename"
/macosx-10.10/WebCore-7600.1.25/editing/
H A DDeleteButton.cpp54 document().frame()->editor().deleteButtonController().deleteTarget();
H A DEditorCommand.cpp106 frame.editor().applyStyleToSelection(style, action);
110 frame.editor().applyStyle(style);
165 if (frame.editor().behavior().shouldToggleStyleBasedOnStartOfSelection())
166 styleIsPresent = frame.editor().selectionStartHasStyle(propertyID, onValue);
168 styleIsPresent = frame.editor().selectionHasStyle(propertyID, onValue) == TrueTriState;
181 frame.editor().applyParagraphStyleToSelection(style.get(), action);
185 frame.editor().applyParagraphStyle(style.get());
220 if (!frame.editor().client()->shouldChangeSelectedRange(oldRange.get(), newRange.get(), affinity, false))
228 if (frame.editor().behavior().shouldToggleStyleBasedOnStartOfSelection())
229 return frame.editor()
[all...]
H A DDeleteButtonController.h86 frame->editor().deleteButtonController().disable();
92 m_frame->editor().deleteButtonController().enable();
H A DTypingCommand.cpp158 frame->editor().updateMarkersForWordsAffectedByEditing(isSpaceOrNewline(text[0]));
229 RefPtr<CompositeEditCommand> lastEditCommand = frame->editor().lastEditCommand();
298 if (!frame.editor().isContinuousSpellCheckingEnabled()
299 && !frame.editor().isAutomaticQuoteSubstitutionEnabled()
300 && !frame.editor().isAutomaticLinkDetectionEnabled()
301 && !frame.editor().isAutomaticDashSubstitutionEnabled()
302 && !frame.editor().isAutomaticTextReplacementEnabled())
305 if (!frame.editor().isContinuousSpellCheckingEnabled())
323 frame.editor().markMisspellingsAfterTypingToWord(p1, endingSelection(), !strippedPreviousWord.isEmpty());
325 frame.editor()
[all...]
/macosx-10.10/WebCore-7600.1.25/page/
H A DContextMenuController.cpp216 if (!frame->editor().shouldInsertText(text, frame->selection().toNormalizedRange().get(), EditorInsertActionTyped))
252 frame->editor().copyURL(m_context.hitTestResult().absoluteLinkURL(), m_context.hitTestResult().textContent());
264 frame->editor().copyImage(m_context.hitTestResult());
268 frame->editor().copyURL(m_context.hitTestResult().absoluteImageURL(), m_context.hitTestResult().textContent());
279 frame->editor().copyURL(m_context.hitTestResult().absoluteMediaURL(), m_context.hitTestResult().textContent());
308 frame->editor().copy();
325 frame->editor().command("Cut").execute();
328 frame->editor().command("Paste").execute();
332 frame->editor().performDelete();
367 frame->editor()
[all...]
/macosx-10.10/remote_cmds-47/rpc_yppasswdd.tproj/
H A Dpasswd.c189 char *p, *editor; local
192 (void) &editor;
197 if ((editor = getenv("EDITOR")) == NULL)
198 editor = strdup(_PATH_VI);
200 editor = strdup(editor);
201 if ((p = strrchr(editor, '/')))
204 p = editor;
206 /* Scan editor string, count spaces, allocate arg vector. */
242 execvp(editor, xarg
[all...]
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebCoreSupport/efl/
H A DWebEditorClientEfl.cpp53 if (!frame.editor().canEdit())
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebCoreSupport/mac/
H A DWebContextMenuClientMac.mm66 String searchString = frame->editor().selectedText();
88 String selectedString = selectionFrame->displayStringModifiedByEncoding(selectionFrame->editor().selectedText());
/macosx-10.10/bash-94.1.2/bash-3.2/support/
H A Dbashbug.sh85 Bashbug will start up your editor (as defined by the shell's
90 If you invoke bashbug by accident, just quit your editor without
124 if [ -x /usr/bin/editor ]; then
125 DEFEDITOR=editor
143 echo "$0: No default editor found: attempting to use vi" >&2
206 trap '' 2 # ignore interrupts while in editor
214 echo "$0: editor \`$EDITOR' exited with nonzero status."
217 echo "$0: type \`n' to re-enter the editor."
237 echo "$0: type \`n' to re-enter the editor."
245 echo "$0: The editor wil
[all...]
/macosx-10.10/bash-94.1.2/
H A Dbashbug85 Bashbug will start up your editor (as defined by the shell's
90 If you invoke bashbug by accident, just quit your editor without
124 if [ -x /usr/bin/editor ]; then
125 DEFEDITOR=editor
143 echo "$0: No default editor found: attempting to use vi" >&2
206 trap '' 2 # ignore interrupts while in editor
214 echo "$0: editor \`$EDITOR' exited with nonzero status."
217 echo "$0: type \`n' to re-enter the editor."
237 echo "$0: type \`n' to re-enter the editor."
245 echo "$0: The editor wil
[all...]
/macosx-10.10/less-25/less/
H A Dmain.c56 public char * editor; variable
184 editor = lgetenv("VISUAL");
185 if (editor == NULL || *editor == '\0')
187 editor = lgetenv("EDITOR");
188 if (editor == NULL || *editor == '\0')
189 editor = EDIT_PGM;
/macosx-10.10/WebKit2-7600.1.25/UIProcess/efl/
H A DInputMethodContextEfl.cpp111 const EditorState& editor = m_view->page()->editorState(); local
113 if (editor.isContentEditable) {
124 if (editor.hasComposition)

Completed in 300 milliseconds

123456