def on_hover(self, point, hover_zone):
if hover_zone != sublime.HOVER_TEXT or self.view.is_popup_visible():
return
self.request_symbol_hover(point)
point_diagnostics = get_point_diagnostics(self.view, point)
if point_diagnostics:
self.show_hover(point, self.diagnostics_content(point_diagnostics))
评论列表
文章目录