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 ReasonML Integration *ale-reasonml-options*
5 ===============================================================================
6 merlin *ale-reasonml-merlin*
8 To use merlin linter for ReasonML source code you need to make sure Merlin for
9 Vim is correctly configured. See the corresponding Merlin wiki page for
10 detailed instructions:
11 https://github.com/the-lambda-church/merlin/wiki/vim-from-scratch
13 ===============================================================================
14 ols *ale-reasonml-ols*
16 The `ocaml-language-server` is the engine that powers OCaml and ReasonML
17 editor support using the Language Server Protocol. See the installation
19 https://github.com/freebroccolo/ocaml-language-server#installation
22 -------------------------------------------------------------------------------
24 *ale-options.reason_ols_executable*
25 *g:ale_reason_ols_executable*
26 *b:ale_reason_ols_executable*
28 g:ale_reason_ols_executable
30 Default: `'ocaml-language-server'`
32 This variable can be set to change the executable path for `ols`.
34 *ale-options.reason_ols_use_global*
35 *g:ale_reason_ols_use_global*
36 *b:ale_reason_ols_use_global*
38 g:ale_reason_ols_use_global
40 Default: `get(g:, 'ale_use_global_executables', 0)`
42 This variable can be set to `1` to always use the globally installed
43 executable. See also |ale-integrations-local-executables|.
46 ===============================================================================
47 reason-language-server *ale-reasonml-language-server*
49 Note: You must set an executable - there is no 'default' install location.
50 Go to https://github.com/jaredly/reason-language-server and download the
51 latest release. You can place it anywhere, but ensure you set the executable
54 *ale-options.reason_ls_executable*
55 *g:ale_reason_ls_executable*
56 *b:ale_reason_ls_executable*
58 g:ale_reason_ls_executable
61 This variable defines the standard location of the language server
62 executable. This must be set.
65 ===============================================================================
66 refmt *ale-reasonml-refmt*
68 *ale-options.reasonml_refmt_executable*
69 *g:ale_reasonml_refmt_executable*
70 *b:ale_reasonml_refmt_executable*
71 reasonml_refmt_executable
72 g:ale_reasonml_refmt_executable
76 This variable can be set to pass the path of the refmt fixer.
78 *ale-options.reasonml_refmt_options*
79 *g:ale_reasonml_refmt_options*
80 *b:ale_reasonml_refmt_options*
81 reasonml_refmt_options
82 g:ale_reasonml_refmt_options
86 This variable can be set to pass additional options to the refmt fixer.
89 ===============================================================================
90 vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: