Use single quotes

This commit is contained in:
Shougo Matsushita 2015-06-21 17:08:15 +09:00
parent 2dc82874df
commit 2473b8fc93
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ class Source(Base):
self.mark = '[nsnip]'
def gather_candidates(self, vim, context):
return vim.eval("values(neosnippet#helpers#get_snippets())")
return vim.eval('values(neosnippet#helpers#get_snippets())')
def on_post_filter(self, vim, context):
for candidate in context['candidates']: