Skip to content

Commit 68129f4

Browse files
author
Orta
authored
Merge pull request #709 from mykmartin/noPrintCommandName
Remove noisy printout in listeners
2 parents 0b82fc2 + 7ffd647 commit 68129f4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

typescript/listeners/listeners.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,6 @@ def on_post_text_command_with_info(self, view, command_name, args, info):
226226
"typescript_format_selection",
227227
"typescript_format_line",
228228
"typescript_paste_and_format"]:
229-
print(command_name)
230229
# give up and send whole buffer to server (do this eagerly
231230
# to avoid lag on next request to server)
232231
reload_buffer(view, info.client_info)
@@ -270,4 +269,4 @@ def on_pre_save(self, view):
270269

271270
def on_hover(self, view, point, hover_zone):
272271
log.debug("on_hover")
273-
EventHub.run_listeners("on_hover", view, point, hover_zone)
272+
EventHub.run_listeners("on_hover", view, point, hover_zone)

0 commit comments

Comments
 (0)