Suggestion: When a block is marked, let TAB/Shift-TAB indent/unindent by *1* space

guttormvik

Member²
When the editor is configured to indent with spaces, I want it to indent by 4 / "smart",
but when I have marked a block I'd like tab to indent by 1 space and shift-tab to unindent by 1 space. always.

With our preferred formatting of SQLs there are lots of indents that are not a multiple of 4

SQL:
select *
  from t_person p
     , t_person_address pa
 where pa.person_id = p.person_id
   and p.first_name = 'John'
 
Last edited:
Back
Top