Closed wedens closed 5 years ago
This works as expected, the sqlind-setup-style-left
indentation style is configured to indent lines inside an insert clause by "one step" (a sqind-basic-offset
). This is the in-insert-clause
syntax symbol.
To make it indent the way you want, you will need to write your own indentation style -- you can copy sqlind-indentation-left-offsets-alist
and replace the +
with a 0
in the in-insert-clause
list. You can find more information about customizing the indentation in the sql-indent.org manual
Ok. Thanks. I'll try to make a custom style.
Indented version:
Expected (line 3 and 4 on the same level as
values
:syntax of line 3 and 4:
(((in-insert-clause "values") . 52) (statement-continuation . 1))
I use
sqlind-setup-style-left
style in my configuration.