Variable: typescript-ts-mode-multivar-indent-style
typescript-ts-mode-multivar-indent-style is a customizable variable
defined in typescript-ts-mode.el.gz.
Value
indent
Documentation
Indentation style for multivar declaration.
If the value is align, align each declaration:
const foo = 'bar',
baz = 'quux',
stop = 'start';
If the value is indent, indent subsequent declarations by one indent
level:
const foo = 'bar',
baz = 'quux',
stop = 'start';
For changes to this variable to take effect, restart the major mode.
This variable was added, or its default value changed, in Emacs 31.1.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/typescript-ts-mode.el.gz
(defcustom typescript-ts-mode-multivar-indent-style 'indent
"Indentation style for multivar declaration.
If the value is `align', align each declaration:
const foo = \\='bar\\=',
baz = \\='quux\\=',
stop = \\='start\\=';
If the value is `indent', indent subsequent declarations by one indent
level:
const foo = \\='bar\\=',
baz = \\='quux\\=',
stop = \\='start\\=';
For changes to this variable to take effect, restart the major mode."
:version "31.1"
:type 'symbol
:group 'typescript)