From 2aa9304076078eb7c44bdb58cf1570ffdac28004 Mon Sep 17 00:00:00 2001 From: Jeff Widman Date: Thu, 7 Dec 2017 13:56:10 -0800 Subject: [PATCH] Add `pudb` set trace statement to snippets --- snippets/python.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/snippets/python.json b/snippets/python.json index a2ba028d931d..778eea714ebc 100644 --- a/snippets/python.json +++ b/snippets/python.json @@ -237,5 +237,10 @@ "prefix": "pdb", "body": "import pdb; pdb.set_trace()", "description": "Code snippet for pdb debug" - } + }, + "pudb": { + "prefix": "pudb", + "body": "import pudb; pudb.set_trace()", + "description": "Code snippet for pudb debug" + }, }