SqlBeautifier
A sublime plugin to format SQL. It supports both sublime 2 and 3.
Details
Installs
- Total 148K
- Win 79K
- Mac 51K
- Linux 18K
Jan 21 | Jan 20 | Jan 19 | Jan 18 | Jan 17 | Jan 16 | Jan 15 | Jan 14 | Jan 13 | Jan 12 | Jan 11 | Jan 10 | Jan 9 | Jan 8 | Jan 7 | Jan 6 | Jan 5 | Jan 4 | Jan 3 | Jan 2 | Jan 1 | Dec 31 | Dec 30 | Dec 29 | Dec 28 | Dec 27 | Dec 26 | Dec 25 | Dec 24 | Dec 23 | Dec 22 | Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | Dec 13 | Dec 12 | Dec 11 | Dec 10 | Dec 9 | Dec 8 | Dec 7 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 2 | 7 | 3 | 3 | 17 | 19 | 16 | 13 | 18 | 1 | 1 | 15 | 16 | 12 | 10 | 8 | 4 | 2 | 10 | 9 | 3 | 14 | 11 | 4 | 4 | 14 | 15 | 12 | 12 | 10 | 4 | 2 | 11 | 19 | 28 | 12 | 21 | 1 | 1 | 14 | 17 | 11 | 17 | 15 | 3 | 7 |
Mac | 1 | 15 | 2 | 2 | 12 | 20 | 22 | 12 | 14 | 4 | 7 | 13 | 9 | 18 | 10 | 9 | 1 | 6 | 7 | 18 | 9 | 10 | 9 | 5 | 4 | 9 | 6 | 3 | 10 | 5 | 0 | 6 | 19 | 24 | 18 | 18 | 10 | 5 | 4 | 13 | 12 | 12 | 12 | 20 | 6 | 2 |
Linux | 0 | 0 | 1 | 1 | 0 | 5 | 2 | 2 | 2 | 2 | 1 | 3 | 1 | 3 | 0 | 3 | 0 | 0 | 1 | 1 | 0 | 3 | 1 | 1 | 2 | 1 | 1 | 1 | 2 | 1 | 0 | 0 | 0 | 3 | 3 | 3 | 1 | 1 | 1 | 0 | 1 | 3 | 5 | 1 | 1 | 1 |
Readme
- Source
- raw.githubusercontent.com
SqlBeautifier
This is a SQL formatter plugin using python-sqlparse for both Sublime 2 and 3.
Enjoy!
Installation
Please install Sublime Package Control first. Then inside Package Control: Install Package, type SqlBeautifier and then click to confirm.
Settings
The default key binding for Mac is
{ "keys": ["super+k", "super+f"], "command": "sql_beautifier" }
- Kindly note that the
super
key here is generally replaced byCommand (⌘)
key
The default key binding for Windows / Linux is
{ "keys": ["ctrl+k", "ctrl+f"], "command": "sql_beautifier" }
Options for formatter
To change the options, click through Package Settings -> Sql Beautifier -> Settings User and add the overrided options in JSON like this
{
"indent_tabs": true,
"indent_width": 1
}
This overrides the default option at Package Settings -> Sql Beautifier -> Settings Default.
Here is the list of options the formatter supports:
keyword_case: Changes how keywords are formatted. Allowed values are “upper”, “lower” and “capitalize” and null (leaves case intact).
identifier_case: Changes how identifiers are formatted. Allowed values are “upper”, “lower”, and “capitalize” and null (leaves case intact).
strip_comments: If True comments are removed from the statements.
reindent: If True the indentations of the statements are changed.
indent_tabs: If True tabs instead of spaces are used for indentation.
indent_width: The width of the indentation, defaults to 2.