blob: 526def67ca727d60669899aeaa59afaf042d74b0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
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:
|