diff options
| author | Bram Moolenaar <Bram@vim.org> | 2016-08-09 21:51:40 +0200 |
|---|---|---|
| committer | Bram Moolenaar <Bram@vim.org> | 2016-08-09 21:51:40 +0200 |
| commit | c9fb77c69244870a97384152f20845665c19fe39 (patch) | |
| tree | fadb0ec7f1f39e7031b0c9808093a942b1fac26b /src/edit.c | |
| parent | 7547a78446c1a3c04b36c0533f0f046188bd378b (diff) | |
| download | vim-git-c9fb77c69244870a97384152f20845665c19fe39.tar.gz | |
patch 7.4.2188v7.4.2188
Problem: Completion does not work properly with some plugins.
Solution: Revert the part related to typing CTRL-E. (closes #972)
Diffstat (limited to 'src/edit.c')
| -rw-r--r-- | src/edit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/edit.c b/src/edit.c index 6dae4a01e..228123227 100644 --- a/src/edit.c +++ b/src/edit.c @@ -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) |
