diff options
author | Shougo Matsushita <Shougo.Matsu@gmail.com> | 2016-06-17 07:42:15 +0900 |
---|---|---|
committer | Shougo Matsushita <Shougo.Matsu@gmail.com> | 2016-06-17 07:42:15 +0900 |
commit | 0b84100ae775a6a1d1436c81a71bbeaeba241ab6 (patch) | |
tree | 3e896a7945f8177d5bf3cb4493a67b87466ae958 /rplugin | |
parent | 54cd0d76162fa6c60a4f933387216ecc1369abf1 (diff) | |
download | deoplete.nvim-0b84100ae775a6a1d1436c81a71bbeaeba241ab6.zip |
Improve start completion
Diffstat (limited to 'rplugin')
-rw-r--r-- | rplugin/python3/deoplete/deoplete.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/rplugin/python3/deoplete/deoplete.py b/rplugin/python3/deoplete/deoplete.py index a32b511..9fec6be 100644 --- a/rplugin/python3/deoplete/deoplete.py +++ b/rplugin/python3/deoplete/deoplete.py @@ -63,9 +63,7 @@ class Deoplete(logger.LoggingMixin): 'event': context['event'], } - # Note: cannot use vim.feedkeys() - self.__vim.command( - 'call feedkeys("\<Plug>(deoplete_start_complete)")') + self.__vim.feedkeys(context['start_complete']) def gather_candidates(self, context): self.check_recache(context) |