mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-13 21:13:04 +00:00
6 lines
223 B
Plaintext
6 lines
223 B
Plaintext
# -*- mode: snippet -*-
|
|
# key: def
|
|
# name: #ifndef … #define … #endif
|
|
# --
|
|
${1:$(if (string= text "") "" (concat "#ifndef " text "\n"))}#define ${1:SYMBOL} ${2:value}${1:$(if (string= text "") "" (concat "\n#endif "))}
|