summaryrefslogtreecommitdiffstats
path: root/.config/nvim/my_snippets/c.snippets
blob: 524b47f30d909b8d5ae76aa95725a54552e40177 (plain)
1
2
3
4
5
6
7
8
# vim:ft=snippets:
priority 100

snippet if "if only" b
if (${1:true}) {
	${0:{VISUAL}}
}
endsnippet