From 8e678bd9037f2ad6bfa50d5002f74ab33377d179 Mon Sep 17 00:00:00 2001 From: Matt Stevens Date: Wed, 3 Jul 2013 12:17:40 +0100 Subject: [PATCH] Add snippet for pudb in Python --- AUTHORS | 1 + snippets/python.snippets | 3 +++ 2 files changed, 4 insertions(+) diff --git a/AUTHORS b/AUTHORS index 1891f26..c5c68c6 100644 --- a/AUTHORS +++ b/AUTHORS @@ -39,6 +39,7 @@ Dmitry Dementev Travis Holton Chrisyue Erik Westrup +Matt Deacalion Stevens TODO: add contributors from github.com/SirVer/Ultisnip having contributed to github.com/SirVer/Ultisnip/UltiSnips/* files diff --git a/snippets/python.snippets b/snippets/python.snippets index 7007a99..e8dade2 100644 --- a/snippets/python.snippets +++ b/snippets/python.snippets @@ -131,6 +131,9 @@ snippet ipdb # ipython debugger (pdbbb) snippet pdbbb import pdbpp; pdbpp.set_trace() +# python console debugger (pudb) +snippet pudb + import pudb; pudb.set_trace() snippet pprint import pprint; pprint.pprint(${1})${2} snippet "