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 Racket Integration *ale-racket-options*
5 ===============================================================================
6 racket_langserver *ale-racket-langserver*
8 1. Install racket-langserver as described here:
9 https://github.com/jeapostrophe/racket-langserver
10 2. Have `racket` available in the `$PATH` environment variable, currently there
11 is no way to specify path to custom location of `racket`.
12 3. set `racket_langserver` as a linter for `racket` like: >
13 let g:ale_linters['racket'] += ['racket_langserver']
15 You should be able to see linter results and use LSP features of `ALE` like
16 `ALEGoToDefinition` with `racket-langserver`.
19 ===============================================================================
20 raco_fmt *ale-racket-raco-fmt*
22 *ale-options.racket_raco_fmt_executable*
23 *g:ale_racket_raco_fmt_executable*
24 *b:ale_racket_raco_fmt_executable*
25 racket_raco_fmt_executable
26 g:ale_racket_raco_fmt_executable
30 If the `raco` excutable is not in the `$PATH` environment variable, or you
31 prefer to use one installed in a custom location, set this option to the
32 path to the specific `raco` executable.
34 *ale-options.racket_raco_fmt_options*
35 *g:ale_racket_raco_fmt_options*
36 *b:ale_racket_raco_fmt_options*
37 racket_raco_fmt_options
38 g:ale_racket_raco_fmt_options
42 Use this variable to pass command-line flags/parameters to `raco_fmt`
44 For example, set the page width limit to 40 >
45 let g:ale_racket_raco_fmt_options = '--width 40'
48 ===============================================================================
49 vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: