mirror of
https://github.com/cap153/nvim.git
synced 2026-02-22 21:05:54 +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
|