]> git.madduck.net Git - etc/vim.git/blob - .vim/bundle/ale/doc/ale-perl6.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-perl6.txt
1 ===============================================================================
2 ALE Perl6 Integration                                       *ale-perl6-options*
3
4 Checking code with `perl6` is disabled by default, as `perl6` code cannot be
5 checked without executing it. Specifically, we use the `-c` flag to see if
6 `perl6` code compiles. This does not execute all of the code in a file, but it
7 does run `BEGIN` and `CHECK` blocks. See `perl6 --help`
8
9 Full support requires a perl6 implementation that supports the
10 PERL6_EXCEPTIONS_HANDLER environment variable and JSON error output,
11 which was specified in 6.d. Rakudo version 2018.08 is the first rakudo release
12 that supports this. See `perl6 --version` and
13 https://docs.perl6.org/programs/03-environment-variables.
14
15 Without this variable, errors and warnings will appear at line 1, and can be
16 viewed with ALEDetail. This also serves as a fallback for errors and warnings
17 that do not trigger JSON output.
18
19 See |g:ale_linters|.
20
21
22 ===============================================================================
23 perl6                                                         *ale-perl6-perl6*
24
25                                            *ale-options.perl6_perl6_executable*
26                                                  *g:ale_perl6_perl6_executable*
27                                                  *b:ale_perl6_perl6_executable*
28 perl6_perl6_executable
29 g:ale_perl6_perl6_executable
30   Type: |String|
31   Default: `'perl6'`
32
33   This variable can be changed to modify the executable used for linting
34   perl6.
35
36                                               *ale-options.perl6_perl6_options*
37                                                     *g:ale_perl6_perl6_options*
38                                                     *b:ale_perl6_perl6_options*
39 perl6_perl6_options
40 g:ale_perl6_perl6_options
41   Type: |String|
42   Default: `'-c -Ilib'`
43
44   This variable can be changed to alter the command-line arguments to the
45   perl6 invocation.
46
47
48 ===============================================================================
49   vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: