1 # Extension to format a paragraph
3 # Does basic, standard text formatting, and also understands Python
4 # comment blocks. Thus, for editing Python source code, this
5 # extension is really only suitable for reformatting these comment
6 # blocks or triple-quoted strings.
8 # Known problems with comment reformatting:
9 # * If there is a selection marked, and the first line of the
10 # selection is not complete, the block will probably not be detected
11 # as comments, and will have the normal "text formatting" rules
13 # * If a comment block has leading whitespace that mixes tabs and
14 # spaces, they will not be considered part of the same block.
15 # * Fancy comments, like this bulleted list, arent handled :-)
19 class FormatParagraph
:
23 ('Format Paragraph', '<<format-paragraph>>'),
28 '<<format-paragraph>>': ['<Alt-q>'],
32 '<<format-paragraph>>': ['<Meta-q>'],
35 def __init__(self
, editwin
):
36 self
.editwin
= editwin
41 def format_paragraph_event(self
, event
):
42 text
= self
.editwin
.text
43 first
, last
= self
.editwin
.get_selection_indices()
45 data
= text
.get(first
, last
)
48 first
, last
, comment_header
, data
= \
49 find_paragraph(text
, text
.index("insert"))
51 # Reformat the comment lines - convert to text sans header.
52 lines
= data
.split("\n")
53 lines
= map(lambda st
, l
=len(comment_header
): st
[l
:], lines
)
54 data
= "\n".join(lines
)
55 # Reformat to 70 chars or a 20 char width, whichever is greater.
56 format_width
= max(70-len(comment_header
), 20)
57 newdata
= reformat_paragraph(data
, format_width
)
58 # re-split and re-insert the comment header.
59 newdata
= newdata
.split("\n")
60 # If the block ends in a \n, we dont want the comment
61 # prefix inserted after it. (Im not sure it makes sense to
62 # reformat a comment block that isnt made of complete
63 # lines, but whatever!) Can't think of a clean soltution,
68 newdata
= newdata
[:-1]
69 builder
= lambda item
, prefix
=comment_header
: prefix
+item
70 newdata
= '\n'.join(map(builder
, newdata
)) + block_suffix
72 # Just a normal text format
73 newdata
= reformat_paragraph(data
)
74 text
.tag_remove("sel", "1.0", "end")
76 text
.mark_set("insert", first
)
77 text
.undo_block_start()
78 text
.delete(first
, last
)
79 text
.insert(first
, newdata
)
80 text
.undo_block_stop()
82 text
.mark_set("insert", last
)
85 def find_paragraph(text
, mark
):
86 lineno
, col
= map(int, mark
.split("."))
87 line
= text
.get("%d.0" % lineno
, "%d.0 lineend" % lineno
)
88 while text
.compare("%d.0" % lineno
, "<", "end") and is_all_white(line
):
90 line
= text
.get("%d.0" % lineno
, "%d.0 lineend" % lineno
)
92 comment_header
= get_comment_header(line
)
93 comment_header_len
= len(comment_header
)
94 while get_comment_header(line
)==comment_header
and \
95 not is_all_white(line
[comment_header_len
:]):
97 line
= text
.get("%d.0" % lineno
, "%d.0 lineend" % lineno
)
98 last
= "%d.0" % lineno
99 # Search back to beginning of paragraph
100 lineno
= first_lineno
- 1
101 line
= text
.get("%d.0" % lineno
, "%d.0 lineend" % lineno
)
102 while lineno
> 0 and \
103 get_comment_header(line
)==comment_header
and \
104 not is_all_white(line
[comment_header_len
:]):
106 line
= text
.get("%d.0" % lineno
, "%d.0 lineend" % lineno
)
107 first
= "%d.0" % (lineno
+1)
108 return first
, last
, comment_header
, text
.get(first
, last
)
110 def reformat_paragraph(data
, limit
=70):
111 lines
= data
.split("\n")
114 while i
< n
and is_all_white(lines
[i
]):
118 indent1
= get_indent(lines
[i
])
119 if i
+1 < n
and not is_all_white(lines
[i
+1]):
120 indent2
= get_indent(lines
[i
+1])
125 while i
< n
and not is_all_white(lines
[i
]):
126 # XXX Should take double space after period (etc.) into account
127 words
= re
.split("(\s+)", lines
[i
])
128 for j
in range(0, len(words
), 2):
131 continue # Can happen when line ends in whitespace
132 if len((partial
+ word
).expandtabs()) > limit
and \
134 new
.append(partial
.rstrip())
136 partial
= partial
+ word
+ " "
137 if j
+1 < len(words
) and words
[j
+1] != " ":
138 partial
= partial
+ " "
140 new
.append(partial
.rstrip())
141 # XXX Should reformat remaining paragraphs as well
142 new
.extend(lines
[i
:])
143 return "\n".join(new
)
145 def is_all_white(line
):
146 return re
.match(r
"^\s*$", line
) is not None
148 def get_indent(line
):
149 return re
.match(r
"^(\s*)", line
).group()
151 def get_comment_header(line
):
152 m
= re
.match(r
"^(\s*#*)", line
)
153 if m
is None: return ""