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 562a573 commit c277eb6Copy full SHA for c277eb6
annotate.py
@@ -115,7 +115,7 @@ def annotate(self, diff):
115
if change_type == '-':
116
full_region = self.view.full_line(self.view.text_point(line - 1, 0))
117
position = full_region.begin()
118
- for i in xrange(full_region.size()):
+ for i in range(full_region.size()):
119
typed_diff[change_type].append(sublime.Region(position + i))
120
else:
121
point = self.view.text_point(line, 0)
0 commit comments