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
Using these settings: { "indent_tabs": true, "indent_width": 1, "reindent": true }
The SQL code gets this nice format:
SELECT foo,
bar AS BAR
FROM TABLE
WHERE stuff = stuff2
AND other_stuff NOT IN ('TH',
'AN',
'KS')
AND blah = bleh
But I want to use tabs instead of spaces, so now with plugin settings: { "indent_tabs": true, "indent_width": 1, "reindent": true }
The code gets formatted to (had to use an image):
I guess the problem is that the number of tabs used is the same number of the calculated spaces, is there any way to read the user's customized tab size to do the math?
Congratulations for the great plugin.
The text was updated successfully, but these errors were encountered:
Using these settings:
{ "indent_tabs": true, "indent_width": 1, "reindent": true }
The SQL code gets this nice format:
But I want to use tabs instead of spaces, so now with plugin settings:
{ "indent_tabs": true, "indent_width": 1, "reindent": true }
The code gets formatted to (had to use an image):
I guess the problem is that the number of tabs used is the same number of the calculated spaces, is there any way to read the user's customized tab size to do the math?
Congratulations for the great plugin.
The text was updated successfully, but these errors were encountered: