Sublime Forum

Rust for plugin dev instead of python

#1

hello.

is it possible to write rust code for sublime plugins ?

i see that sublime has an exposed api to call from python.

it would be cool to achieve the same thing in rust.

thanks.

0 Likes

#2

Unlikely. Similar reasons to C++ I guess. There was someone suggest Julia as well iirc.

0 Likes

#3

You can call rust code from python using ffi, or write a python library in Rust using the CPython API. Otherwise we only support python for plugins.

0 Likes

#4

thats actually a good idea.

thanks for response guys.

0 Likes