Close #2285 - Add a function for use with omnifunc

This commit is contained in:
w0rp
2019-05-17 00:57:52 +01:00
parent 8cb6d043b4
commit e5ea809094
5 changed files with 135 additions and 9 deletions

View File

@@ -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>