From c0503b0f001a3974e1322d33db69ca443c43cecc Mon Sep 17 00:00:00 2001 From: ujihisa Date: Sat, 22 Sep 2012 23:52:30 -0700 Subject: [PATCH] c.snip: trivial spacing fixes --- autoload/neocomplcache/sources/snippets_complete/c.snip | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autoload/neocomplcache/sources/snippets_complete/c.snip b/autoload/neocomplcache/sources/snippets_complete/c.snip index 1ee55d8..c3890c6 100644 --- a/autoload/neocomplcache/sources/snippets_complete/c.snip +++ b/autoload/neocomplcache/sources/snippets_complete/c.snip @@ -63,7 +63,7 @@ abbr struct {} # Typedef struct snippet struct_typedef - typedef struct ${1:name}{ + typedef struct ${1:name} { ${0:/* data */} }; @@ -112,7 +112,7 @@ abbr include-guard # Tertiary conditional snippet conditional - (${1:/* condition */})? ${2:a} : ${3:b} + (${1:/* condition */}) ? ${2:a} : ${3:b} # Typedef snippet typedef