-
Notifications
You must be signed in to change notification settings - Fork 110
/
Alignment.py
186 lines (155 loc) · 7.44 KB
/
Alignment.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
import sublime
import sublime_plugin
import re
import math
import os
import sys
try:
from Default.indentation import line_and_normed_pt as normed_rowcol
except ImportError:
# This is necessary due to load order of packages in Sublime Text 2
sys.path.append(os.path.join(sublime.packages_path(), 'Default'))
indentation = __import__('indentation')
reload(indentation)
del sys.path[-1]
normed_rowcol = indentation.line_and_normed_pt
def convert_to_mid_line_tabs(view, edit, tab_size, pt, length):
spaces_end = pt + length
spaces_start = spaces_end
while view.substr(spaces_start-1) == ' ':
spaces_start -= 1
spaces_len = spaces_end - spaces_start
normed_start = normed_rowcol(view, spaces_start)[1]
normed_mod = normed_start % tab_size
tabs_len = 0
diff = 0
if normed_mod != 0:
diff = tab_size - normed_mod
tabs_len += 1
tabs_len += int(math.ceil(float(spaces_len - diff)
/ float(tab_size)))
view.replace(edit, sublime.Region(spaces_start,
spaces_end), '\t' * tabs_len)
return tabs_len - spaces_len
class AlignmentCommand(sublime_plugin.TextCommand):
def run(self, edit):
view = self.view
sel = view.sel()
max_col = 0
settings = view.settings()
tab_size = int(settings.get('tab_size', 8))
use_spaces = settings.get('translate_tabs_to_spaces')
# This handles aligning single multi-line selections
if len(sel) == 1:
points = []
line_nums = [view.rowcol(line.a)[0] for line in view.lines(sel[0])]
trim_trailing_white_space = \
settings.get('trim_trailing_white_space_on_save')
if settings.get('align_indent'):
# Align the left edges by first finding the left edge
for row in line_nums:
pt = view.text_point(row, 0)
# Skip blank lines when the user times trailing whitespace
line = view.line(pt)
if trim_trailing_white_space and line.a == line.b:
continue
char = view.substr(pt)
while char == ' ' or char == '\t':
# Turn tabs into spaces when the preference is spaces
if use_spaces and char == '\t':
view.replace(edit, sublime.Region(pt, pt+1), ' ' *
tab_size)
# Turn spaces into tabs when tabs are the preference
if not use_spaces and char == ' ':
max_pt = pt + tab_size
end_pt = pt
while view.substr(end_pt) == ' ' and end_pt < \
max_pt:
end_pt += 1
view.replace(edit, sublime.Region(pt, end_pt),
'\t')
pt += 1
# Rollback if the left edge wraps to the next line
if view.rowcol(pt)[0] != row:
pt -= 1
break
char = view.substr(pt)
points.append(pt)
max_col = max([max_col, view.rowcol(pt)[1]])
# Adjust the left edges based on the maximum that was found
adjustment = 0
max_length = 0
for pt in points:
pt += adjustment
length = max_col - view.rowcol(pt)[1]
max_length = max([max_length, length])
adjustment += length
view.insert(edit, pt, (' ' if use_spaces else '\t') *
length)
perform_mid_line = max_length == 0
else:
perform_mid_line = True
alignment_chars = settings.get('alignment_chars')
if alignment_chars == None:
alignment_chars = []
alignment_prefix_chars = settings.get('alignment_prefix_chars')
if alignment_prefix_chars == None:
alignment_prefix_chars = []
alignment_space_chars = settings.get('alignment_space_chars')
if alignment_space_chars == None:
alignment_space_chars = []
alignment_pattern = '|'.join([re.escape(ch) for ch in
alignment_chars])
if perform_mid_line and alignment_chars:
points = []
max_col = 0
for row in line_nums:
pt = view.text_point(row, 0)
matching_region = view.find(alignment_pattern, pt)
if not matching_region:
continue
matching_char_pt = matching_region.a
insert_pt = matching_char_pt
# If the equal sign is part of a multi-character
# operator, bring the first character forward also
if view.substr(insert_pt-1) in alignment_prefix_chars:
insert_pt -= 1
space_pt = insert_pt
while view.substr(space_pt-1) in [' ', '\t']:
space_pt -= 1
# Replace tabs with spaces for consistent indenting
if view.substr(space_pt) == '\t':
view.replace(edit, sublime.Region(space_pt,
space_pt+1), ' ' * tab_size)
matching_char_pt += tab_size - 1
insert_pt += tab_size - 1
if view.substr(matching_char_pt) in alignment_space_chars:
space_pt += 1
# If the next equal sign is not on this line, skip the line
if view.rowcol(matching_char_pt)[0] != row:
continue
points.append(insert_pt)
max_col = max([max_col, normed_rowcol(view, space_pt)[1]])
# The adjustment takes care of correcting point positions
# since spaces are being inserted, which changes the points
adjustment = 0
for pt in points:
pt += adjustment
length = max_col - normed_rowcol(view, pt)[1]
adjustment += length
if length >= 0:
view.insert(edit, pt, ' ' * length)
else:
view.erase(edit, sublime.Region(pt + length, pt))
if settings.get('mid_line_tabs') and not use_spaces:
adjustment += convert_to_mid_line_tabs(view, edit,
tab_size, pt, length)
# This handles aligning multiple selections
else:
max_col = max([normed_rowcol(view, region.b)[1] for region in sel])
for region in sel:
length = max_col - normed_rowcol(view, region.b)[1]
view.insert(edit, region.b, ' ' * length)
if settings.get('mid_line_tabs') and not use_spaces:
convert_to_mid_line_tabs(view, edit, tab_size, region.b,
length)