benwbooth / screensend.el Public
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
master
Could not load branches
Nothing to show
Could not load tags
Nothing to show
{{ refName }}
default
Code
screensend.el ------------- Simple Emacs script to allow you to send selected blocks of text to a running screen or tmux session. This is useful for sending text to interactive programs like clojure, psql, etc. in cases where the built-in term-mode is too slow. # Usage: ; for screen (require 'screensend) (global-set-key [f4] 'screen-select) (global-set-key [f5] 'screen-send) ; for tmux (require 'screensend) (global-set-key [f4] 'tmux-select) (global-set-key [f5] 'tmux-send) Start a screen session: screen -S mysession Or if you're using tmux: tmux new-session -s mysession Now press F4 and select "mysession" Now either select some text or place the cursor in between a text paragraph and hit F5. The selected text is transmitted to the screen session.
About
Send blocks of text from emacs to screen or tmux sessions
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published