]> git.madduck.net Git - etc/vim.git/blob - .vim/bundle/ale/doc/ale-fortran.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-fortran.txt
1 ===============================================================================
2 ALE Fortran Integration                                   *ale-fortran-options*
3
4
5 ===============================================================================
6 gcc                                                           *ale-fortran-gcc*
7
8                                            *ale-options.fortran_gcc_executable*
9                                                  *g:ale_fortran_gcc_executable*
10                                                  *b:ale_fortran_gcc_executable*
11 fortran_gcc_executable
12 g:ale_fortran_gcc_executable
13   Type: |String|
14   Default: `'gcc'`
15
16   This variable can be changed to modify the executable used for checking
17   Fortran code with GCC.
18
19                                               *ale-options.fortran_gcc_options*
20                                                     *g:ale_fortran_gcc_options*
21                                                     *b:ale_fortran_gcc_options*
22 fortran_gcc_options
23 g:ale_fortran_gcc_options
24   Type: |String|
25   Default: `'-Wall'`
26
27   This variable can be changed to modify flags given to gcc.
28
29                                         *ale-options.fortran_gcc_use_free_form*
30                                               *g:ale_fortran_gcc_use_free_form*
31                                               *b:ale_fortran_gcc_use_free_form*
32 fortran_gcc_use_free_form
33 g:ale_fortran_gcc_use_free_form
34   Type: |Number|
35   Default: `1`
36
37   When set to `1`, the `-ffree-form` flag will be used for GCC, to check files
38   with the free form layout. When set to `0`, `-ffixed-form` will be used
39   instead, for checking files with fixed form layouts.
40
41
42 ===============================================================================
43 language_server                                   *ale-fortran-language-server*
44
45                                *ale-options.fortran_language_server_executable*
46                                      *g:ale_fortran_language_server_executable*
47                                      *b:ale_fortran_language_server_executable*
48 fortran_language_server_executable
49 g:ale_fortran_language_server_executable
50   Type: |String|
51   Default: `'fortls'`
52
53   This variable can be changed to modify the executable used for the Fortran
54   Language Server.
55
56                                *ale-options.fortran_language_server_use_global*
57                                      *g:ale_fortran_language_server_use_global*
58                                      *b:ale_fortran_language_server_use_global*
59 fortran_language_server_use_global
60 g:ale_fortran_language_server_use_global
61   Type: |Number|
62   Default: `get(g:, 'ale_use_global_executables', 0)`
63
64   See |ale-integrations-local-executables|
65
66
67 ===============================================================================
68   vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: