SendText
A Sublime Text plugin to send text to a terminal or other program
Details
Installs
- Total 11K
- Win 5K
- Mac 5K
- Linux 2K
Apr 3 | Apr 2 | Apr 1 | Mar 31 | Mar 30 | Mar 29 | Mar 28 | Mar 27 | Mar 26 | Mar 25 | Mar 24 | Mar 23 | 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 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 2 | 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 | 1 | 0 | 0 |
Mac | 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 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 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 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
SendText for Sublime Text 2 and 3
This package sends text to a terminal (or other program). If text is selected, it will send the selection to the terminal when you press cmd-Enter (Mac) or ctrl-Enter (Linux/Windows); if no text is selected, it will send the current line to the terminal and move the cursor to the next line. This is very useful for coding in interpreted languages.
SendText presently works with:
- Terminal.app on Mac OS X. SendText will send the text to the most recently active Terminal window.
- iTerm on Mac OS X. SendText will send the text to the most recently iTerm window.
- GNU screen on any platform (Linux and Mac OS X). Screen is a terminal multiplexer which you can start in any terminal emulator. SendText will send the text to the most recently active screen session.
- tmux on any platform (Linux and Mac OS X). tmux is a terminal multiplexer (like GNU screen) which you can start in any terminal emulator. SendText will send the text to the most recently active tmux session.
Hopefully in the future it will also be possible to do the following:
- Attach a Sublime Text view to a particular terminal window.
This plugin was originally based on Rtools by Karthik Ram: https://github.com/karthik/Rtools
Installation
The easy way is to first install the Package Control plugin.
Once it's installed, press Ctrl-Shift-P (or Cmd-Shift-P), type install
, and select “Package Control: Install Packages”.
Then type “sendtext”, and choose to install the SendText plugin.
The other way is to clone this git repository into your Sublime Text 2/Packages
or Sublime Text 3/Packages
directory. This will be in different places depending on the OS (for ST3, replace the 2 with 3):
- Windows:
%APPDATA%\Sublime Text 2\Packages
- OS X:
~/Library/Application Support/Sublime Text 2/Packages
- Linux:
~/.config/sublime-text-2
git clone https://github.com/wch/SendText.git
Program configuration
You can configure SendText by going to:
Preferences -> Package Settings -> SendText -> Settings - Default
First, choose which terminal program you want to use, and uncomment the appropriate line. For example, this tells SendText to use Terminal.app:
"program": "Terminal.app",
// "program": "iTerm",
// "program": "tmux",
// "program": "screen",
If you're using Terminal.app or iTerm, that's all you need to do.
If you use tmux or screen, you may need to explicitly set the path to make it work.
(This seems to be necessary for me on Mac OS X and with tmux installed in /usr/local/bin
, but YMMV.)
In the paths
, set the value for tmux or screen to the full path to the executable. For example:
"paths":
{
"tmux": "/usr/local/bin/tmux"
"screen": "/usr/local/bin/screen"
}
Using SendText
Using SendText is simple. Start your terminal program (of the ones listed above), then, in Sublime Text, select some text and press cmd-Enter (or ctrl-Enter).
Configuring key bindings
To change the key bindings, go to:
Preferences -> Package Settings -> SendText -> Key Bindings - Default
The default value for Linux and Windows is:
[
{ "keys": ["ctrl+enter"], "command": "send_selection" }
]
And for Mac OS, it uses the Cmd key (super
) instead of Ctrl:
[
{ "keys": ["super+enter"], "command": "send_selection" }
]
Change the value of "keys"
to the key combination you want to use.