Created
July 5, 2018 15:11
-
-
Save ssaunier/5d8231b38a5e0cb63acad2eea7ebf64b to your computer and use it in GitHub Desktop.
Python debugger snippet for Sublime Text
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<snippet> | |
<content><![CDATA[import pdb; pdb.set_trace()]]></content> | |
<tabTrigger>pdb</tabTrigger> | |
<scope>source.python</scope> | |
<description>import pdb</description> | |
</snippet> | |
<!-- USAGE --> | |
<!-- 1. Go to Tools -> New Snippet --> | |
<!-- 2. Copy/Paste this entire file --> | |
<!-- 3. Hit save --> | |
<!-- 4. Name it importpdb.sublime-snippet --> | |
<!-- 5. Save it under packages/user/ in sublime folder --> | |
<!-- Type `pdb` to use the snippet! --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you!!