Hello, I think I’ve found a bug.
This is a very simple plugin to test it:
import sublime
import sublime_plugin
class PrintLineWhenOverTheGutter(sublime_plugin.ViewEventListener):
def on_hover(self, point, hover_zone=sublime.HOVER_GUTTER):
line_n = self.view.rowcol(point)[0] + 1
print(line_n)
The plugin prints the right line number on the console, but it does it even when hovering over the text, not only when hovering on the gutter.
I’m using the Build 4125 on Windows 10