mirror of
https://github.com/cap153/nvim.git
synced 2025-12-26 19:25:01 +08:00
13 lines
172 B
Text
13 lines
172 B
Text
snippet cm "Comment Section"
|
|
/* ${0} */
|
|
endsnippet
|
|
|
|
snippet st "printf"
|
|
printf(${0});
|
|
endsnippet
|
|
|
|
snippet inc "Includes"
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
endsnippet
|