Move of Snippets into repository

This commit is contained in:
2023-07-31 17:42:59 +02:00
parent a7cf65baf4
commit a323c503b5
18 changed files with 2298 additions and 6 deletions

18
UltiSnips/make.snippets Normal file
View File

@@ -0,0 +1,18 @@
snippet javabuild "Build rules for Java" A
build:
javac $(CLASS)
run:
java $(CLASS)
.PHONY: build run
endsnippet
snippet "__(\w+) " "This is a variable!" irA
\$(`!p snip.rv = match.group(1)`) $0
endsnippet
snippet rule "Add new Rule"
${1:all}: $2
$0
endsnippet