Fast Executor is a Sublime Text 3/4 plugin that allow you to fast prove your script, without distracting for selecting directory, filename, etc.
After executing, result from stdout is shown in output panel. If stderr is available, it
will be concatenated to output.
Currently supported next executors:
- Python3 (
python3) - TypeScript (
tsc) - JavaScript (
node)
Binaries expected to be presented in PATH. But you always can provide your full path.
- Clone this repository into your Sublime Text
Packagesdirectory. - Restart Sublime Text.
Use the Command Palette (Ctrl+Shift+P or Cmd+Shift+P) and search for "Fast Execute".
By default, there is keybinding ctr+shift+x for fast executing python script.
You can provide next arguments for command:
- suffix - used for saving file with provided extension (default
.py) - executor - program for call (default
python3) - options - additional options for passing to executor (default
null)
Example settings:
{
"keys": ["ctrl+shift+x"],
"command": "faxecutor",
"args" : {
"executor": "python",
"options": ["-v", "-b"]
}
}