Variable: lua-mode-map

lua-mode-map is a variable defined in lua-mode.el.gz.

Value

C-M-u    lua-backward-up-list
C-c C-f  lua-search-documentation
C-c C-l  lua-send-buffer

Documentation

Keymap used in lua-mode buffers.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/lua-mode.el.gz
(defvar lua-mode-map
  (let ((result-map (make-sparse-keymap)))
    (unless (boundp 'electric-indent-chars)
      (mapc (lambda (electric-char)
              (define-key result-map
                (read-kbd-macro
                 (char-to-string electric-char))
                #'lua-electric-match))
            lua--electric-indent-chars))
    (define-key result-map [remap backward-up-list] 'lua-backward-up-list)

    ;; Handle prefix-keyed bindings:
    ;; * if no prefix, set prefix-map as parent, i.e.  if key is not
    ;;   defined look it up in prefix-map
    ;; * if prefix is set, bind the prefix-map to that key
    (if lua-prefix-key
        (define-key result-map lua-prefix-key lua-prefix-mode-map)
      (set-keymap-parent result-map lua-prefix-mode-map))
    result-map)
  "Keymap used in `lua-mode' buffers.")