diff options
Diffstat (limited to 'autoload/deoplete/init.vim')
-rw-r--r-- | autoload/deoplete/init.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/deoplete/init.vim b/autoload/deoplete/init.vim index 95bbed5..cea4e8f 100644 --- a/autoload/deoplete/init.vim +++ b/autoload/deoplete/init.vim @@ -38,7 +38,7 @@ function! deoplete#init#_channel() abort return 1 endif - let python3 = get(g:, 'python3_host_prog', 'python3') + let python3 = expand(get(g:, 'python3_host_prog', 'python3')) if !executable(python3) call deoplete#util#print_error( \ string(python3) . ' is not executable.') |