Files
emacs/lisp/yasnippet-snippets/snippets/php-mode/enum
Daniel Weschke 82f05baffe pkg update and first config fix
org-brain not working, add org-roam
2022-12-19 23:02:34 +01:00

12 lines
201 B
Plaintext

# -*- mode: snippet -*-
# contributor: takeo obara<bararararatty@gmail.com>
# name: enum
# key: enum
# group : definitions
# --
enum ${1:Name}${2:: type} {
case: ${3:One};
case: ${4:Two};
$0
}