maralla / completor.vim

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

since recently: automatic completion, not only suggestion #133

Closed thet closed 7 years ago

thet commented 7 years ago

since recently completor completes words i write automatically. e.g. in python, if i type impo it automatically expands it to import. I'd prefer manual selection of a suggested completion-word.

But not only that, if I type te in vim script, completor offers me text, textwidth but also deletes the te I've written in the vimscript buffer.

temporarily I fixed this with:

let g:completor_auto_trigger = 0
maralla commented 7 years ago

This commit 2f73dfe will fix the problem. Please update.

thet commented 7 years ago

Thanks, works!