summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/README.md b/README.md
index 277d8ee1..84439b71 100644
--- a/README.md
+++ b/README.md
@@ -168,6 +168,13 @@ other plugins, and can be enabled by changing a setting before ALE is loaded.
let g:ale_completion_enabled = 1
```
+ALE provides an omni-completion function you can use for triggering
+completion manually with `<C-x><C-o>`.
+
+```vim
+set omnifunc=ale#completion#OmniFunc
+```
+
See `:help ale-completion` for more information.
<a name="usage-go-to-definition"></a>