From 4394084d998397f3cc2203eb82b72affa3481645 Mon Sep 17 00:00:00 2001 From: jhlink Date: Fri, 10 Jul 2020 17:54:27 -0400 Subject: doc: Add astyle entry to ALE c integration --- doc/ale-c.txt | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'doc') diff --git a/doc/ale-c.txt b/doc/ale-c.txt index c9eb79db..7a6e71ea 100644 --- a/doc/ale-c.txt +++ b/doc/ale-c.txt @@ -59,6 +59,18 @@ g:ale_c_parse_makefile *g:ale_c_parse_makefile* build flags to use for different files. + +=============================================================================== +astyle *ale-c-astyle* + +g:ale_c_astyle_executable *g:ale_c_astyle_executable* + *b:ale_c_astyle_executable* + Type: |String| + Default: `'astyle'` + + This variable can be changed to use a different executable for astyle. + + =============================================================================== clang *ale-c-clang* -- cgit debian/1.2.3+git2.25.1-1-2-gaceb0 From 8c0b9ecdfd8d91a76459e6dc7ccd0638f081a82f Mon Sep 17 00:00:00 2001 From: jhlink Date: Fri, 10 Jul 2020 17:56:02 -0400 Subject: doc: Add astyle to ale-c-options in ale-contents --- doc/ale.txt | 1 + 1 file changed, 1 insertion(+) (limited to 'doc') diff --git a/doc/ale.txt b/doc/ale.txt index 724da57e..d5799f02 100644 --- a/doc/ale.txt +++ b/doc/ale.txt @@ -2284,6 +2284,7 @@ documented in additional help files. bib.....................................|ale-bib-options| bibclean..............................|ale-bib-bibclean| c.......................................|ale-c-options| + astyle................................|ale-c-astyle| clang.................................|ale-c-clang| clangd................................|ale-c-clangd| clang-format..........................|ale-c-clangformat| -- cgit debian/1.2.3+git2.25.1-1-2-gaceb0 From 56b92544c2ec310165c9a6d504051a77042b1855 Mon Sep 17 00:00:00 2001 From: jhlink Date: Fri, 10 Jul 2020 18:16:12 -0400 Subject: doc: Add astyle to supported lang & tools --- doc/ale-supported-languages-and-tools.txt | 1 + 1 file changed, 1 insertion(+) (limited to 'doc') diff --git a/doc/ale-supported-languages-and-tools.txt b/doc/ale-supported-languages-and-tools.txt index 45252294..7babf590 100644 --- a/doc/ale-supported-languages-and-tools.txt +++ b/doc/ale-supported-languages-and-tools.txt @@ -44,6 +44,7 @@ Notes: * `shellcheck` * `shfmt` * C + * `astyle` * `ccls` * `clang` * `clangd` -- cgit debian/1.2.3+git2.25.1-1-2-gaceb0 From 57423f13ecf066b7bc184405193f8b33883385df Mon Sep 17 00:00:00 2001 From: jhlink Date: Fri, 10 Jul 2020 18:59:29 -0400 Subject: style: Adjust spacing --- doc/ale-c.txt | 1 - 1 file changed, 1 deletion(-) (limited to 'doc') diff --git a/doc/ale-c.txt b/doc/ale-c.txt index 7a6e71ea..1daf1256 100644 --- a/doc/ale-c.txt +++ b/doc/ale-c.txt @@ -59,7 +59,6 @@ g:ale_c_parse_makefile *g:ale_c_parse_makefile* build flags to use for different files. - =============================================================================== astyle *ale-c-astyle* -- cgit debian/1.2.3+git2.25.1-1-2-gaceb0 From 9fe208a01f4dfcbbbadaf484fe92029ea46cdea6 Mon Sep 17 00:00:00 2001 From: Luiz Gustavo Date: Sat, 25 Jul 2020 02:32:10 -0300 Subject: Update ale-java.txt --- doc/ale-java.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/ale-java.txt b/doc/ale-java.txt index 2e736d90..0debc1af 100644 --- a/doc/ale-java.txt +++ b/doc/ale-java.txt @@ -172,7 +172,7 @@ The javalsp linter automatically detects external depenencies for Maven and Gradle projects. In case the javalsp fails to detect some of them, you can specify them setting a dictionary to |g:ale_java_javalsp_config| variable. > - let g:ale_java_javalsp_executable = + let g:ale_java_javalsp_config = \ { \ 'java': { \ 'externalDependencies': [ -- cgit debian/1.2.3+git2.25.1-1-2-gaceb0 From a2d172c4572e7805c14d71eedaed4b681db84d80 Mon Sep 17 00:00:00 2001 From: jhlink Date: Sat, 25 Jul 2020 20:32:06 -0400 Subject: doc: Add astyle to ale-cpp --- doc/ale-cpp.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'doc') diff --git a/doc/ale-cpp.txt b/doc/ale-cpp.txt index ead3be28..ba7ea7fc 100644 --- a/doc/ale-cpp.txt +++ b/doc/ale-cpp.txt @@ -13,6 +13,17 @@ The following C options also apply to some C++ linters too. * |g:ale_c_parse_compile_commands| +=============================================================================== +astyle *ale-cpp-astyle* + +g:ale_cpp_astyle_executable *g:ale_cpp_astyle_executable* + *b:ale_cpp_astyle_executable* + Type: |String| + Default: `'astyle'` + + This variable can be changed to use a different executable for astyle. + + =============================================================================== clang *ale-cpp-clang* -- cgit debian/1.2.3+git2.25.1-1-2-gaceb0 From 9316b7b3f2468035b5bd92fb47cb8fc840b88333 Mon Sep 17 00:00:00 2001 From: jhlink Date: Sat, 25 Jul 2020 20:34:03 -0400 Subject: doc: Add astyle to c++ in supported lang & tools --- doc/ale-supported-languages-and-tools.txt | 1 + 1 file changed, 1 insertion(+) (limited to 'doc') diff --git a/doc/ale-supported-languages-and-tools.txt b/doc/ale-supported-languages-and-tools.txt index 7babf590..6e69b53b 100644 --- a/doc/ale-supported-languages-and-tools.txt +++ b/doc/ale-supported-languages-and-tools.txt @@ -62,6 +62,7 @@ Notes: * `mcsc`!! * `uncrustify` * C++ (filetype cpp) + * `astyle` * `ccls` * `clang` * `clangcheck`!! -- cgit debian/1.2.3+git2.25.1-1-2-gaceb0 From f26b2e7f011061ce08c659b3912f2025b804eb8b Mon Sep 17 00:00:00 2001 From: jhlink Date: Sat, 25 Jul 2020 20:37:19 -0400 Subject: doc: Add astyle to ale-cpp-options in ale.txt --- doc/ale.txt | 1 + 1 file changed, 1 insertion(+) (limited to 'doc') diff --git a/doc/ale.txt b/doc/ale.txt index d5799f02..a9b39034 100644 --- a/doc/ale.txt +++ b/doc/ale.txt @@ -2307,6 +2307,7 @@ documented in additional help files. cmakelint.............................|ale-cmake-cmakelint| cmake-format..........................|ale-cmake-cmakeformat| cpp.....................................|ale-cpp-options| + astyle................................|ale-cpp-astyle| clang.................................|ale-cpp-clang| clangd................................|ale-cpp-clangd| clangcheck............................|ale-cpp-clangcheck| -- cgit debian/1.2.3+git2.25.1-1-2-gaceb0 From c38b2a652489eec31dc6674e4c090364c3e437fa Mon Sep 17 00:00:00 2001 From: jhlink Date: Sun, 26 Jul 2020 21:21:38 -0400 Subject: doc: Add ale_c_astyle_options in ale-c --- doc/ale-c.txt | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'doc') diff --git a/doc/ale-c.txt b/doc/ale-c.txt index 1daf1256..599a726f 100644 --- a/doc/ale-c.txt +++ b/doc/ale-c.txt @@ -70,6 +70,19 @@ g:ale_c_astyle_executable *g:ale_c_astyle_executable* This variable can be changed to use a different executable for astyle. +g:ale_c_astyle_options *g:ale_c_astyle_options* + *b:ale_c_astyle_options* + Type: |String| + Default: `''` + + This variable can be changed to use an option file for project level + configurations. Provide only the filename of the option file that should be + present at the project's root directory. + + For example, if .astylrc is specified, the file is searched in the parent + directories of the source file's directory. + + =============================================================================== clang *ale-c-clang* -- cgit debian/1.2.3+git2.25.1-1-2-gaceb0 From 028485b4dee89d3a81a7b414d44b9864f7396cbb Mon Sep 17 00:00:00 2001 From: jhlink Date: Sun, 26 Jul 2020 21:22:17 -0400 Subject: doc: Add ale_cpp_astyle_options in ale-cpp --- doc/ale-cpp.txt | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'doc') diff --git a/doc/ale-cpp.txt b/doc/ale-cpp.txt index ba7ea7fc..206a1a87 100644 --- a/doc/ale-cpp.txt +++ b/doc/ale-cpp.txt @@ -24,6 +24,19 @@ g:ale_cpp_astyle_executable *g:ale_cpp_astyle_executable* This variable can be changed to use a different executable for astyle. +g:ale_cpp_astyle_options *g:ale_cpp_astyle_options* + *b:ale_cpp_astyle_options* + Type: |String| + Default: `''` + + This variable can be changed to use an option file for project level + configurations. Provide only the filename of the option file that should be + present at the project's root directory. + + For example, if .astylrc is specified, the file is searched in the parent + directories of the source file's directory. + + =============================================================================== clang *ale-cpp-clang* -- cgit debian/1.2.3+git2.25.1-1-2-gaceb0 From 5377272d2068b78f357795ebf1e0895cfbf0cfaf Mon Sep 17 00:00:00 2001 From: jhlink Date: Tue, 28 Jul 2020 19:48:27 -0400 Subject: fix: Change _options to _project_options --- doc/ale-c.txt | 8 ++++---- doc/ale-cpp.txt | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) (limited to 'doc') diff --git a/doc/ale-c.txt b/doc/ale-c.txt index 599a726f..efc26f93 100644 --- a/doc/ale-c.txt +++ b/doc/ale-c.txt @@ -70,17 +70,17 @@ g:ale_c_astyle_executable *g:ale_c_astyle_executable* This variable can be changed to use a different executable for astyle. -g:ale_c_astyle_options *g:ale_c_astyle_options* - *b:ale_c_astyle_options* +g:ale_c_astyle_project_options *g:ale_c_astyle_project_options* + *b:ale_c_astyle_project_options* Type: |String| Default: `''` This variable can be changed to use an option file for project level configurations. Provide only the filename of the option file that should be - present at the project's root directory. + present at the project's root directory. For example, if .astylrc is specified, the file is searched in the parent - directories of the source file's directory. + directories of the source file's directory. =============================================================================== diff --git a/doc/ale-cpp.txt b/doc/ale-cpp.txt index 206a1a87..fbe31370 100644 --- a/doc/ale-cpp.txt +++ b/doc/ale-cpp.txt @@ -24,17 +24,17 @@ g:ale_cpp_astyle_executable *g:ale_cpp_astyle_executable* This variable can be changed to use a different executable for astyle. -g:ale_cpp_astyle_options *g:ale_cpp_astyle_options* - *b:ale_cpp_astyle_options* +g:ale_cpp_astyle_project_options *g:ale_cpp_astyle_project_options* + *b:ale_cpp_astyle_project_options* Type: |String| Default: `''` This variable can be changed to use an option file for project level configurations. Provide only the filename of the option file that should be - present at the project's root directory. + present at the project's root directory. For example, if .astylrc is specified, the file is searched in the parent - directories of the source file's directory. + directories of the source file's directory. =============================================================================== -- cgit debian/1.2.3+git2.25.1-1-2-gaceb0 From 72f1d730fd3ff22eeddc952ddf7fe49095ea64f1 Mon Sep 17 00:00:00 2001 From: Josh Reichardt Date: Thu, 30 Jul 2020 09:00:20 -0500 Subject: Typo --- doc/ale-sh.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/ale-sh.txt b/doc/ale-sh.txt index 7897d0ce..c06f737a 100644 --- a/doc/ale-sh.txt +++ b/doc/ale-sh.txt @@ -22,7 +22,7 @@ g:ale_sh_bashate_options *g:ale_sh_bashate_options* example to ignore the indentation rule: > - let g:ale_sh_shellcheck_options = '-i E003' + let g:ale_sh_bashate_options = '-i E003' < =============================================================================== -- cgit debian/1.2.3+git2.25.1-1-2-gaceb0