summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorHoracio Sanson <hsanson@gmail.com>2022-03-05 04:05:41 +0900
committerGitHub <noreply@github.com>2022-03-04 19:05:41 +0000
commitc173b6243d4d4c9d9c772d6850450447eb478fe6 (patch)
tree4b273199352a65c6985a843738f7cfbecfb936a6 /README.md
parente490e87a60af7c5c630434aa7d980d01b4d03ecc (diff)
downloadale-c173b6243d4d4c9d9c772d6850450447eb478fe6.zip
Enable autoimport by default (#4102)
Diffstat (limited to 'README.md')
-rw-r--r--README.md9
1 files changed, 5 insertions, 4 deletions
diff --git a/README.md b/README.md
index 39fc5cd7..793148d7 100644
--- a/README.md
+++ b/README.md
@@ -198,14 +198,15 @@ completion manually with `<C-x><C-o>`.
set omnifunc=ale#completion#OmniFunc
```
-ALE supports automatic imports from external modules. This behavior is disabled
-by default and can be enabled by setting:
+ALE supports automatic imports from external modules. This behavior is enabled
+by default and can be disabled by setting:
```vim
-let g:ale_completion_autoimport = 1
+let g:ale_completion_autoimport = 0
```
-See `:help ale-completion` for more information.
+Note that disabling auto import can result in missing completion items from some
+LSP servers (e.g. eclipselsp). See `:help ale-completion` for more information.
<a name="usage-go-to-definition"></a>