Shougo
Shougo
Completor requires vim compiled with python or python3 and has features `job`, `timers` and `lambda`
Please execute `:echo Check()` ```vim function! Check() return ((has('python') || has('python3')) \ && has('job') && has('timers') && has('lambda')) || has('nvim') endfunction ```
Completor requires vim compiled with python or python3 and has features `job`, `timers` and `lambda`
I don't know why it does not work...
Completor requires vim compiled with python or python3 and has features `job`, `timers` and `lambda`
You can add `:echomsg s:has_features()` in L15. https://github.com/maralla/completor.vim/blob/master/plugin/completor.vim#L15
https://github.com/maralla/completor.vim/blob/master/plugin/completor.vim#L12 It must be: ```vim return (has('python3') || has('python')) && \ (has('job') && has('timers') || has('nvim')) && \ has('lambda') ``` If `has('python')` is called before `has('python3')`, the problem is occurred.
You can send the PR instead.
It is UltiSnips feature. Not nvim-completion-manager issue.
longest does not match for auto completion plugin. Because "longest" behavior changes your input. I don't know the auto completion plugin which allows longest.
> Also, it would be nice for NCM to behave like this: if nothing is selected in the autocompletion popup and I press ``, it should close the popup and...
> Is it possible to make the completion popup window only show up after I type letters, dot or colon? Thanks! I have read the implementation and it is already...
> @Shougo the problem is this: I want autocompletion popup only when I'm typing something, not when I'm moving cursor around. Also, when the popup is visible, I want arrows...