]> git.madduck.net Git - etc/vim.git/blob - .vim/bundle/ale/doc/ale-r.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-r.txt
1 ===============================================================================
2 ALE R Integration                                               *ale-r-options*
3
4
5 ===============================================================================
6 languageserver                                           *ale-r-languageserver*
7
8                                              *ale-options.r_languageserver_cmd*
9                                                    *g:ale_r_languageserver_cmd*
10                                                    *b:ale_r_languageserver_cmd*
11 r_languageserver_cmd
12 g:ale_r_languageserver_cmd
13   Type: |String|
14   Default: `'languageserver::run()'`
15
16   This option can be configured to change the execution command for
17   languageserver.
18
19   See the languageserver documentation for more options.
20
21                                           *ale-options.r_languageserver_config*
22                                                 *g:ale_r_languageserver_config*
23                                                 *b:ale_r_languageserver_config*
24 r_languageserver_config
25 g:ale_r_languageserver_config
26   Type: |Dictionary|
27   Default: `{}`
28
29   This option can be configured to change settings for languageserver. See the
30   languageserver documentation for more information.
31
32
33 ===============================================================================
34 lintr                                                             *ale-r-lintr*
35
36                                                   *ale-options.r_lintr_options*
37                                                         *g:ale_r_lintr_options*
38                                                         *b:ale_r_lintr_options*
39 r_lintr_options
40 g:ale_r_lintr_options
41   Type: |String|
42   Default: `'lintr::with_defaults()'`
43
44   This option can be configured to change the options for lintr.
45
46   The value of this option will be run with `eval` for the `lintr::lint`
47   options. Consult the lintr documentation for more information.
48
49                                              *ale-options.r_lintr_lint_package*
50                                                    *g:ale_r_lintr_lint_package*
51                                                    *b:ale_r_lintr_lint_package*
52 r_lintr_lint_package
53 g:ale_r_lintr_lint_package
54   Type: |Number|
55   Default: `0`
56
57   When set to `1`, the file will be checked with `lintr::lint_package` instead
58   of `lintr::lint`. This prevents erroneous namespace warnings when linting
59   package files.
60
61
62 ===============================================================================
63 styler                                                           *ale-r-styler*
64
65                                                  *ale-options.r_styler_options*
66                                                        *g:ale_r_styler_options*
67                                                        *b:ale_r_styler_options*
68 r_styler_options
69 g:ale_r_styler_options
70   Type: |String|
71   Default: `'styler::tidyverse_style'`
72
73   This option can be configured to change the options for styler.
74
75   The value of this option will be used as the `style` argument for the
76   `styler::style_file` options. Consult the styler documentation
77   for more information.
78
79
80 ===============================================================================
81   vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: