diff options
author | w0rp <w0rp@users.noreply.github.com> | 2019-06-04 16:18:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-04 16:18:43 +0100 |
commit | 42a1fc2d29d710687504043dbb746eefb8248781 (patch) | |
tree | acb4b3f1f221ee1cc3d3be983e6f6d509c6013a3 | |
parent | eb6015c6fd43d1630046556b2598e8c52c203e6a (diff) | |
parent | bb7481effbdf0c8976c818acebde4ef2cd80d3c6 (diff) | |
download | ale-42a1fc2d29d710687504043dbb746eefb8248781.zip |
Merge pull request #2557 from hy2k/update-doc
Change ALE integration with Deoplete in README
-rw-r--r-- | README.md | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -165,7 +165,9 @@ the source of completion information, or mix it with other sources. ```vim " Use ALE and also some plugin 'foobar' as completion sources for all code. -let g:deoplete#sources = {'_': ['ale', 'foobar']} +call deoplete#custom#option('sources', { +\ '_': ['ale', 'foobar'], +\}) ``` ALE also offers its own automatic completion support, which does not require any |