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 PureScript Integration *ale-purescript-options*
5 ===============================================================================
6 purescript-language-server *ale-purescript-language-server*
8 PureScript Language Server
9 (https://github.com/nwolverson/purescript-language-server)
11 *ale-options.purescript_ls_executable*
12 *g:ale_purescript_ls_executable*
13 *b:ale_purescript_ls_executable*
14 purescript_ls_executable
15 g:ale_purescript_ls_executable
17 Default: `'purescript-language-server'`
19 PureScript language server executable.
21 *ale-options.purescript_ls_config*
22 *g:ale_purescript_ls_config*
23 *b:ale_purescript_ls_config*
25 g:ale_purescript_ls_config
29 Dictionary containing configuration settings that will be passed to the
30 language server. For example, with a spago project: >
32 let g:ale_purescript_ls_config = {
34 \ 'addSpagoSources': v:true,
35 \ 'addNpmPath': v:true,
36 \ 'buildCommand': 'spago --quiet build --purs-args --json-errors',
41 ===============================================================================
42 purs-tidy *ale-purescript-tidy*
44 *ale-options.purescript_tidy_executable*
45 *g:ale_purescript_tidy_executable*
46 *b:ale_purescript_tidy_executable*
47 purescript_tidy_executable
48 g:ale_purescript_tidy_executable
50 Default: `'purs-tidy'`
52 This variable can be changed to use a different executable for purs-tidy.
54 *ale-options.purescript_tidy_use_global*
55 *g:ale_purescript_tidy_use_global*
56 *b:ale_purescript_tidy_use_global*
57 purescript_tidy_use_global
58 g:ale_purescript_tidy_use_global
60 Default: `get(g:, 'ale_use_global_executables', 0)`
62 See |ale-integrations-local-executables|
64 *ale-options.purescript_tidy_options*
65 *g:ale_purescript_tidy_options*
66 *b:ale_purescript_tidy_options*
67 purescript_tidy_options
68 g:ale_purescript_tidy_options
72 This variable can be set to pass in additional option to the 'purs-tidy'
75 let g:ale_purescript_options = '--indent 3'
78 ===============================================================================
79 purty *ale-purescript-purty*
81 *ale-options.purescript_purty_executable*
82 *g:ale_purescript_purty_executable*
83 *b:ale_purescript_purty_executable*
84 purescript_purty_executable
85 g:ale_purescript_purty_executable
89 This variable can be changed to use a different executable for purty.
92 ===============================================================================
93 vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: