• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/emacs-93/emacs/lisp/

Lines Matching defs:prompt

53 (defcustom ielm-prompt-read-only t
54 "If non-nil, the IELM prompt is read only.
55 The read only region includes the newline before the prompt.
57 This works by setting the buffer-local value of `comint-prompt-read-only'.
73 If you set `comint-prompt-read-only' to t, you might wish to use
83 (defcustom ielm-prompt "ELISP> "
89 default value affect _new_ prompts. Unless the new prompt
92 does not update the prompt of an *ielm* buffer with a running process.
99 (defvar ielm-prompt-internal "ELISP> "
100 "Stored value of `ielm-prompt' in the current IELM buffer.
103 customizes `ielm-prompt'.")
115 will be inserted after the prompt, moving the input to the next line.
233 "Indent the current line as Lisp code if it is not a prompt line."
254 This is the buffer in which all sexps entered at the IELM prompt are
256 `set-buffer' at the IELM prompt."
264 "Newline and indent, or evaluate the sexp before the prompt.
280 (looking-at comint-prompt-regexp)))
295 "Evaluate the Emacs Lisp expression after the prompt."
315 ;; along with a new prompt. A better way of doing this might have
420 (setq ielm-output (concat ielm-output ielm-prompt-internal))
445 * \\<ielm-map>\\[ielm-send-input] evaluates the sexp following the prompt. There must be at most
446 one top level sexp per prompt.
451 prompt (but see variable `ielm-dynamic-multiline-inputs').
474 * If you don't like the prompt, you can change it by setting `ielm-prompt'.
475 * If you do not like that the prompt is (by default) read-only, set
476 `ielm-prompt-read-only' to nil.
486 (setq comint-prompt-regexp (concat "^" (regexp-quote ielm-prompt)))
489 (setq paragraph-start comint-prompt-regexp)
493 (set (make-local-variable 'ielm-prompt-internal) ielm-prompt)
494 (set (make-local-variable 'comint-prompt-read-only) ielm-prompt-read-only)
544 (unless comint-use-prompt-regexp
549 (comint-output-filter (ielm-process) ielm-prompt-internal)
559 (if (looking-at comint-prompt-regexp) nil
560 (re-search-backward comint-prompt-regexp))
561 (comint-skip-prompt)