Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 534 Bytes

useTabs.md

File metadata and controls

32 lines (25 loc) · 534 Bytes

useTabs

Uses TAB characters for indentation.

Options

  • false (default) use spaces (see tabWidth option).
  • true use tabs.

Indenting with tabs

Using useTabs: true:

SELECT
        *,
FROM
        (
                SELECT
                        column1,
                        column5
                FROM
                        table1
        ) a
        JOIN table2
WHERE
        column6
        AND column7
GROUP BY column4

Imagine that these long sequences of spaces are actually TAB characters :)