From 6f653e8ad902c0a2760cf883302e6d0776df6d0b Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Sun, 14 Jul 2019 21:14:43 +0100 Subject: [PATCH] Add C comment block snippet --- UltiSnips/c.snippets | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/UltiSnips/c.snippets b/UltiSnips/c.snippets index 6bef50a..462fc84 100644 --- a/UltiSnips/c.snippets +++ b/UltiSnips/c.snippets @@ -11,6 +11,11 @@ def complete(t, opts): return '(' + '|'.join(opts) + ')' endglobal +snippet /* "comment block" +/* $0 + */ +endsnippet + snippet sizeof "sizeof" i sizeof($1)$0 endsnippet