summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2019-05-17 00:57:52 +0100
committerw0rp <devw0rp@gmail.com>2019-05-17 00:57:52 +0100
commite5ea809094fd1d521ac88516f5b4b6870e656f3a (patch)
tree942fcf578f129ca4801757fcd82f211751d159c0 /README.md
parent8cb6d043b4b2052ad6e5973b2a5804791511fed4 (diff)
downloadale-e5ea809094fd1d521ac88516f5b4b6870e656f3a.zip
Close #2285 - Add a function for use with omnifunc
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>