rename activity callback

This commit is contained in:
Alan Hamlett 2016-04-30 00:01:25 +02:00
parent 8af3b53937
commit 77c2041ad3
1 changed files with 4 additions and 4 deletions

View File

@ -386,7 +386,7 @@ def is_view_active(view):
return False return False
def handle_heartbeat(view, is_write=False): def handle_activity(view, is_write=False):
window = view.window() window = view.window()
if window is not None: if window is not None:
entity = view.file_name() entity = view.file_name()
@ -625,15 +625,15 @@ if ST_VERSION < 3000:
class WakatimeListener(sublime_plugin.EventListener): class WakatimeListener(sublime_plugin.EventListener):
def on_post_save(self, view): def on_post_save(self, view):
handle_heartbeat(view, is_write=True) handle_activity(view, is_write=True)
def on_selection_modified(self, view): def on_selection_modified(self, view):
if is_view_active(view): if is_view_active(view):
handle_heartbeat(view) handle_activity(view)
def on_modified(self, view): def on_modified(self, view):
if is_view_active(view): if is_view_active(view):
handle_heartbeat(view) handle_activity(view)
class WakatimeDashboardCommand(sublime_plugin.ApplicationCommand): class WakatimeDashboardCommand(sublime_plugin.ApplicationCommand):