diff options
Diffstat (limited to 'rplugin')
-rw-r--r-- | rplugin/python3/deoplete/deoplete.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rplugin/python3/deoplete/deoplete.py b/rplugin/python3/deoplete/deoplete.py index 936117e..8327134 100644 --- a/rplugin/python3/deoplete/deoplete.py +++ b/rplugin/python3/deoplete/deoplete.py @@ -55,7 +55,8 @@ class Deoplete(logger.LoggingMixin): } self.__vim.feedkeys(context['start_complete']) - if self.__vim.call('has', 'patch-7.4.1758'): + if self.__vim.call( + 'has', 'patch-7.4.1758') and context['event'] != 'Manual': self.__vim.feedkeys('', 'x!') def gather_candidates(self, context): |