Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deprecated settings in deoplete plugin #5

Open
chanwutk opened this issue May 11, 2020 · 0 comments
Open

Deprecated settings in deoplete plugin #5

chanwutk opened this issue May 11, 2020 · 0 comments

Comments

@chanwutk
Copy link

Hi I forked your project and found that the following deoplete's settings in plugins.programming.vim are deprecated:

  " When a capital letter is included in input, does not ignore
  let g:deoplete#enable_smart_case=1
  " Set the number of the input completion at the time of key input
  let g:deoplete#auto_complete_start_length=2
  " Set the limit of candidates
  let g:deoplete#max_list=32

And, here is my solution:

  autocmd VimEnter * call deoplete#custom#option({
  \ 'smart_case': v:true,
  \ 'auto_complete_start_length': 2,
  \ 'max_list': 32,
  \ })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant