diff options
author | Chris <[email protected]> | 2020-03-31 16:14:42 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2020-03-31 16:14:42 -0400 |
commit | 9b9dfb9cc52f394466ca8c94aa88960ef09c77af (patch) | |
tree | b1ce10f67a06c8d71d8279df1a040ddd07968f63 /modules/deoplete.vim | |
parent | cc7de261235832ab16f89947e1901e85990490aa (diff) |
big update
Diffstat (limited to 'modules/deoplete.vim')
-rw-r--r-- | modules/deoplete.vim | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/modules/deoplete.vim b/modules/deoplete.vim index 7498329d..4023f5fc 100644 --- a/modules/deoplete.vim +++ b/modules/deoplete.vim @@ -26,9 +26,11 @@ inoremap <silent><expr><S-TAB> pumvisible() ? "\<C-p>" : "\<TAB>" inoremap <expr><BS> deoplete#smart_close_popup()."\<C-h>" -call deoplete#custom#option('sources', { - \ 'python': ['file', 'LanguageClient', 'neosnippet'], - \ }) +" Only get completion candidates from these +"call deoplete#custom#option('sources', { + "\ 'python': ['file', 'LanguageClient', 'neosnippet'], + "\ }) + " Sort matches alphabetically call deoplete#custom#source('_', 'sorters', ['sorter_word']) " Disable shorter or equal length matches |