Skip to content

Commit

Permalink
fix: wrong results after "undo" command
Browse files Browse the repository at this point in the history
Signed-off-by: Jack Cherng <[email protected]>
  • Loading branch information
jfcherng committed Jul 19, 2024
1 parent 9bdd601 commit 714f0d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/ui/region_drawing.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def draw_uri_regions(view: sublime.View, uri_regions: Iterable[sublime.Region])
tuple(uri_regions),
scope=draw_uri_regions["scope"],
icon=draw_uri_regions["icon"],
flags=parse_draw_region_flags(draw_uri_regions["flags"]) | sublime.NO_UNDO,
flags=parse_draw_region_flags(draw_uri_regions["flags"]),
)


Expand Down

0 comments on commit 714f0d1

Please sign in to comment.