From 9aa9ce6ea226c265e0875e82f2fdaa3a8753c013 Mon Sep 17 00:00:00 2001 From: Shougo Matsushita Date: Fri, 2 Nov 2012 17:58:54 +0900 Subject: [PATCH] - Fixed snippet error. --- autoload/neosnippet/snippets/python.snip | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/neosnippet/snippets/python.snip b/autoload/neosnippet/snippets/python.snip index b8dea2a..dc192fd 100644 --- a/autoload/neosnippet/snippets/python.snip +++ b/autoload/neosnippet/snippets/python.snip @@ -106,7 +106,7 @@ options head snippet with abbr with open({file}) as : options head - with open(${1:#:filename, mode}) as f + with open(${1:#:filename, mode}) as f: ${0:TARGET} snippet filter