sql-formatter
A Sublime Text plugin that runs the cli-sql-formatter node library on the current file
Details
Installs
- Total 44K
- Win 22K
- Mac 17K
- Linux 5K
| Feb 22 | Feb 21 | Feb 20 | Feb 19 | Feb 18 | Feb 17 | Feb 16 | Feb 15 | Feb 14 | Feb 13 | Feb 12 | Feb 11 | Feb 10 | Feb 9 | Feb 8 | Feb 7 | Feb 6 | Feb 5 | Feb 4 | Feb 3 | Feb 2 | Feb 1 | Jan 31 | Jan 30 | Jan 29 | Jan 28 | Jan 27 | Jan 26 | Jan 25 | Jan 24 | Jan 23 | Jan 22 | 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 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Windows | 3 | 2 | 5 | 3 | 8 | 3 | 3 | 0 | 1 | 1 | 10 | 5 | 5 | 6 | 0 | 0 | 4 | 7 | 4 | 9 | 9 | 0 | 0 | 7 | 7 | 8 | 4 | 6 | 0 | 2 | 5 | 7 | 8 | 7 | 4 | 1 | 2 | 5 | 4 | 7 | 7 | 2 | 1 | 1 | 8 | 10 |
| Mac | 1 | 0 | 2 | 5 | 4 | 7 | 3 | 1 | 0 | 7 | 11 | 4 | 3 | 5 | 1 | 4 | 5 | 8 | 5 | 5 | 8 | 1 | 1 | 7 | 9 | 7 | 9 | 7 | 3 | 2 | 7 | 9 | 9 | 7 | 5 | 1 | 1 | 7 | 7 | 8 | 12 | 6 | 1 | 1 | 5 | 7 |
| Linux | 1 | 0 | 2 | 0 | 3 | 1 | 1 | 0 | 0 | 2 | 5 | 1 | 0 | 1 | 1 | 0 | 0 | 2 | 1 | 0 | 1 | 0 | 1 | 0 | 2 | 0 | 2 | 1 | 0 | 0 | 1 | 0 | 0 | 2 | 1 | 0 | 0 | 3 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 |
Readme
- Source
- raw.githubusercontent.com
sublime-sql-formatter
A Sublime Text plugin that runs the cli-sql-formatter node library on the current file. cli-sql-formatter is in turn a command line interface for the sql-formatter node library.
Installation
Dependencies
This plugin requires node.js, and also requires cli-sql-formatter to be globally installed.
npm install -g cli-sql-formatter
Plugin Installation
This plugin is installable via Package Control
To install via Package Control, do the following:
Within Sublime Text, bring up the Command Palette and type
install. Among the commands you should seePackage Control: Install Package. If that command is not highlighted, use the keyboard or mouse to select it. There will be a pause of a few seconds while Package Control fetches the list of available plugins.When the plugin list appears, type
sql-formatter. Among the entries you should seesql-formatter. Select this entry to install it.
Commands
Command Palette
Format SQL: Runs the formatter with the default dialect defined in your settings.Format SQL With Dialect: Runs the formatter with a dialect of your choosing.
Default Hotkeys
By default, these hotkeys will run the formatter with the default dialect defined in your settings.
- Linux/Windows: [Ctrl + KQ]
- Mac: [Cmd + KQ]
Settings
By default the following settings are used:
{
// The paths to look for executables
"paths": {
"linux": [],
"osx": [],
"windows": []
},
// The default dialect to use for formatting
// Options:
// "sql" - Standard SQL
// "n1ql" - Couchbase N1QL
// "db2" - IBM DB2
// "pl/sql" - Oracle PL/SQL
"default_dialect": "sql",
// The number of spaces to indent with
"indent_size": 2,
// Indent with tabs instead of spaces
"use_tabs": false
}
You can modify any settings by going to Preferences > Package Settings > sql-formatter > Settings.
Project-Specific Settings Override
To override global plugin configuration for a specific project, add a settings object with an sql-formatter key in your .sublime-project. This file is accessible via Project -> Edit Project.
For example:
{
"folders": [
{
"path": "."
}
],
"settings": {
"use_tabs": true
}
}