summaryrefslogtreecommitdiff
path: root/doc/ale-go.txt
diff options
context:
space:
mode:
authorpigfrown <pigfrown@protonmail.com>2021-08-09 02:13:43 +0100
committerGitHub <noreply@github.com>2021-08-09 10:13:43 +0900
commit836125391a75094e4c7e157664bb00ffb86a8b37 (patch)
treefd0f7e13ffcfd8710a12fe0e498b97a1f24d6ad9 /doc/ale-go.txt
parentd6f5fb69ad49ad8377fafb2fdfe80819d39f5f01 (diff)
downloadale-836125391a75094e4c7e157664bb00ffb86a8b37.zip
Adds fixer for golines (#3862)
* Adds fixer for golines * Repositions golines docs to be in alphabetical order * Fixes golines doc tag * Fixes formatting for golines docs
Diffstat (limited to 'doc/ale-go.txt')
-rw-r--r--doc/ale-go.txt17
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/ale-go.txt b/doc/ale-go.txt
index 7813c7b3..2f1e4c1c 100644
--- a/doc/ale-go.txt
+++ b/doc/ale-go.txt
@@ -133,6 +133,23 @@ g:ale_go_langserver_options *g:ale_go_langserver_options*
`-gocodecompletion` option is ignored because it is handled automatically
by the |g:ale_completion_enabled| variable.
+===============================================================================
+golines *ale-go-golines*
+
+g:ale_go_golines_executable *g:ale_go_lines_executable*
+ *b:ale_go_lines_executable*
+ Type: |String|
+ Default: `'golines'`
+
+ Location of the golines binary file
+
+g:ale_go_golines_options *g:ale_go_golines_options*
+ *b:ale_go_golines_options*
+ Type: |String|
+ Default: ''
+
+ Additional options passed to the golines command. By default golines has
+ --max-length=100 (lines above 100 characters will be wrapped)
===============================================================================
golint *ale-go-golint*