From 4c6c3e5e68e3f08bd38bf619b9045af271c4a2bd Mon Sep 17 00:00:00 2001 From: jdhao Date: Mon, 16 Nov 2020 22:35:10 +0800 Subject: [PATCH] enable fuzzy completion for pyls --- core/plugins.vim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/plugins.vim b/core/plugins.vim index 6a94fe8..a7c13af 100644 --- a/core/plugins.vim +++ b/core/plugins.vim @@ -370,7 +370,7 @@ let g:lsp_diagnostics_float_delay = 100 " set up pyls for vim-lsp if executable('pyls') - " pip install python-language-server + " pip install python-language-server augroup pyls_setup autocmd! autocmd User lsp_setup call lsp#register_server({ @@ -383,6 +383,7 @@ if executable('pyls') \ 'plugins': {'flake8': {'enabled': v:true}, \ 'pyflakes': {'enabled': v:false}, \ 'pycodestyle': {'enabled': v:false}, + \ 'jedi_completion': {'fuzzy': v:true}, \ } \ } \ }})