Changed ifndef snippet to #ifndef

This makes it consistent with the other C macro snippets
This commit is contained in:
Florian Sattler 2016-03-15 10:38:49 +01:00
parent f878039dd6
commit 979b9cd49d

View File

@ -8,7 +8,7 @@ snippet def "#define ..."
#define ${1}
endsnippet
snippet ifndef "#ifndef ... #define ... #endif"
snippet #ifndef "#ifndef ... #define ... #endif"
#ifndef ${1/([A-Za-z0-9_]+).*/$1/}
#define ${1:SYMBOL} ${2:value}
#endif /* ifndef $1 */