]> git.madduck.net Git - etc/vim.git/blobdiff - .vim/bundle/ale/doc/ale-objc.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-objc.txt
diff --git a/.vim/bundle/ale/doc/ale-objc.txt b/.vim/bundle/ale/doc/ale-objc.txt
new file mode 100644 (file)
index 0000000..526def6
--- /dev/null
@@ -0,0 +1,94 @@
+===============================================================================
+ALE Objective-C Integration                                  *ale-objc-options*
+
+
+===============================================================================
+ccls                                                            *ale-objc-ccls*
+
+                                             *ale-options.objc_ccls_executable*
+                                                   *g:ale_objc_ccls_executable*
+                                                   *b:ale_objc_ccls_executable*
+objc_ccls_executable
+g:ale_objc_ccls_executable
+  Type: |String|
+  Default: `'ccls'`
+
+  This variable can be changed to use a different executable for ccls.
+
+                                           *ale-options.objc_ccls_init_options*
+                                                 *g:ale_objc_ccls_init_options*
+                                                 *b:ale_objc_ccls_init_options*
+objc_ccls_init_options
+g:ale_objc_ccls_init_options
+  Type: |Dictionary|
+  Default: `{}`
+
+  This variable can be changed to customize ccls initialization options.
+  Example: >
+
+  let g:ale_objc_ccls_init_options = {
+  \   'cacheDirectory': '/tmp/ccls',
+  \   'cacheFormat': 'binary',
+  \   'diagnostics': {
+  \       'onOpen': 0,
+  \       'opChange': 1000,
+  \   },
+  \}
+<
+  Visit https://github.com/MaskRay/ccls/wiki/Initialization-options for all
+  available options and explanations.
+
+
+===============================================================================
+clang                                                          *ale-objc-clang*
+
+                                               *ale-options.objc_clang_options*
+                                                     *g:ale_objc_clang_options*
+                                                     *b:ale_objc_clang_options*
+objc_clang_options
+g:ale_objc_clang_options
+  Type: |String|
+  Default: `'-std=c11 -Wall'`
+
+  This variable can be changed to modify flags given to clang.
+
+
+===============================================================================
+clang-format                                             *ale-objc-clangformat*
+
+See |ale-c-clangformat| for information about the available options.
+Note that the C options are also used for Objective-C.
+
+
+===============================================================================
+clangd                                                        *ale-objc-clangd*
+
+                                           *ale-options.objc_clangd_executable*
+                                                 *g:ale_objc_clangd_executable*
+                                                 *b:ale_objc_clangd_executable*
+objc_clangd_executable
+g:ale_objc_clangd_executable
+  Type: |String|
+  Default: `'clangd'`
+
+  This variable can be changed to use a different executable for clangd.
+
+                                              *ale-options.objc_clangd_options*
+                                                    *g:ale_objc_clangd_options*
+                                                    *b:ale_objc_clangd_options*
+objc_clangd_options
+g:ale_objc_clangd_options
+  Type: |String|
+  Default: `''`
+
+  This variable can be changed to modify flags given to clangd.
+
+
+===============================================================================
+uncrustify                                                *ale-objc-uncrustify*
+
+See |ale-c-uncrustify| for information about the available options.
+
+
+===============================================================================
+  vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: