ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Python​Traceback

by kedder ALL

Easy navigation in your python tracebacks

Details

Installs

  • Total 11K
  • Win 6K
  • Mac 3K
  • Linux 3K
May 20 May 19 May 18 May 17 May 16 May 15 May 14 May 13 May 12 May 11 May 10 May 9 May 8 May 7 May 6 May 5 May 4 May 3 May 2 May 1 Apr 30 Apr 29 Apr 28 Apr 27 Apr 26 Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5
Windows 0 0 0 0 0 0 1 0 1 2 1 0 0 1 0 0 0 0 1 0 1 1 1 0 1 1 0 0 2 0 0 0 0 2 0 1 0 2 0 0 0 0 0 0 0 1
Mac 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0
Linux 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 2 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1

Readme

Source
raw.​githubusercontent.​com

PythonTraceback

PythonTraceback is a plug-in for Sublime Text, that allows easy navigation in your python tracebacks. Copy a traceback from your terminal to clipboard, switch to Sublime Text and press Ctrl+t, Ctrl+v. New scratch buffer will be opened with the traceback. Place the cursor on a line you want to navigate to and press Alt+d: file will be opened at the line, specified in traceback.

While traceback window is open (but not necessarily active), you can navigate up and down in traceback by pressing Alt-k and Alt-j respectively.

Pressing Ctrl+t, Ctrl+v again will replace traceback buffer with new traceback from the clipboard.

If you are working on a project, traceback lines, that match your project' files, will be specially marked by little dots in gutter to make it simple to spot “own” files.

PythonTraceback will try hard to find local file that matches one, specified in traceback, even if it does not exists directly. If at least partial path can be found in one of your project folders, PythonTraceback will open the file for you. This is very useful for analyzing tracebacks from remote machines, where application is located in different directory.

Defined commands

PythonTraceback defines the following commands:

Command Title Default Key Binding
traceback_paste Traceback: Paste Traceback Ctrl+t, Ctrl+v on PC or ⌘-t, ⌘+v on OSX
traceback_goto_line Traceback: Go To Line Alt+d
traceback_go_up Traceback: Go Up Alt+k
traceback_go_down Traceback: Go Down Alt+j

Installation

To install this plugin, you have two options:

  1. Package Control (recommended). If you have Sublime Package Control installed, simply search for PythonTraceback to install.

  2. Manual. Clone source code to Sublime Text Packages folder:

$ git clone https://github.com/kedder/sublime-python-traceback PythonTraceback