Add kp19pp snippet.

This commit is contained in:
ujihisa 2013-04-01 20:18:14 -07:00
parent f25adadc50
commit 4f32b4f856
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
snippet token_desc
options head
<token_desc> token{
${0:TARGET}
}
snippet left
options head
<left>{
${0:TARGET}
}
snippet grammar
options head
<grammar> grammar{
E<${1}>
: [${2}] ${3}
;
}
# vim: noexpandtab :