Variable: lua-indent-close-paren-align
lua-indent-close-paren-align is a customizable variable defined in
lua-mode.el.gz.
Value
t
Documentation
Controls how closing parenthesis is aligned.
If non-nil, close parenthesis are aligned with their open parenthesis. If nil, close parenthesis are aligned to the beginning of the line.
This variable was added, or its default value changed, in Emacs 31.1.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/lua-mode.el.gz
(defcustom lua-indent-close-paren-align t
"Controls how closing parenthesis is aligned.
If non-nil, close parenthesis are aligned with their open parenthesis.
If nil, close parenthesis are aligned to the beginning of the line."
:type 'boolean
:safe #'booleanp
:version "31.1")