Skip to content

Instantly share code, notes, and snippets.

@chenha0
Last active December 10, 2015 20:58
Show Gist options
  • Save chenha0/4491377 to your computer and use it in GitHub Desktop.
Save chenha0/4491377 to your computer and use it in GitHub Desktop.
c-style header file define guard snippet for sublime text 2. PS: $3 is nothing but a helper variable
<snippet>
<content><![CDATA[
#ifndef ${1:${3/.*/\U$&/}_}
#define $1
$2
#endif //${3:${TM_FILENAME/[\.\s\\\/()\[\]\{\}]+/_/g}}
]]></content>
<tabTrigger>defineguard</tabTrigger>
<scope>source.c++, source.c</scope>
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment