+snippets

This commit is contained in:
oreodave
2019-11-25 14:23:50 +00:00
parent e3034c639b
commit 0ffa96870f
11 changed files with 72 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# name: public void Method { ... }
# key: method
# --
${1:public} ${2:void} ${3:Method}(${4:int x})
{
${0:return x;}
}