From c8ac5496ca40a67a5a5fddc7ac4314a4b3f48312 Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Sun, 17 Mar 2019 14:56:25 +0000 Subject: [PATCH] Add Python raw string snippet --- UltiSnips/python.snippets | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/UltiSnips/python.snippets b/UltiSnips/python.snippets index 28bd48a..1ab7208 100644 --- a/UltiSnips/python.snippets +++ b/UltiSnips/python.snippets @@ -22,3 +22,7 @@ endsnippet snippet debug "Set ipdb breakpoint" import ipdb; ipdb.set_trace() endsnippet + +snippet ''' "Triple quote string" i +'''$1'''$0 +endsnippet