mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-13 21:13:04 +00:00
8 lines
199 B
Plaintext
8 lines
199 B
Plaintext
# -*- mode: snippet -*-
|
|
# key: def
|
|
# contributor: Translated from TextMate Snippet
|
|
# name: #ifndef … #define … #endif
|
|
# --
|
|
#ifndef ${1/([A-Za-z0-9_]+).*/$1/}
|
|
#define ${1:SYMBOL} ${2:value}
|
|
#endif |