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 Ink Integration *ale-ink-options*
5 ===============================================================================
6 ink-language-server *ale-ink-language-server*
8 Ink Language Server - https://github.com/ephraim/ink-language-server
10 *ale-options.ink_ls_executable*
11 *g:ale_ink_ls_executable*
12 *b:ale_ink_ls_executable*
14 g:ale_ink_ls_executable
16 Default: `'ink-language-server'`
18 Ink language server executable.
20 *ale-options.ink_ls_initialization_options*
21 *g:ale_ink_ls_initialization_options*
22 *b:ale_ink_ls_initialization_options*
23 ink_ls_initialization_options
24 g:ale_ink_ls_initialization_options
28 Dictionary containing configuration settings that will be passed to the
29 language server at startup. For certain platforms and certain story
30 structures, the defaults will suffice. However, many projects will need to
31 change these settings - see the ink-language-server website for more
34 An example of setting non-default options: >
36 let g:ale_ink_ls_initialization_options = {
38 \ 'mainStoryPath': 'init.ink',
39 \ 'inklecateExecutablePath': '/usr/local/bin/inklecate',
40 \ 'runThroughMono': v:false,
45 ===============================================================================
46 vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: