Sublime Forum

Is it possible to run a Sublime package through PyPy?

#1

Hello!

So basically not much else to add to the question from the subject line. I’m wondering if this is possible, f.i. to improve compilation time of the SublimeKSP extension by making it execute through PyPy.

Thanks!

0 Likes

#2

In short no; only the Sublime plugin hosts embedded in Sublime have the connection to the core that allows them to interface with Sublime, and that can’t be changed.

You could indeed create architecture specific versions of library code that are native code interfaced via ffi or similar if that would make the operations faster, but it would still need to run through the plugin host.

0 Likes