From 10eb5c99c4ca47906268718de558ec117da42955 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Mon, 11 Aug 2014 13:32:47 -0300 Subject: [PATCH] added the comment tag, for django --- UltiSnips/jinja.snippets | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/UltiSnips/jinja.snippets b/UltiSnips/jinja.snippets index 6485178..032d318 100644 --- a/UltiSnips/jinja.snippets +++ b/UltiSnips/jinja.snippets @@ -31,3 +31,9 @@ snippet spaceless "Remove spaces (uses visual)" ${0:${VISUAL}} {% endspaceless %} endsnippet + +snippet comment "Make code a comment" +{% comment %} + ${0:${VISUAL}} +{% endcomment %} +endsnippet