c++ - Creating a plugin for Sublime Text 3 in a language other than Python -
i want create plugin sublime text 3 in language, say, in c++ or c or other compiled language. possible? preferably without python code or libraries @ except ones that's installed sublime text3.
if not, there workaround? thing here want plugin compiled language. i'm aware python ".pyc" files that's not i'm looking for.
no, it's impossible make sublime text plugin absolutely 0 python code. however, can call binary application python plugin , put of logic in there.
for example, sublimelinter part of work in python, calls out binaries such flake8 , ruby -wc actual linting of file.
Comments
Post a Comment