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

Eval​Printer

by philippotto ALL

Transpiles, evaluates and prints code. Provides immediate feedback for code execution within Sublime Text.

Details

Installs

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

Readme

Source
raw.​githubusercontent.​com

Sublime-EvalPrinter Build Status

EvalPrinter is a Sublime Text 2/3 Plugin which transpiles, evaluates and prints code. This allows rapid testing of code snippets without leaving your code editor. To see which languages are supported, see the appropriate section.

Motivation

You are writing some code and you are unsure if it does what you want? Is JavaScript's second parameter for String.prototype.slice the index of the last character? Or is it the amount of characters to slice? Does Python's reverse-method for lists return a reversed copy or does it modify the instance? Do you need these braces in your CoffeeScript code or are they optional?

Don't look this up in the documention! Don't open a shell, in which you replicate the code you already wrote! Stay in Sublime and just evaluate/transpile your code. With EvalPrinter.

Unlike a REPL, EvalPrinter does not only work with simple expressions but with entire blocks of code. Because you don't have to switch to another program, context switches are reduced und Sublime's usual text editing capabilities can be used, as well.

Additionally, the live session mode provides true immediate feedback which is completely missing in a REPL. The same applies for showing the results of transpilation processes.

Features

You can trigger the eval_print command to transpile/evaluate the current selection (or the current line if nothing is selected). The default keybinding is Shift + Alt + Enter. By default, the output will yield the result of the last expression. Additional output can be achieved via the standard logging methods of the current programming language (e.g. console.log in JavaScript and print in Python).

Another possibility is to enter a “live session”, in which the code will be transpiled/evaluated after each keystroke. The immediate feedback makes it especially useful for tweaking code until it's perfect. The command is called eval_print_enter_live_session and the default keybinding is Ctrl/Cmd + Shift + Alt + Enter. Invoke it again to exit the mode.

For languages which will be transpiled (e.g. CoffeeScript), the output will also include the result of the transpilation process:

Supported languages

Currently, the following languages are supported:

  • JavaScript
  • CoffeeScript
  • Python

Feel free to open issues or submit pull requests to add support for other languages.

Installation

Either use Package Control and search for EvalPrinter or clone this repository into Sublime Text “Packages” directory.

License

MIT © Philipp Otto 2014