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.
1 ===============================================================================
2 ALE Vim Integration *ale-vim-options*
5 ===============================================================================
8 The `vim-language-server` is the engine that powers VimL editor support
9 using the Language Server Protocol. See the installation instructions:
10 https://github.com/iamcco/vim-language-server#install
12 *ale-options.vim_vimls_executable*
13 *g:ale_vim_vimls_executable*
14 *b:ale_vim_vimls_executable*
16 g:ale_vim_vimls_executable
18 Default: `'vim-language-server'`
20 This option can be set to change the executable path for vimls.
22 *ale-options.vim_vimls_config*
23 *g:ale_vim_vimls_config*
24 *b:ale_vim_vimls_config*
26 g:ale_vim_vimls_config
30 Dictionary containing configuration settings that will be passed to the
31 language server. For example: >
33 let g:ale_vim_vimls_config = {
35 \ 'iskeyword': '@,48-57,_,192-255,-#',
38 \ 'diagnostic': {'enable': v:true},
40 \ 'runtimepath': v:true,
43 \ 'projectRootPatterns': ['.git', 'autoload', 'plugin'],
46 \ 'fromVimruntime': v:true,
47 \ 'fromRuntimepath': v:false,
52 Consult the vim-language-server documentation for more information about
55 *ale-options.vim_vimls_use_global*
56 *g:ale_vim_vimls_use_global*
57 *b:ale_vim_vimls_use_global*
59 g:ale_vim_vimls_use_global
61 Default: `get(g:, 'ale_use_global_executables', 0)`
63 See |ale-integrations-local-executables|
66 ===============================================================================
69 *ale-options.vim_vint_executable*
70 *g:ale_vim_vint_executable*
71 *b:ale_vim_vint_executable*
73 g:ale_vim_vint_executable
77 This option can be set to change the executable path for Vint.
79 *ale-options.vim_vint_show_style_issues*
80 *g:ale_vim_vint_show_style_issues*
81 *b:ale_vim_vint_show_style_issues*
82 vim_vint_show_style_issues
83 g:ale_vim_vint_show_style_issues
87 This variable will enable/disable style issues for Vint. When this option
88 is disabled, only warnings and errors which are not purely style issues
92 ===============================================================================
93 vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: