1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 06:40:05 +08:00
SpaceVim/bundle/deoplete-dictionary
2020-06-13 14:06:35 +08:00
..
rplugin/python3/deoplete/source Add bundle dir (#3542) 2020-06-13 14:06:35 +08:00
LICENSE Add bundle dir (#3542) 2020-06-13 14:06:35 +08:00
README.md Add bundle dir (#3542) 2020-06-13 14:06:35 +08:00

deoplete-dictionary

deoplete source for dictionary

Description

This source collects "keyword_patterns" keywords from 'dictionary'.

Note: It uses buffer-local 'dictionary' set up.

Note: It also supports directory.

rank: 100

Configuration examples

" Sample configuration for dictionary source with multiple
" dictionary files.
setlocal dictionary+=/usr/share/dict/words
setlocal dictionary+=/usr/share/dict/american-english
" Remove this if you'd like to use fuzzy search
call deoplete#custom#source(
\ 'dictionary', 'matchers', ['matcher_head'])
" If dictionary is already sorted, no need to sort it again.
call deoplete#custom#source(
\ 'dictionary', 'sorters', [])
" Do not complete too short words
call deoplete#custom#source(
\ 'dictionary', 'min_pattern_length', 4)