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 "