merging vim folders

This commit is contained in:
Debucquoy
2023-11-02 10:11:39 +01:00
parent 4234763787
commit 7f78647c46
8 changed files with 58 additions and 0 deletions

View File

@ -1,4 +1,8 @@
snippet pline "print a line" i
printf("----------------------------------------\n");
endsnippet
snippet dpvi "Define printvi for printing variable int" b
#define printvi(X) printf("%s = %d\n", #X, X);
endsnippet