use tabs for auto indentation

I'm using SQL Prompt version 9.2.3

when making use of auto-complete eg. pressing tab button when cursor is right after the asterisk in the following snippet:
SELECT
    TBL.*
FROM tablename AS TBL

replaces the column list in the snippet with the full list of column names, such as:
SELECT
    TBL.col_1,
    TBL.col_2,
    ...,
    TBL.col_n,
FROM tablename AS TBL

however, the indentation is spaces, not tabs as I prefer

I can't find a setting for this in SQL Prompt settings, is there one? a previous version I used didn't work like this, I see this matter was raised before SP-1329, (https://forum.red-gate.com/discussion/11637/format-styles-tabs-vs-spaces)

can anyone assist?
Tagged:

Answers

Sign In or Register to comment.