According to the official documentation, a .no-sublime-package file is needed.
Also the code in linux_text_input_gui.py should be updated. The following should be used instead of pygtk,
#!/usr/bin/env python3
from gi import pygtkcompat
pygtkcompat.enable()
pygtkcompat.enable_gtk(version='3.0')
import gtk
According to the official documentation, a
.no-sublime-packagefile is needed.Also the code in
linux_text_input_gui.pyshould be updated. The following should be used instead ofpygtk,