We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b0a473 commit b73c247Copy full SHA for b73c247
src/blame_all.py
@@ -80,8 +80,12 @@ def run(self, edit):
80
self.view.settings().set(VIEW_SETTING_PHANTOM_ALL_DISPLAYED, True)
81
self.store_rulers()
82
# Bring the phantoms into view without the user needing to manually scroll left.
83
- # @todo BlameAll: Automatically scrolling the view to the left doesn't work when the ST window has >1 Group
84
- self.view.set_viewport_position((0.0, self.view.viewport_position()[1]))
+ sublime.set_timeout(
+ lambda: self.view.set_viewport_position(
85
+ (0.0, self.view.viewport_position()[1])
86
+ ),
87
+ 0,
88
+ )
89
90
def extra_cli_args(self, **kwargs):
91
return []
0 commit comments