You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Wonderful plugin! Would love to see two new config options. One to not split up values inside of an IN clause to new lines but instead just put a space between values.
for example
current method:
IN (1,
2,
3,
4)
option to disable this:
IN (1, 2, 3, 4)
The other requested option would be to indent AND criteria as part of an JOIN xx ON statement the same way that they are indented for WHERE clauses.
For example
current method:
JOIN xxx ON blah = blah
AND foo = foo
AND xyz = xyz
option enabled to indent:
JOIN xxx ON blah = blah
AND foo = foo
AND xyz = xyz
The text was updated successfully, but these errors were encountered:
Wonderful plugin! Would love to see two new config options. One to not split up values inside of an IN clause to new lines but instead just put a space between values.
for example
current method:
IN (1,
2,
3,
4)
option to disable this:
IN (1, 2, 3, 4)
The other requested option would be to indent AND criteria as part of an JOIN xx ON statement the same way that they are indented for WHERE clauses.
For example
current method:
JOIN xxx ON blah = blah
AND foo = foo
AND xyz = xyz
option enabled to indent:
JOIN xxx ON blah = blah
AND foo = foo
AND xyz = xyz
The text was updated successfully, but these errors were encountered: