Auto merge of #2733 - micbou:insert-keys-typeahead-start, r=bstaletic

[READY] Insert keys at the start of the typeahead buffer

When sending keys to Vim through `feedkeys`, these keys are by default added to the end of the typeahead buffer. If there are already keys in the buffer, they will be processed first and may change the state that our keys combination was sent for. For instance, `<C-X><C-U><C-P>` may be sent in normal mode instead of insert mode (issue #2731) or `<C-e>` outside of completion mode (issue #2732). We avoid that by inserting the keys at the start of the typeahead buffer with the `i` option.

Fixes #2731.
Fixes #2732.

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/valloric/youcompleteme/2733)
<!-- Reviewable:end -->
This commit is contained in:
zzbot 2017-07-31 05:37:53 -07:00 committed by GitHub
commit 7ba7eefb19

View File

@ -533,10 +533,22 @@ function! s:PollFileParseResponse( ... )
endfunction endfunction
function! s:SendKeys( keys )
" By default keys are added to the end of the typeahead buffer. If there are
" already keys in the buffer, they will be processed first and may change the
" state that our keys combination was sent for (e.g. <C-X><C-U><C-P> in normal
" mode instead of insert mode or <C-e> outside of completion mode). We avoid
" that by inserting the keys at the start of the typeahead buffer with the 'i'
" option. Also, we don't want the keys to be remapped to something else so we
" add the 'n' option.
call feedkeys( a:keys, 'in' )
endfunction
function! s:OnInsertChar() function! s:OnInsertChar()
call timer_stop( s:pollers.completion.id ) call timer_stop( s:pollers.completion.id )
if pumvisible() if pumvisible()
call feedkeys( "\<C-e>", 'n' ) call s:SendKeys( "\<C-e>" )
endif endif
endfunction endfunction
@ -745,7 +757,7 @@ function! s:Complete()
" automatically replaces the current text with it. Calling <c-p> forces Vim to " automatically replaces the current text with it. Calling <c-p> forces Vim to
" deselect the first candidate and in turn preserve the user's current text " deselect the first candidate and in turn preserve the user's current text
" until he explicitly chooses to replace it with a completion. " until he explicitly chooses to replace it with a completion.
call feedkeys( "\<C-X>\<C-U>\<C-P>", 'n' ) call s:SendKeys( "\<C-X>\<C-U>\<C-P>" )
endfunction endfunction