Function: lua-electric-match
lua-electric-match is an interactive and byte-compiled function
defined in lua-mode.el.gz.
Signature
(lua-electric-match ARG)
Documentation
Insert character ARG and adjust indentation.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/lua-mode.el.gz
(defun lua-electric-match (arg)
"Insert character ARG and adjust indentation."
(interactive "P")
(let (blink-paren-function)
(self-insert-command (prefix-numeric-value arg)))
(when lua-electric-flag
(lua-indent-line))
(blink-matching-open))