Variable: lua-indent-nested-block-content-align
lua-indent-nested-block-content-align is a customizable variable
defined in lua-mode.el.gz.
Value
t
Documentation
Controls how the content of nested blocks are indented.
If non-nil, the contents of nested blocks are indented to align with the
column of the opening parenthesis, rather than just forward by
lua-indent-level.
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-nested-block-content-align t
"Controls how the content of nested blocks are indented.
If non-nil, the contents of nested blocks are indented to align with the
column of the opening parenthesis, rather than just forward by
`lua-indent-level'."
:type 'boolean
:safe #'booleanp
:version "31.1")