Skip to content

Commit

Permalink
remove asyncomplete-file due to bug
Browse files Browse the repository at this point in the history
  • Loading branch information
habamax committed Jan 28, 2020
1 parent f32dc82 commit 99caa1f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
13 changes: 7 additions & 6 deletions after/plugin/init.vim
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,13 @@ if exists("g:asyncomplete_loaded") " {{{1
inoremap <expr> <CR> pumvisible() ? asyncomplete#close_popup() . "\<CR>" : "\<CR>"
endif

au User asyncomplete_setup call asyncomplete#register_source(asyncomplete#sources#file#get_source_options({
\ 'name': 'file',
\ 'whitelist': ['*'],
\ 'priority': 10,
\ 'completor': function('asyncomplete#sources#file#completor')
\ }))
" buggy. See https://github.com/prabirshrestha/asyncomplete-file.vim/issues/4
" au User asyncomplete_setup call asyncomplete#register_source(asyncomplete#sources#file#get_source_options({
" \ 'name': 'file',
" \ 'whitelist': ['*'],
" \ 'priority': 10,
" \ 'completor': function('asyncomplete#sources#file#completor')
" \ }))
endif


Expand Down
3 changes: 2 additions & 1 deletion plugins.vim
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,8 @@ if exists('*minpac#init')
" git clone https://github.com/habamax/asyncomplete.vim $HOME/vimfiles/pack/habamax/start/asyncomplete.vim
" call minpac#add('prabirshrestha/asyncomplete.vim')
call minpac#add('prabirshrestha/asyncomplete-lsp.vim')
call minpac#add('prabirshrestha/asyncomplete-file.vim')
" hangs... see https://github.com/prabirshrestha/asyncomplete-file.vim/issues/4
" call minpac#add('prabirshrestha/asyncomplete-file.vim')


"" Snippets
Expand Down

0 comments on commit 99caa1f

Please sign in to comment.