ExecInput
Sublime Text package to send input to stdin through the exec build target
Details
Installs
- Total 4K
- Win 3K
- Mac 464
- Linux 540
| Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | Oct 6 | Oct 5 | Oct 4 | Oct 3 | Oct 2 | Oct 1 | Sep 30 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Windows | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 2 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 2 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 2 |
| Mac | 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 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 |
Readme
- Source
- raw.githubusercontent.com
ExecInput
This Sublime Text package allows you to send input to stdin of the currently
running process. The process must have been started through the exec build
target which is used by all standard build systems.
It works by hooking into the ExecCommand class to get access to the currently
running process. Because of that, it should also be compatible with all other
build targets that extend the default ExecCommand class.
Installation
Package Control
The easiest way to install is using Sublime Text's Package Control:
- Open the
Command Paletteusing the menu itemTools→Command Palette... - Choose
Package Control: Install Package - Install
ExecInput
Download
- Download a release
- Extract the package and rename it to
ExecInput - Copy the package into your
Packagesdirectory. You can find this using the menu itemPreferences→Browse Packages....
Usage
Make sure to start a process that is waiting for input. Now there are multiple ways to send input:
- Using the default key binding while the build output panel is visible: Ctrl+Alt+Enter
- Using the menu item
Tools→Send input - Using the
Command PaletteitemExecInput: Send input
The entered text will then be sent to the process and also added to the build output panel.
Multiple lines of input can be send by using Shift+Enter.
Customization
This package provides the command exec_input. Use this if you want to
customize the key bindings, menu items, etc.