We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ccef8ff commit 671e6aeCopy full SHA for 671e6ae
1 file changed
MultiEditUtils.py
@@ -7,12 +7,15 @@ class MultiFindAllCommand(sublime_plugin.TextCommand):
7
def run(self, edit):
8
9
view = self.view
10
+ newRegions = []
11
12
for region in view.sel():
13
substr = view.substr(region)
14
for region in view.find_all(substr, sublime.LITERAL):
- view.sel().add(region)
15
+ newRegions.append(region)
16
17
+ for region in newRegions:
18
+ view.sel().add(region)
19
20
21
class JumpToLastRegionCommand(sublime_plugin.TextCommand):
0 commit comments