-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathMultiEditUtils.py
executable file
·611 lines (415 loc) · 17.3 KB
/
MultiEditUtils.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
import sublime, sublime_plugin
import re
from collections import namedtuple
class MultiFindAllCommand(sublime_plugin.TextCommand):
def run(self, edit, case=True, word=False, ignore_comments=False, expand=True):
view = self.view
newRegions = []
# filter selections in order to exclude duplicates since it can hang
# Sublime if search is performed on dozens of selections, this doesn't
# happen with built-in command because it works on a single selection
initial = [sel for sel in view.sel()]
regions, substrings = [], []
for region in view.sel():
if expand and region.empty():
# if expanding substring will be the word
region = view.word(region.a)
# add the region since nothing is selected yet
view.sel().add(region)
# filter by substring (word or not)
substr = view.substr(region)
if substr and substr not in substrings:
regions.append(region)
substrings.append(substr)
view.sel().clear()
if regions:
for region in regions:
view.sel().add(region)
else:
view.window().status_message("Multi Find All: nothing selected")
for sel in initial:
view.sel().add(sel)
return
selected_words = [view.substr(view.word(sel)).lower() for sel in view.sel()]
for region in view.sel():
substr = view.substr(region)
if case:
for region in view.find_all(substr, sublime.LITERAL):
newRegions.append(region)
else:
for region in view.find_all(substr, sublime.LITERAL | sublime.IGNORECASE):
newRegions.append(region)
if word:
deleted = [region for region in newRegions
if view.substr(view.word(region)).lower() not in selected_words]
newRegions = [region for region in newRegions if region not in deleted]
if ignore_comments:
deleted = [region for region in newRegions
if re.search(r'\bcomment\b', view.scope_name(region.a))]
newRegions = [region for region in newRegions if region not in deleted]
for region in newRegions:
view.sel().add(region)
class MultiFindAllRegexCommand(sublime_plugin.TextCommand):
def on_done(self, regex):
case = sublime.IGNORECASE if not self.case else 0
regions = self.view.find_all(regex, case)
# we don't clear the selection so it's additive, it's nice to just add a
# regex search on top of a previous search
if not self.subtract:
for region in regions:
self.view.sel().add(region)
# the resulting regions will be subtracted instead
else:
for region in regions:
self.view.sel().subtract(region)
# remove empty selections in both cases, so there aren't loose cursors
regions = [r for r in self.view.sel() if not r.empty()]
self.view.sel().clear()
for region in regions:
self.view.sel().add(region)
for region in self.view.sel():
print(region)
def run(self, edit, case=True, subtract=False):
self.edit = edit
self.case = case
self.subtract = subtract
c = "Additive regex search:" if not subtract else "Subtractive regex search:"
sublime.active_window().show_input_panel(c, "", self.on_done, None, None)
class MultiFindMenuCommand(sublime_plugin.TextCommand):
def run(self, edit):
choice = [
"Find All Case + Word +",
"Find All Case + Word -",
"Find All Case - Word +",
"Find All Case - Word -",
"Find All Case + Word + (Ignore Comments)",
"Find Regex (Additive)",
"Find Regex (Subtractive)"
]
def on_done(index):
if index == -1:
return
if index == 0:
self.view.run_command('multi_find_all', {"case": True, "word": True})
elif index == 1:
self.view.run_command('multi_find_all', {"case": True})
elif index == 2:
self.view.run_command('multi_find_all', {"case": False, "word": True})
elif index == 3:
self.view.run_command('multi_find_all', {"case": False})
elif index == 4:
self.view.run_command('multi_find_all', {"case": True, "word": True, "ignore_comments": True})
elif index == 5:
self.view.run_command('multi_find_all_regex')
elif index == 6:
self.view.run_command('multi_find_all_regex', {"subtract": True})
self.view.window().show_quick_panel(choice, on_done, 1, 0, None)
class JumpToLastRegionCommand(sublime_plugin.TextCommand):
def run(self, edit):
selection = self.view.sel()
lastRegion = selection[-1]
cursorPosition = lastRegion.b
selection.clear()
selection.add(sublime.Region(cursorPosition))
self.view.show(cursorPosition, False)
class AddLastSelectionCommand(sublime_plugin.TextCommand):
def run(self, edit):
helper = Helper.getOrConstructHelperForView(self.view)
lastSelections = helper.lastSelections
if len(lastSelections) < 1:
return
currentSelection = self.view.sel()
oldSelectionHash = Helper.hashSelection(currentSelection)
for region in lastSelections[-1]:
helper.ignoreSelectionCommand = True
currentSelection.add(region)
newSelectionHash = Helper.hashSelection(currentSelection)
lastSelections.pop(-1)
nothingChanged = oldSelectionHash == newSelectionHash
if nothingChanged:
# Rerun if the previous selection was only a subset of the current selection.
self.run(edit)
class CycleThroughRegionsCommand(sublime_plugin.TextCommand):
def run(self, edit):
view = self.view
visibleRegion = view.visible_region()
selectedRegions = view.sel()
if not len(selectedRegions):
return
nextRegion = None
# Find the first region which comes after the visible region.
for region in selectedRegions:
if region.end() > visibleRegion.b:
nextRegion = region
break
# If the last region in the buffer was reached, take the first region.
# Empty regions will be evaluated falsy, which is why short-circuit evaluation doesn't work here.
if nextRegion is None:
nextRegion = selectedRegions[0]
view.show(nextRegion, False)
class NormalizeRegionEndsCommand(sublime_plugin.TextCommand):
def run(self, edit):
view = self.view
selection = view.sel()
if not len(selection):
return
if self.areRegionsNormalized(selection):
regions = self.invertRegions(selection)
else:
regions = self.normalizeRegions(selection)
selection.clear()
for region in regions:
selection.add(region)
firstVisibleRegion = self.findFirstVisibleRegion()
if firstVisibleRegion is not None:
# if firstVisibleRegion won't work with empty regions
view.show(firstVisibleRegion.b, False)
def findFirstVisibleRegion(self):
visibleRegion = self.view.visible_region()
for region in self.view.sel():
if region.intersects(visibleRegion):
return region
return None
def normalizeRegions(self, regions):
return self.invertRegions(regions, lambda region: region.a > region.b)
def invertRegions(self, regions, condition = lambda region: True):
invertedRegions = []
for region in regions:
invertedRegion = region
if condition(region):
invertedRegion = sublime.Region(region.b, region.a)
invertedRegions.append(invertedRegion)
return invertedRegions
def areRegionsNormalized(self, regions):
return all(region.a < region.b for region in regions)
class SplitSelectionCommand(sublime_plugin.TextCommand):
def run(self, edit, separator = None):
self.savedSelection = [r for r in self.view.sel()]
selectionSize = sum(map(lambda region: region.size(), self.savedSelection))
if selectionSize == 0:
# nothing to do
sublime.status_message("Cannot split an empty selection.")
return
if separator != None:
self.splitSelection(separator)
else:
onConfirm, onChange = self.getHandlers()
inputView = sublime.active_window().show_input_panel(
"Separating character(s) for splitting the selection",
" ",
onConfirm,
onChange,
self.restoreSelection
)
inputView.run_command("select_all")
def getHandlers(self):
settings = sublime.load_settings("MultiEditUtils.sublime-settings")
live_split_selection = settings.get("live_split_selection")
if live_split_selection:
onConfirm = None
onChange = self.splitSelection
else:
onConfirm = self.splitSelection
onChange = None
return (onConfirm, onChange)
def restoreSelection(self):
selection = self.view.sel()
selection.clear()
for region in self.savedSelection:
selection.add(region)
self.workaroundForRefreshBug(self.view, selection)
def splitSelection(self, separator):
view = self.view
newRegions = []
for region in self.savedSelection:
currentPosition = region.begin()
regionString = view.substr(region)
if separator:
subRegions = regionString.split(separator)
else:
# take each character separately
subRegions = list(regionString)
for subRegion in subRegions:
newRegion = sublime.Region(
currentPosition,
currentPosition + len(subRegion)
)
newRegions.append(newRegion)
currentPosition += len(subRegion) + len(separator)
selection = view.sel()
selection.clear()
for region in newRegions:
selection.add(region)
self.workaroundForRefreshBug(view, selection)
def workaroundForRefreshBug(self, view, selection):
# work around sublime bug with caret position not refreshing
# see: https://github.com/code-orchestra/colt-sublime-plugin/commit/9e6ffbf573fc60b356665ff2ba9ced614c71120f
bug = [s for s in selection]
view.add_regions("bug", bug, "bug", "dot", sublime.HIDDEN | sublime.PERSISTENT)
view.erase_regions("bug")
Case = namedtuple("Case", "lower upper capitalized mixed")(1, 2, 3, 4)
StringMetaData = namedtuple("StringMetaData", "separator cases stringGroups")
class PreserveCaseCommand(sublime_plugin.TextCommand):
def run(self, edit, newString = None, selections = None):
self.edit = edit
if selections is not None:
self.savedSelection = [sublime.Region(r[0], r[1]) for r in selections]
else:
self.savedSelection = [r for r in self.view.sel()]
selectionSize = sum(map(lambda region: region.size(), self.savedSelection))
if selectionSize == 0:
sublime.status_message("Cannot run preserve case on an empty selection.")
return
if newString != None:
self.preserveCase(newString)
else:
firstRegionString = self.view.substr(self.savedSelection[0])
inputView = sublime.active_window().show_input_panel(
"New string for preserving case",
firstRegionString,
self.runPreserveCase,
None,
None
)
inputView.run_command("select_all")
def runPreserveCase(self, newString):
selections = [[s.a, s.b] for s in self.savedSelection]
self.view.run_command("preserve_case", {"newString": newString, "selections": selections})
def preserveCase(self, newString):
view = self.view
regionOffset = 0
newStringGroups = self.analyzeString(newString).stringGroups
for region in self.savedSelection:
region = sublime.Region(region.begin() + regionOffset, region.end() + regionOffset)
regionString = view.substr(region)
newRegionString = self.replaceStringWithCase(regionString, newStringGroups)
view.replace(self.edit, region, newRegionString)
regionOffset += len(newRegionString) - len(regionString)
def analyzeString(self, aString):
separators = "-_/. "
counts = list(map(lambda sep: aString.count(sep), separators))
maxCounts = max(counts)
if max(counts) > 0:
separator = separators[counts.index(maxCounts)]
stringGroups = aString.split(separator)
else:
# no real separator
separator = ""
stringGroups = self.splitByCase(aString)
cases = list(map(self.analyzeCase, stringGroups))
return StringMetaData(separator, cases, stringGroups)
def splitByCase(self, aString):
# split at the change from lower to upper case (or vice versa)
# groups = re.split('(?<!^)((?:[^A-Z][A-Z])|(?:[A-Z]{2,}[^A-Z]))', aString)
groups = re.split('(?<!^)((?:[^A-Z][^a-z])|(?:[^a-z][^A-Z]))', aString)
newGroups = [groups[0]]
for index, group in enumerate(groups):
if index % 2 == 1:
newGroups[-1] += group[0:-1]
newGroups.append(group[-1] + groups[index + 1])
return newGroups
def analyzeCase(self, aString):
lowerReg = re.compile("^[^A-Z]*$")
upperReg = re.compile("^[^a-z]*$")
capitalizedReg = re.compile("^[A-Z]([^A-Z])*$")
if lowerReg.match(aString):
return Case.lower
elif upperReg.match(aString):
return Case.upper
elif capitalizedReg.match(aString):
return Case.capitalized
else:
return Case.mixed
def replaceStringWithCase(self, oldString, newStringGroups):
analyzedOldString = self.analyzeString(oldString)
oldCases = analyzedOldString.cases
oldSeparator = analyzedOldString.separator
for index, currentElement in enumerate(newStringGroups):
# If the user provides more new strings than old ones are given, we just
# repeat the last case.
clampedIndex = min(index, len(oldCases) - 1)
currentCase = oldCases[clampedIndex]
if currentCase == Case.upper:
newStringGroups[index] = currentElement.upper()
elif currentCase == Case.lower:
newStringGroups[index] = currentElement.lower()
elif currentCase == Case.capitalized:
newStringGroups[index] = currentElement.capitalize()
return oldSeparator.join(newStringGroups)
class StripSelection(sublime_plugin.TextCommand):
def run(self, edit):
newRegions = []
selection = self.view.sel()
for currentRegion in selection:
text = self.view.substr(currentRegion)
lStrippedText = text.lstrip()
rStrippedText = lStrippedText.rstrip()
lStrippedCount = len(text) - len(lStrippedText)
rStrippedCount = len(lStrippedText) - len(rStrippedText)
a = currentRegion.begin() + lStrippedCount
b = currentRegion.end() - rStrippedCount
if a == b:
# the region only contained whitespace
# use the old selection end to avoid jumping of cursor
a = b = currentRegion.b
newRegions.append(sublime.Region(a, b))
selection.clear()
for region in newRegions:
selection.add(region)
class RemoveEmptyRegions(sublime_plugin.TextCommand):
def run(self, edit):
selection = self.view.sel()
regions = list(selection)
newRegions = list(filter(lambda r: not r.empty(), regions))
if len(newRegions) == 0:
sublime.status_message("There are only empty regions. Removing those would remove all regions. Aborting.")
return
selection.clear()
for r in newRegions:
selection.add(r)
class SelectionListener(sublime_plugin.EventListener):
def on_selection_modified(self, view):
helper = Helper.getOrConstructHelperForView(view)
lastSelections = helper.lastSelections
if helper.ignoreSelectionCommand:
helper.ignoreSelectionCommand = False
return
currentSelection = view.sel()
if self.isComplexSelection(currentSelection):
currentRegions = list(currentSelection)
selectionWasExpanded = lastSelections and self.isSubsetOf(currentSelection, lastSelections[-1])
if selectionWasExpanded:
# Override the last entry since the selection was expanded.
lastSelections[-1] = currentRegions
else:
lastSelections.append(currentRegions)
def isComplexSelection(self, selection):
# A "complex selection" is a selection which is not empty or has multiple regions.
regionCount = len(selection)
if not regionCount:
return False
firstRegionLength = len(selection[0])
return regionCount > 1 or firstRegionLength > 0
def isSubsetOf(self, selectionA, selectionB):
# Check if selectionA is a subset of selectionB.
return all(selectionA.contains(region) for region in selectionB)
class TriggerSelectionModifiedCommand(sublime_plugin.TextCommand):
def run(self, edit):
SelectionListener().on_selection_modified(self.view)
class Helper:
viewToHelperMap = {}
def __init__(self):
# The SelectionCommand should be ignored if it was triggered by AddLastSelectionCommand.
self.ignoreSelectionCommand = False
self.lastSelections = []
@staticmethod
def getOrConstructHelperForView(view):
mapping = Helper.viewToHelperMap
viewID = view.id()
if not viewID in mapping.keys():
mapping[viewID] = Helper()
helper = mapping[viewID]
return helper
@staticmethod
def hashSelection(selection):
return str(list(selection))