• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/emacs-92/emacs/lisp/progmodes/

Lines Matching +defs:label +defs:prefix +defs:re

78 ;; keybindings in the prefix map.  There bindings are available anyway - so
120 :prefix "idlwave-shell"
193 (defcustom idlwave-shell-temp-pro-prefix "/tmp/idltemp"
194 "*The prefix for temporary IDL files used when compiling regions.
207 (defcustom idlwave-shell-prefix-key "\C-c\C-d"
208 "*The prefix key for the debugging map `idlwave-shell-mode-prefix-map'.
214 (defcustom idlwave-shell-activate-prefix-keybindings t
215 "Non-nil means, the debug commands will be bound to the prefix key.
216 The prefix key itself is given in the option `idlwave-shell-prefix-key'.
271 The command is `C-c C-d C-f' and accepts as a prefix the window nr.
282 :prefix "idlwave-shell"
463 :prefix "idlwave-shell"
615 (idlwave-shell-make-temp-file idlwave-shell-temp-pro-prefix))))
619 (idlwave-shell-make-temp-file idlwave-shell-temp-pro-prefix))))
624 (defun idlwave-shell-make-temp-file (prefix)
628 (make-temp-file prefix)
637 (expand-file-name prefix temp-file-dir)))
808 (defconst idlwave-shell-halt-messages-re
812 (defconst idlwave-shell-trace-message-re
853 Examining Expressions (with prefix for examining the region):
923 `C-c C-d' prefix are available for most commands in the *idl* buffer
1196 When called with a prefix ARG, or when `idlwave-shell-use-dedicated-frame'
1576 (re-search-backward idlwave-shell-prompt-pattern nil t)
1757 ((or (setq trace (string-match idlwave-shell-trace-message-re
1759 (string-match idlwave-shell-halt-messages-re
1920 (let ((n (if n (prefix-numeric-value n) 0)))
1955 With prefix ARG, exit without confirmation."
2004 sep sep-re file type spec specs name cs key keys class entry)
2014 sep-re (concat (regexp-quote sep) " *")
2017 (setq sep "@" sep-re "@ *" text "")
2033 specs (idlwave-split-string spec sep-re)
2127 (if (not (re-search-backward
2240 "Returns t if we're in a batch command statement like @foo"
2249 "Returns t if we're in a shell command statement like $ls"
2305 ;; force edebug for this frame if we're in that mode already
2466 "Step one source line. If given prefix argument ARG, step ARG source lines."
2477 If given prefix argument ARG, step ARG source lines.
2734 (if (re-search-forward
2875 (defvar idlwave-shell-examine-label nil
2888 be used to label the help print-out.
2900 With prefix arg, or if transient mode set and the region is defined,
2903 With double prefix arg ARG prompt for an expression.
2918 (stack-label
3006 (setq idlwave-shell-examine-label
3009 stack-label "\n"))))
3010 ;; The regular help label (no popups, cons cells, etc.)
3011 (setq idlwave-shell-examine-label
3017 stack-label "\n")))
3020 (if stack-label
3062 (re-search-backward idlwave-shell-prompt-pattern nil t)
3066 (or (progn (if (re-search-backward
3070 (re-search-forward "\n")))
3074 (if idlwave-shell-examine-label
3076 (insert idlwave-shell-examine-label)
3077 (setq idlwave-shell-examine-label nil)))))
3242 (re-search-backward idlwave-shell-prompt-pattern nil t)
3307 If there is a prefix argument, display IDL process."
3333 If there is a prefix argument, display IDL process.
3447 bp-re indmap)
3451 (if (re-search-forward "^\\s-*Index.*\n\\s-*-" nil t)
3452 (setq bp-re bp-re54 ; versions <= 5.4
3454 (if (re-search-forward
3456 (setq bp-re bp-re55 ; versions >= 5.5
3459 (while (re-search-forward bp-re nil t)
3464 (if (eq bp-re bp-re55)
3480 (if (eq bp-re bp-re54)
3868 Also with prefix arg, ask for the command. You can also use the command
3887 When called from the shell buffer, re-run the file which was last handled by
3895 When called from the shell buffer, re-compile the file which was last handled by
3903 When called from the shell buffer, re-batch the file which was last handled by
3911 When called from the shell buffer, re-compile the file which was last
4015 (if (re-search-forward "Compiled Procedures:" nil t)
4019 (if (re-search-forward "Compiled Functions:" nil t)
4041 (re-search-forward
4086 (re-search-forward idlwave-shell-syntax-error nil t)
4087 (re-search-forward idlwave-shell-other-error nil t))
4101 (if (re-search-backward "\\^" nil t)
4126 (defvar idlwave-shell-mode-prefix-map (make-sparse-keymap))
4127 (fset 'idlwave-shell-mode-prefix-map idlwave-shell-mode-prefix-map)
4128 (defvar idlwave-mode-prefix-map (make-sparse-keymap))
4129 (fset 'idlwave-mode-prefix-map idlwave-mode-prefix-map)
4154 (define-key idlwave-shell-mode-map idlwave-shell-prefix-key
4197 ;; If `idlwave-shell-activate-prefix-keybindings' is non-nil, the
4198 ;; first key in the list gets bound the C-c C-d prefix map. If
4258 ;; The regular prefix keymap.
4259 (when (and idlwave-shell-activate-prefix-keybindings k1)
4261 (define-key idlwave-shell-mode-prefix-map k1 cmd))
4262 (define-key idlwave-mode-prefix-map k1 cmd))
4297 ; Enter the prefix map in two places.
4298 (fset 'idlwave-debug-map idlwave-mode-prefix-map)
4299 (fset 'idlwave-shell-debug-map idlwave-shell-mode-prefix-map)
4304 "Toggle electric-debug-mode, suppressing re-entry into mode if turned off."
4322 Non-null prefix argument turns on the mode.
4323 Null prefix argument turns off the mode.