From 40288a2e91a0d413f97c8284a73e74166079c6dd Mon Sep 17 00:00:00 2001 From: Kyle Meyer Date: Sat, 12 May 2018 16:16:17 -0400 Subject: snippets: pdb-set-trace: Use ipdb --- snippets/python-mode/pdb-set-trace | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/python-mode/pdb-set-trace b/snippets/python-mode/pdb-set-trace index c4cb5de..95e2dd7 100644 --- a/snippets/python-mode/pdb-set-trace +++ b/snippets/python-mode/pdb-set-trace @@ -1,4 +1,4 @@ # -*- mode: snippet -*- # key: pst # -- -import pdb; pdb.set_trace()$0 \ No newline at end of file +import ipdb as pdb; pdb.set_trace()$0 \ No newline at end of file -- cgit v1.2.3