maralla / completor.vim

Async completion framework made ease.
MIT License
1.32k stars 62 forks source link

Auto trigger not triggered after backspace #99

Open cornop opened 7 years ago

cornop commented 7 years ago

Example:

  1. Type import (with a trailing space). It'll show the list of all modules
  2. Type a. It'll show all modules starting with a
  3. Type backspace. Expect same state as in 1., but nothing is shown

Using the following options:

let g:completor_python_omni_trigger = '.*'
let g:completor_min_chars = 1
cornop commented 7 years ago

@maralla Judging by https://github.com/maralla/completor.vim/blob/master/autoload/completor.vim#L115 this seems to be intentional. Is this something that can safely be removed? Maybe with a configuration option?