Executor
Run any executable from your working dir in Sublime Text
Details
Installs
- Total 21
- Win 0
- Mac 12
- Linux 9
Mar 22 | Mar 21 | Mar 20 | Mar 19 | Mar 18 | Mar 17 | Mar 16 | Mar 15 | Mar 14 | Mar 13 | Mar 12 | Mar 11 | Mar 10 | Mar 9 | Mar 8 | Mar 7 | Mar 6 | Mar 5 | Mar 4 | Mar 3 | Mar 2 | Mar 1 | Feb 28 | Feb 27 | Feb 26 | Feb 25 | Feb 24 | Feb 23 | Feb 22 | Feb 21 | Feb 20 | Feb 19 | Feb 18 | Feb 17 | Feb 16 | Feb 15 | Feb 14 | Feb 13 | Feb 12 | Feb 11 | Feb 10 | Feb 9 | Feb 8 | Feb 7 | Feb 6 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 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 |
Mac | 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 | 1 | 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 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Executor
Plugin that let you run any executable from your working dir inside Sublime Text.
Simple plugin that walks your current working directories, finds all files marked as executable and let you run them inside Sublime Text.
Gives you five basic commands:
- Executor: Execute (
executor_execute
) - Executor: Execute with Args (
executor_execute_with_args
) - Executor: Repeat Recent (
executor_repeat_recent
) - Executor: Repeat Last (
executor_repeat_last
) - Executor: Cancel (
executor_cancel
)
Uses output.exec
panel to stream both stdout and stderr.
Knows about .gitignore
enough to skip looking into ignored paths.
Installation
Look for “Executor” in Package Control after this is published.
Manually:
- Clone this repo into
~/Library/Application Support/Sublime Text/Packages
Settings
You can set
"executor_file_regex": "^File "([^"]+)" line (\d+) col (\d+)",
"executor_base_dir": "<path>"
to make file names clickable in the output.
Optionally, also set
"executor_line_regex": "^\s+line (\d+) col (\d+)",
if line number information is printed on the next line.
These settings work both in global config and in projet file "settings"
.
Known limitations
- Probably doesn’t work on Windows
!
in.gitignore
is not supported- Global
.gitignore
is not supported - Sublime Text excludes are not supported
- On large projects listing might take long time
Credits
Made by Niki Tonsky.
See also
Writer Color Scheme: A color scheme optimized for long-form writing.
Alabaster Color Scheme: Minimal color scheme for coding.
Sublime Profiles: Profile switcher.
Clojure Sublimed: Clojure support for Sublime Text 4.