Joel Holder

Math, coding, philosophy, art, and other things that interest me

View on GitHub
30 August 2013

Dev flow with integrated SublimeREPL

by Joel Holder

Here is a short screencast that I made to demonstrate what I believe are some of the more useful features and techniques of working in Sublime Text 2 and the python repl.  Specifically, I wanted to show others who might need the dots connected to understand just what the intended usage flow of SublimeRepl is.

The following is covered:

KEYMAPPING CODE

{ "keys": ["f8"],
  "command": "repl_open",
  "caption": "Python",
  "mnemonic": "p",
  "args": {
              "type": "subprocess",
              "encoding": "utf8",
              "cmd": ["python", "-i", "-u", "$file"],
              "cwd": "$file_path",
              "syntax": "Packages/Python/Python.tmLanguage",
              "external_id": "python"
           }
}

debugging in two row layout
debugging in two row layout

Namaste…

tags: Python - REPL - Sublime Text 2 - SublimeREPL