summaryrefslogtreecommitdiff
path: root/doc/ale.txt
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2019-03-08 21:32:05 +0000
committerw0rp <devw0rp@gmail.com>2019-03-08 21:32:05 +0000
commit413529f603547bad184358db06f8388047a5c9aa (patch)
treec31cdb07b568077bcbc11c8c7fad81d2699a60db /doc/ale.txt
parentbe2c0c3af5e9685b3e1235fa062cb148d740e830 (diff)
downloadale-413529f603547bad184358db06f8388047a5c9aa.zip
Fix #2326 - ALEComplete no longer replaces completeopt
Diffstat (limited to 'doc/ale.txt')
-rw-r--r--doc/ale.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/ale.txt b/doc/ale.txt
index 44ddb2e2..33d462c8 100644
--- a/doc/ale.txt
+++ b/doc/ale.txt
@@ -699,13 +699,13 @@ with |g:ale_completion_excluded_words| or |b:ale_completion_excluded_words|.
The |ALEComplete| command can be used to show completion suggestions manually,
even when |g:ale_completion_enabled| is set to `0`.
- *ale-completion-completopt-bug*
+ *ale-completion-completeopt-bug*
-ALE implements completion as you type by temporarily adjusting |completeopt|
-before opening the omnicomplete menu with <C-x><C-o>. In some versions of Vim,
-the value set for the option will not be respected. If you experience issues
-with Vim automatically inserting text while you type, set the following option
-in vimrc, and your issues should go away. >
+Automatic completion replaces |completeopt| before opening the omnicomplete
+menu with <C-x><C-o>. In some versions of Vim, the value set for the option
+will not be respected. If you experience issues with Vim automatically
+inserting text while you type, set the following option in vimrc, and your
+issues should go away. >
set completeopt=menu,menuone,preview,noselect,noinsert
<