2012-08-16 23:41:25 -04:00
|
|
|
###########################################################################
|
|
|
|
# TextMate Snippets #
|
|
|
|
###########################################################################
|
2013-04-13 13:45:21 -04:00
|
|
|
|
|
|
|
snippet def "#define ..."
|
|
|
|
#define ${1}
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
snippet ifndef "#ifndef ... #define ... #endif"
|
2012-08-16 23:41:25 -04:00
|
|
|
#ifndef ${1/([A-Za-z0-9_]+).*/$1/}
|
|
|
|
#define ${1:SYMBOL} ${2:value}
|
|
|
|
#endif
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
snippet #if "#if #endif" !b
|
|
|
|
#if ${1:0}
|
|
|
|
${VISUAL:code}$0
|
|
|
|
#endif
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
snippet inc "#include local header (inc)"
|
|
|
|
#include "${1:`!p snip.rv = snip.basename + '.h'`}"
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
snippet Inc "#include <> (Inc)"
|
|
|
|
#include <${1:.h}>
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
snippet mark "#pragma mark (mark)"
|
|
|
|
#if 0
|
|
|
|
${1:#pragma mark -
|
|
|
|
}#pragma mark $2
|
|
|
|
#endif
|
|
|
|
|
|
|
|
$0
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
snippet main "main() (main)"
|
|
|
|
int main(int argc, char const *argv[])
|
|
|
|
{
|
|
|
|
${0:/* code */}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
snippet for "for int loop (fori)"
|
|
|
|
for (${4:size_t} ${2:i} = 0; $2 < ${1:count}; ${3:++$2})
|
|
|
|
{
|
|
|
|
${0:/* code */}
|
|
|
|
}
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
snippet enum "Enumeration"
|
|
|
|
enum ${1:name} { $0 };
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
snippet once "Include header once only guard"
|
|
|
|
#ifndef ${1:`!p
|
|
|
|
if not snip.c:
|
|
|
|
import random, string
|
|
|
|
name = re.sub(r'[^A-Za-z0-9]+','_', snip.fn).upper()
|
|
|
|
rand = ''.join(random.sample(string.ascii_letters+string.digits, 8))
|
|
|
|
snip.rv = ('%s_%s' % (name,rand)).upper()
|
|
|
|
else:
|
|
|
|
snip.rv = snip.c`}
|
|
|
|
#define $1
|
|
|
|
|
|
|
|
${0}
|
|
|
|
|
|
|
|
#endif /* end of include guard: $1 */
|
|
|
|
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
snippet td "Typedef"
|
|
|
|
typedef ${1:int} ${2:MyCustomType};
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
snippet do "do...while loop (do)"
|
|
|
|
do {
|
|
|
|
${0:/* code */}
|
|
|
|
} while(${1:/* condition */});
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
snippet fprintf "fprintf ..."
|
|
|
|
fprintf(${1:stderr}, "${2:%s}\n"${2/([^%]|%%)*(%.)?.*/(?2:, :\);)/}$3${2/([^%]|%%)*(%.)?.*/(?2:\);)/}
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
snippet if "if .. (if)"
|
|
|
|
if (${1:/* condition */})
|
|
|
|
{
|
|
|
|
${0:/* code */}
|
|
|
|
}
|
|
|
|
endsnippet
|
|
|
|
|
2013-04-13 13:45:21 -04:00
|
|
|
snippet ife "if .. else (ife)"
|
|
|
|
if (${1:/* condition */})
|
|
|
|
{
|
|
|
|
${2:/* code */}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
${3:/* else */}
|
|
|
|
}
|
|
|
|
endsnippet
|
|
|
|
|
2012-08-16 23:41:25 -04:00
|
|
|
snippet printf "printf .. (printf)"
|
|
|
|
printf("${1:%s}\n"${1/([^%]|%%)*(%.)?.*/(?2:, :\);)/}$2${1/([^%]|%%)*(%.)?.*/(?2:\);)/}
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
snippet st "struct"
|
|
|
|
struct ${1:`!p snip.rv = (snip.basename or "name") + "_t"`}
|
|
|
|
{
|
|
|
|
${0:/* data */}
|
|
|
|
};
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
# vim:ft=snippets:
|