randy3k / Terminus

Bring a real terminal to Sublime Text
https://packagecontrol.io/packages/Terminus
MIT License
1.39k stars 81 forks source link

add window command to paste selected text into terminal #201

Closed buzzer13 closed 4 years ago

buzzer13 commented 4 years ago

Thought that it's useful to send selected text in editor to terminal with hotkey, especially for REPLs.

randy3k commented 4 years ago

There is already a view command terminus_send_string exposed to users. If you want to tailor-make your own command, you should check out that command.

For interacting with REPL, I have written a more general purpose package SendCode.

buzzer13 commented 4 years ago

Oh, so it was already implemented, but by a separate plugin. Cool, thank you!