Variable: lua-prefix-mode-map

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

Value

C-f  lua-search-documentation
C-l  lua-send-buffer

Documentation

Keymap that is used to define keys accessible by lua-prefix-key.

If the latter is nil, the keymap translates into lua-mode-map verbatim.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/lua-mode.el.gz
(defvar-keymap lua-prefix-mode-map
  :doc "Keymap that is used to define keys accessible by `lua-prefix-key'.
If the latter is nil, the keymap translates into `lua-mode-map' verbatim."
  "C-l" #'lua-send-buffer
  "C-f" #'lua-search-documentation)