Sublime Forum

Communicating data to an .exe file

#1

Is there a way for plugins to communicate data to an external .exe file & vice versa ?
For example, If have a sample form written in tkinter, can I relay on the data back to the plugin host and have it accessible within sublime ?

0 Likes

#2

You’d need to setup an stdio connection via subprocess API or any other kind of socket communication.

The LSP plugin, Terminus or the Default/exec.py do things like that.

0 Likes