diff options
author | Shougo Matsushita <Shougo.Matsu@gmail.com> | 2016-02-20 10:29:19 +0900 |
---|---|---|
committer | Shougo Matsushita <Shougo.Matsu@gmail.com> | 2016-02-20 10:29:19 +0900 |
commit | 3f3210e57a7ddeb39499b18e6552a85579f22e45 (patch) | |
tree | 3ea827757c45b4122d4dcdd82c482a06734ca46d /doc | |
parent | 7d25e922c3c9e4ce28860fefd32a7404e5482a74 (diff) | |
download | deoplete.nvim-3f3210e57a7ddeb39499b18e6552a85579f22e45.zip |
Add FAQ section
Diffstat (limited to 'doc')
-rw-r--r-- | doc/deoplete.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/deoplete.txt b/doc/deoplete.txt index c4f0eed..0db3825 100644 --- a/doc/deoplete.txt +++ b/doc/deoplete.txt @@ -903,5 +903,16 @@ A: You must install context_filetype plugin. https://github.com/Shougo/context_filetype.vim And you must set |g:context_filetype#same_filetypes| variable. +Q: I want to close the preview window after completion is done. + +A: > + autocmd CompleteDone * pclose! + +Q: I want to see the typed word in the completion menu. + +A: You should remove |deoplete-filter-matcher_length| from the matchers. +> + call deoplete#custom#set('_', 'matchers', ['matcher_fuzzy']) +< ============================================================================== vim:tw=78:ts=8:ft=help:norl:noet:fen:noet: |