Autosave in Markdown

This commit is contained in:
2024-03-06 08:33:12 +01:00
parent 77bba8c263
commit 1ceb2e0e4a
3 changed files with 18 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
snippet hello "Hello World"
snippet hello "Hello World"
Hallo
endsnippet
@@ -357,3 +357,13 @@ if ( fflush(stdout) ) {
exit(EXIT_FAILURE);
}
endsnippet
snippet switch "Classic C switch statement" b
switch(${1:Expression}) {
case $3:
$4
break;$5
default:
$2
}$0
endsnippet