diff options
author | hy2k <17329720+hy2k@users.noreply.github.com> | 2019-06-04 22:35:29 +0900 |
---|---|---|
committer | hy2k <17329720+hy2k@users.noreply.github.com> | 2019-06-04 22:35:29 +0900 |
commit | bb7481effbdf0c8976c818acebde4ef2cd80d3c6 (patch) | |
tree | acb4b3f1f221ee1cc3d3be983e6f6d509c6013a3 /README.md | |
parent | eb6015c6fd43d1630046556b2598e8c52c203e6a (diff) | |
download | ale-bb7481effbdf0c8976c818acebde4ef2cd80d3c6.zip |
Update README deoplete completion source section
Diffstat (limited to 'README.md')
-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 |