我希望Sublime Text Editor 3中的所有更改都能在网站上实时显示。我想编写一个只将更改发送给API的插件。
EventListener on_modified
我可以告诉我什么改变了吗?使用view.change_count ()
我不会只获得更改的数量。
import sublime, sublime_plugin
class KeyBindingListener(sublime_plugin.EventListener):
def on_modified_async(self, view):
print("The on_modified event fired!"+str(view.change_count()));