]> git.madduck.net Git - etc/vim.git/blob - .vim/bundle/ale/doc/ale-sql.txt

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Do not set EDITOR/VISUAL for shell
[etc/vim.git] / .vim / bundle / ale / doc / ale-sql.txt
1 ===============================================================================
2 ALE SQL Integration                                           *ale-sql-options*
3
4
5 ===============================================================================
6 dprint                                                         *ale-sql-dprint*
7
8 See |ale-dprint-options|
9 and https://github.com/dprint/dprint-plugin-sql/releases
10
11
12 ===============================================================================
13 pgformatter                                               *ale-sql-pgformatter*
14
15                                        *ale-options.sql_pgformatter_executable*
16                                              *g:ale_sql_pgformatter_executable*
17                                              *b:ale_sql_pgformatter_executable*
18 sql_pgformatter_executable
19 g:ale_sql_pgformatter_executable
20   Type: |String|
21   Default: `'pg_format'`
22
23   This variable sets executable used for pgformatter.
24
25                                           *ale-options.sql_pgformatter_options*
26                                                 *g:ale_sql_pgformatter_options*
27                                                 *b:ale_sql_pgformatter_options*
28 sql_pgformatter_options
29 g:ale_sql_pgformatter_options
30   Type: |String|
31   Default: `''`
32
33   This variable can be set to pass additional options to the pgformatter fixer.
34
35
36 ===============================================================================
37 sqlfluff                                                     *ale-sql-sqlfluff*
38
39                                           *ale-options.sql_sqlfluff_executable*
40                                                 *g:ale_sql_sqlfluff_executable*
41                                                 *b:ale_sql_sqlfluff_executable*
42 sql_sqlfluff_executable
43 g:ale_sql_sqlfluff_executable
44   Type: |String|
45   Default: `'sqlfluff'`
46
47   This variable sets executable used for sqlfluff.
48
49                                              *ale-options.sql_sqlfluff_options*
50                                                    *g:ale_sql_sqlfluff_options*
51                                                    *b:ale_sql_sqlfluff_options*
52 sql_sqlfluff_options
53 g:ale_sql_sqlfluff_options
54   Type: |String|
55   Default: `''`
56
57   This variable can be set to pass additional options to the sqlfluff linter.
58
59 ===============================================================================
60 sqlfmt                                                         *ale-sql-sqlfmt*
61
62                                             *ale-options.sql_sqlfmt_executable*
63                                                   *g:ale_sql_sqlfmt_executable*
64                                                   *b:ale_sql_sqlfmt_executable*
65 sql_sqlfmt_executable
66 g:ale_sql_sqlfmt_executable
67   Type: |String|
68   Default: `'sqlfmt'`
69
70   This variable sets executable used for sqlfmt.
71
72                                                *ale-options.sql_sqlfmt_options*
73                                                      *g:ale_sql_sqlfmt_options*
74                                                      *b:ale_sql_sqlfmt_options*
75 sql_sqlfmt_options
76 g:ale_sql_sqlfmt_options
77   Type: |String|
78   Default: `''`
79
80   This variable can be set to pass additional options to the sqlfmt fixer.
81   At this time only the -u flag is available to format with upper-case.
82
83
84 ===============================================================================
85 sqlformat                                                   *ale-sql-sqlformat*
86
87                                          *ale-options.sql_sqlformat_executable*
88                                                *g:ale_sql_sqlformat_executable*
89                                                *b:ale_sql_sqlformat_executable*
90 sql_sqlformat_executable
91 g:ale_sql_sqlformat_executable
92   Type: |String|
93   Default: `'sqlformat'`
94
95   This variable sets executable used for sqlformat.
96
97                                             *ale-options.sql_sqlformat_options*
98                                                   *g:ale_sql_sqlformat_options*
99                                                   *b:ale_sql_sqlformat_options*
100 sql_sqlformat_options
101 g:ale_sql_sqlformat_options
102   Type: |String|
103   Default: `''`
104
105   This variable can be set to pass additional options to the sqlformat fixer.
106
107
108 ===============================================================================
109   vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: