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

Lines Matching +defs:read +defs:expression +defs:map

403  :sqli-prompt-regexp    a regular expression string that matches
443 (defvar sql-imenu-generic-expression
455 This is used to set `imenu-generic-expression' when SQL mode is
456 entered. Subsequent changes to sql-imenu-generic-expression will not
457 affect existing SQL buffers because imenu-generic-expression is a
463 "*If non-nil, name of the file to read/write input history.
469 will read the input history from the specified file.
490 commands when the input history is read, as if you had set
757 (defvar sql-interactive-mode-map
758 (let ((map (make-sparse-keymap)))
760 (set-keymap-parent map comint-mode-map); Emacs
762 (set-keymap-parents map (list comint-mode-map)))); XEmacs
764 (set-keymap-name map 'sql-interactive-mode-map)); XEmacs
765 (define-key map (kbd "C-j") 'sql-accumulate-and-indent)
766 (define-key map (kbd "C-c C-w") 'sql-copy-column)
767 (define-key map (kbd "O") 'sql-magic-go)
768 (define-key map (kbd "o") 'sql-magic-go)
769 (define-key map (kbd ";") 'sql-magic-semicolon)
770 map)
771 "Mode map used for `sql-interactive-mode'.
772 Based on `comint-mode-map'.")
776 (defvar sql-mode-map
777 (let ((map (make-sparse-keymap)))
778 (define-key map (kbd "C-c C-c") 'sql-send-paragraph)
779 (define-key map (kbd "C-c C-r") 'sql-send-region)
780 (define-key map (kbd "C-c C-s") 'sql-send-string)
781 (define-key map (kbd "C-c C-b") 'sql-send-buffer)
782 map)
783 "Mode map used for `sql-mode'.")
788 sql-mode-menu sql-mode-map
855 sql-interactive-mode-menu sql-interactive-mode-map
990 "local" "locator" "map" "match" "minute" "modifies" "modify" "module"
995 "primary" "prior" "privileges" "procedure" "public" "read" "reads"
1102 "logical_reads_per_session" "managed" "management" "manual" "map"
1125 "purge" "query" "quiesce" "quota" "range" "read" "reads" "rebuild"
1298 "public" "read" "recheck" "references" "reindex" "relative" "rename"
1351 "read" "record" "records" "references" "remote" "rename" "replication"
1434 "proc" "procedure" "processexit" "public" "raiserror" "read"
1602 "procedure" "quick" "raid0" "raid_type" "read" "references" "rename"
1854 the regular expression `comint-prompt-regexp', a buffer local variable."
1932 (defun sql-read-passwd (prompt &optional default)
1934 (read-passwd prompt nil default))
1959 (read-from-minibuffer "User: " sql-user nil nil
1963 (sql-read-passwd "Password: " sql-password)))
1966 (read-from-minibuffer "Server: " sql-server nil nil
1970 (read-from-minibuffer "Database: " sql-database nil nil
2035 (read-buffer "New SQLi buffer: " default-buffer t))))
2123 (read-from-minibuffer
2227 \\{sql-mode-map}
2251 (use-local-map sql-mode-map)
2261 ;; Add imenu support for sql-mode. Note that imenu-generic-expression
2264 (setq imenu-generic-expression sql-imenu-generic-expression
2326 \\{sql-interactive-mode-map}
2364 (use-local-map sql-interactive-mode-map)
2404 ;; Calling the hook before calling comint-read-input-ring allows users
2406 (comint-read-input-ring t))
2418 (not buffer-read-only))