diff --git a/.gitignore b/.gitignore
index 3bb2efd72b8d2493e8f648ca9c1035d769b31c05..cd16f5db0786095e426574dca665f3cb1340b00c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
 .*.swp
 *.pyc
+/doc/tags
diff --git a/UltiSnips/cobol.snippets b/UltiSnips/cobol.snippets
new file mode 100644
index 0000000000000000000000000000000000000000..08c5ebbb0adfb596338a2ac36b1c0c43ed972a0d
--- /dev/null
+++ b/UltiSnips/cobol.snippets
@@ -0,0 +1,10 @@
+###########################################################################
+#                            TextMate Snippets                            #
+###########################################################################
+
+snippet unt "PERFORM ... UNTIL ..."
+PERFORM $1
+	UNTIL $2
+endsnippet
+
+# vim:ft=snippets: