From fead622ed03d9d84487f5cc51a7f7dac4f35424f Mon Sep 17 00:00:00 2001 From: Shougo Matsushita Date: Fri, 23 Oct 2015 10:59:19 +0900 Subject: [PATCH] Improve indent a bit --- rplugin/python3/deoplete/sources/neosnippet.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rplugin/python3/deoplete/sources/neosnippet.py b/rplugin/python3/deoplete/sources/neosnippet.py index c86be24..323f16a 100644 --- a/rplugin/python3/deoplete/sources/neosnippet.py +++ b/rplugin/python3/deoplete/sources/neosnippet.py @@ -35,7 +35,8 @@ class Source(Base): self.rank = 200 def gather_candidates(self, context): - return self.vim.eval('values(neosnippet#helpers#get_completion_snippets())') + return self.vim.eval( + 'values(neosnippet#helpers#get_completion_snippets())') def on_post_filter(self, context): for candidate in context['candidates']: