diff options
author | Shougo Matsushita <Shougo.Matsu@gmail.com> | 2017-04-13 08:35:47 +0900 |
---|---|---|
committer | Shougo Matsushita <Shougo.Matsu@gmail.com> | 2017-04-13 08:35:47 +0900 |
commit | 753fb35a5308ef07b961749ae8cbab5ba1c08a90 (patch) | |
tree | 37eb9278dd0b213a1032c2895d2a12b61b9e278f /rplugin/python3 | |
parent | 6600236376f63dd203b52886ad94bc90ed2dce60 (diff) | |
download | deoplete.nvim-753fb35a5308ef07b961749ae8cbab5ba1c08a90.zip |
Fix #465 cache problem
Diffstat (limited to 'rplugin/python3')
-rw-r--r-- | rplugin/python3/deoplete/deoplete.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rplugin/python3/deoplete/deoplete.py b/rplugin/python3/deoplete/deoplete.py index 2abcb1c..1555a4c 100644 --- a/rplugin/python3/deoplete/deoplete.py +++ b/rplugin/python3/deoplete/deoplete.py @@ -103,6 +103,7 @@ class Deoplete(logger.LoggingMixin): self.use_previous_result( context, self._prev_results[source.name])): results.append(self._prev_results[source.name]) + continue ctx['max_abbr_width'] = min(source.max_abbr_width, ctx['max_abbr_width']) |