]> git.madduck.net Git - etc/vim.git/blobdiff - .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:

Merge commit '76265755a1add77121c8f9dabb3e9bb70fe9a972' as '.vim/bundle/ale'
[etc/vim.git] / .vim / bundle / ale / doc / ale-sql.txt
diff --git a/.vim/bundle/ale/doc/ale-sql.txt b/.vim/bundle/ale/doc/ale-sql.txt
new file mode 100644 (file)
index 0000000..8988e7a
--- /dev/null
@@ -0,0 +1,109 @@
+===============================================================================
+ALE SQL Integration                                           *ale-sql-options*
+
+
+===============================================================================
+dprint                                                         *ale-sql-dprint*
+
+See |ale-dprint-options|
+and https://github.com/dprint/dprint-plugin-sql/releases
+
+
+===============================================================================
+pgformatter                                               *ale-sql-pgformatter*
+
+                                       *ale-options.sql_pgformatter_executable*
+                                             *g:ale_sql_pgformatter_executable*
+                                             *b:ale_sql_pgformatter_executable*
+sql_pgformatter_executable
+g:ale_sql_pgformatter_executable
+  Type: |String|
+  Default: `'pg_format'`
+
+  This variable sets executable used for pgformatter.
+
+                                          *ale-options.sql_pgformatter_options*
+                                                *g:ale_sql_pgformatter_options*
+                                                *b:ale_sql_pgformatter_options*
+sql_pgformatter_options
+g:ale_sql_pgformatter_options
+  Type: |String|
+  Default: `''`
+
+  This variable can be set to pass additional options to the pgformatter fixer.
+
+
+===============================================================================
+sqlfluff                                                     *ale-sql-sqlfluff*
+
+                                          *ale-options.sql_sqlfluff_executable*
+                                                *g:ale_sql_sqlfluff_executable*
+                                                *b:ale_sql_sqlfluff_executable*
+sql_sqlfluff_executable
+g:ale_sql_sqlfluff_executable
+  Type: |String|
+  Default: `'sqlfluff'`
+
+  This variable sets executable used for sqlfluff.
+
+                                             *ale-options.sql_sqlfluff_options*
+                                                   *g:ale_sql_sqlfluff_options*
+                                                   *b:ale_sql_sqlfluff_options*
+sql_sqlfluff_options
+g:ale_sql_sqlfluff_options
+  Type: |String|
+  Default: `''`
+
+  This variable can be set to pass additional options to the sqlfluff linter.
+
+===============================================================================
+sqlfmt                                                         *ale-sql-sqlfmt*
+
+                                            *ale-options.sql_sqlfmt_executable*
+                                                  *g:ale_sql_sqlfmt_executable*
+                                                  *b:ale_sql_sqlfmt_executable*
+sql_sqlfmt_executable
+g:ale_sql_sqlfmt_executable
+  Type: |String|
+  Default: `'sqlfmt'`
+
+  This variable sets executable used for sqlfmt.
+
+                                               *ale-options.sql_sqlfmt_options*
+                                                     *g:ale_sql_sqlfmt_options*
+                                                     *b:ale_sql_sqlfmt_options*
+sql_sqlfmt_options
+g:ale_sql_sqlfmt_options
+  Type: |String|
+  Default: `''`
+
+  This variable can be set to pass additional options to the sqlfmt fixer.
+  At this time only the -u flag is available to format with upper-case.
+
+
+===============================================================================
+sqlformat                                                   *ale-sql-sqlformat*
+
+                                         *ale-options.sql_sqlformat_executable*
+                                               *g:ale_sql_sqlformat_executable*
+                                               *b:ale_sql_sqlformat_executable*
+sql_sqlformat_executable
+g:ale_sql_sqlformat_executable
+  Type: |String|
+  Default: `'sqlformat'`
+
+  This variable sets executable used for sqlformat.
+
+                                            *ale-options.sql_sqlformat_options*
+                                                  *g:ale_sql_sqlformat_options*
+                                                  *b:ale_sql_sqlformat_options*
+sql_sqlformat_options
+g:ale_sql_sqlformat_options
+  Type: |String|
+  Default: `''`
+
+  This variable can be set to pass additional options to the sqlformat fixer.
+
+
+===============================================================================
+  vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: