0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

patch 7.4.2188

Problem:    Completion does not work properly with some plugins.
Solution:   Revert the part related to typing CTRL-E. (closes #972)
This commit is contained in:
Bram Moolenaar
2016-08-09 21:51:40 +02:00
parent 7547a78446
commit c9fb77c692
3 changed files with 9 additions and 6 deletions

View File

@@ -3893,7 +3893,7 @@ ins_compl_prep(int c)
/* CTRL-E means completion is Ended, go back to the typed text.
* but only do this, if the Popup is still visible */
if (c == Ctrl_E && pum_visible())
if (c == Ctrl_E)
{
ins_compl_delete();
if (compl_leader != NULL)