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

View File

@@ -0,0 +1,42 @@
snippet link "Link to something"
[${1:${VISUAL:Text}}](${3:http://schnick.duckdns.org}})$0
endsnippet
snippet img "Image"
![${1:pic alt}](${2:path}${3/.+/ "/}${3:opt title}${3/.+/"/})$0
endsnippet
snippet cshell "shell Code"
\`\`\`shell
$1
\`\`\`
$0
endsnippet
snippet csql "SQL Code"
\`\`\`sql
$1
\`\`\`
$0
endsnippet
snippet cpython "python Code"
\`\`\`python
$1
\`\`\`
$0
endsnippet
snippet cobol "Cobol Code"
\`\`\`cobol
$1
\`\`\`
$0
endsnippet
snippet bash "bash Code"
\`\`\`bash
$1
\`\`\`
$0
endsnippet