]> git.madduck.net Git - etc/vim.git/blobdiff - .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:

Merge commit '76265755a1add77121c8f9dabb3e9bb70fe9a972' as '.vim/bundle/ale'
[etc/vim.git] / .vim / bundle / ale / doc / ale-fortran.txt
diff --git a/.vim/bundle/ale/doc/ale-fortran.txt b/.vim/bundle/ale/doc/ale-fortran.txt
new file mode 100644 (file)
index 0000000..9ef1f38
--- /dev/null
@@ -0,0 +1,68 @@
+===============================================================================
+ALE Fortran Integration                                   *ale-fortran-options*
+
+
+===============================================================================
+gcc                                                           *ale-fortran-gcc*
+
+                                           *ale-options.fortran_gcc_executable*
+                                                 *g:ale_fortran_gcc_executable*
+                                                 *b:ale_fortran_gcc_executable*
+fortran_gcc_executable
+g:ale_fortran_gcc_executable
+  Type: |String|
+  Default: `'gcc'`
+
+  This variable can be changed to modify the executable used for checking
+  Fortran code with GCC.
+
+                                              *ale-options.fortran_gcc_options*
+                                                    *g:ale_fortran_gcc_options*
+                                                    *b:ale_fortran_gcc_options*
+fortran_gcc_options
+g:ale_fortran_gcc_options
+  Type: |String|
+  Default: `'-Wall'`
+
+  This variable can be changed to modify flags given to gcc.
+
+                                        *ale-options.fortran_gcc_use_free_form*
+                                              *g:ale_fortran_gcc_use_free_form*
+                                              *b:ale_fortran_gcc_use_free_form*
+fortran_gcc_use_free_form
+g:ale_fortran_gcc_use_free_form
+  Type: |Number|
+  Default: `1`
+
+  When set to `1`, the `-ffree-form` flag will be used for GCC, to check files
+  with the free form layout. When set to `0`, `-ffixed-form` will be used
+  instead, for checking files with fixed form layouts.
+
+
+===============================================================================
+language_server                                   *ale-fortran-language-server*
+
+                               *ale-options.fortran_language_server_executable*
+                                     *g:ale_fortran_language_server_executable*
+                                     *b:ale_fortran_language_server_executable*
+fortran_language_server_executable
+g:ale_fortran_language_server_executable
+  Type: |String|
+  Default: `'fortls'`
+
+  This variable can be changed to modify the executable used for the Fortran
+  Language Server.
+
+                               *ale-options.fortran_language_server_use_global*
+                                     *g:ale_fortran_language_server_use_global*
+                                     *b:ale_fortran_language_server_use_global*
+fortran_language_server_use_global
+g:ale_fortran_language_server_use_global
+  Type: |Number|
+  Default: `get(g:, 'ale_use_global_executables', 0)`
+
+  See |ale-integrations-local-executables|
+
+
+===============================================================================
+  vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: