diff options
author | Shougo Matsushita <Shougo.Matsu@gmail.com> | 2017-06-25 12:00:24 +0900 |
---|---|---|
committer | Shougo Matsushita <Shougo.Matsu@gmail.com> | 2017-06-25 12:00:24 +0900 |
commit | 7704e35133ee19b27aa83f290a7c3ef66c22b9ee (patch) | |
tree | 7f1336b7fb49d3d92d326fed7e50a13f8c23e387 | |
parent | 008a8a3dcbed386ee89235fc6b7b4fc4b3b310ba (diff) | |
download | deoplete.nvim-7704e35133ee19b27aa83f290a7c3ef66c22b9ee.zip |
Fix #500 add FAQ
-rw-r--r-- | doc/deoplete.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/deoplete.txt b/doc/deoplete.txt index 35f21a3..e28b674 100644 --- a/doc/deoplete.txt +++ b/doc/deoplete.txt @@ -1446,6 +1446,10 @@ Q: Neovim startup is slow when |g:deoplete#enable_at_startup| is enabled. A: If it is enabled, Neovim will enable and load deoplete in startup. It may be slow. You should use lazy load feature in plugin manager or use |:autocmd| to call |deoplete#enable()|. +> + " Enable deoplete when InsertEnter. + let g:deoplete#enable_at_startup = 0 + autocmd InsertEnter * call deoplete#enable() Q: I want to disable the preview window feature. https://github.com/Shougo/deoplete.nvim/issues/298 |