Files
dotfiles/.emacs.snippets/c++-mode/once
Fabio Scotto di Santolo 3a59d8b46a Personalizzazioni per emacs
2019-12-07 12:02:37 +01:00

10 lines
217 B
Plaintext

# -*- mode: snippet -*-
# name: #ifndef XXX; #define XXX; #endif
# key: once
# --
#ifndef ${1:`(upcase (replace-regexp-in-string "\\." "_" (file-name-nondirectory (buffer-file-name))))`_}
#define $1
$0
#endif // $1