Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
94e82cee
Kaydet (Commit)
94e82cee
authored
Ock 04, 1999
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add new extension to reformat a (text) paragraph.
üst
46facd1b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
102 additions
and
0 deletions
+102
-0
FormatParagraph.py
Tools/idle/FormatParagraph.py
+101
-0
extend.py
Tools/idle/extend.py
+1
-0
No files found.
Tools/idle/FormatParagraph.py
0 → 100644
Dosyayı görüntüle @
94e82cee
# Extension to format a paragraph
import
string
import
re
class
FormatParagraph
:
menudefs
=
[
(
'edit'
,
[
(
'Format Paragraph'
,
'<<format-paragraph>>'
),
])
]
keydefs
=
{
'<<format-paragraph>>'
:
[
'<Alt-q>'
],
}
def
__init__
(
self
,
editwin
):
self
.
editwin
=
editwin
def
format_paragraph_event
(
self
,
event
):
text
=
self
.
editwin
.
text
try
:
first
=
text
.
index
(
"sel.first"
)
last
=
text
.
index
(
"sel.last"
)
except
TclError
:
first
=
last
=
None
if
first
and
last
:
data
=
text
.
get
(
first
,
last
)
else
:
first
,
last
,
data
=
find_paragraph
(
text
,
text
.
index
(
"insert"
))
newdata
=
reformat_paragraph
(
data
)
text
.
tag_remove
(
"sel"
,
"1.0"
,
"end"
)
if
newdata
!=
data
:
text
.
mark_set
(
"insert"
,
first
)
text
.
delete
(
first
,
last
)
text
.
insert
(
first
,
newdata
)
else
:
text
.
mark_set
(
"insert"
,
last
)
text
.
see
(
"insert"
)
def
find_paragraph
(
text
,
mark
):
lineno
,
col
=
map
(
int
,
string
.
split
(
mark
,
"."
))
line
=
text
.
get
(
"
%
d.0"
%
lineno
,
"
%
d.0 lineend"
%
lineno
)
while
is_all_white
(
line
):
lineno
=
lineno
+
1
line
=
text
.
get
(
"
%
d.0"
%
lineno
,
"
%
d.0 lineend"
%
lineno
)
first_lineno
=
lineno
while
not
is_all_white
(
line
):
lineno
=
lineno
+
1
line
=
text
.
get
(
"
%
d.0"
%
lineno
,
"
%
d.0 lineend"
%
lineno
)
last
=
"
%
d.0"
%
lineno
# Search back to beginning of paragraph
lineno
=
first_lineno
-
1
line
=
text
.
get
(
"
%
d.0"
%
lineno
,
"
%
d.0 lineend"
%
lineno
)
while
not
is_all_white
(
line
):
lineno
=
lineno
-
1
line
=
text
.
get
(
"
%
d.0"
%
lineno
,
"
%
d.0 lineend"
%
lineno
)
first
=
"
%
d.0"
%
(
lineno
+
1
)
return
first
,
last
,
text
.
get
(
first
,
last
)
def
reformat_paragraph
(
data
,
limit
=
72
):
lines
=
string
.
split
(
data
,
"
\n
"
)
i
=
0
n
=
len
(
lines
)
while
i
<
n
and
is_all_white
(
lines
[
i
]):
i
=
i
+
1
if
i
>=
n
:
return
data
indent1
=
get_indent
(
lines
[
i
])
if
i
+
1
<
n
and
not
is_all_white
(
lines
[
i
+
1
]):
indent2
=
get_indent
(
lines
[
i
+
1
])
else
:
indent2
=
indent1
new
=
lines
[:
i
]
partial
=
indent1
while
i
<
n
and
not
is_all_white
(
lines
[
i
]):
# XXX Should take double space after period (etc.) into account
words
=
re
.
split
(
"(
\
s+)"
,
lines
[
i
])
for
j
in
range
(
0
,
len
(
words
),
2
):
word
=
words
[
j
]
if
not
word
:
continue
# Can happen when line ends in whitespace
if
len
(
string
.
expandtabs
(
partial
+
word
))
>
limit
and
\
partial
!=
indent1
:
new
.
append
(
string
.
rstrip
(
partial
))
partial
=
indent2
partial
=
partial
+
word
+
" "
if
j
+
1
<
len
(
words
)
and
words
[
j
+
1
]
!=
" "
:
partial
=
partial
+
" "
i
=
i
+
1
new
.
append
(
string
.
rstrip
(
partial
))
# XXX Should reformat remaining paragraphs as well
new
.
extend
(
lines
[
i
:])
return
string
.
join
(
new
,
"
\n
"
)
def
is_all_white
(
line
):
return
re
.
match
(
r"^\s*$"
,
line
)
is
not
None
def
get_indent
(
line
):
return
re
.
match
(
r"^(\s*)"
,
line
)
.
group
()
Tools/idle/extend.py
Dosyayı görüntüle @
94e82cee
...
@@ -5,5 +5,6 @@ standard = [
...
@@ -5,5 +5,6 @@ standard = [
"SearchBinding"
,
"SearchBinding"
,
"AutoIndent"
,
"AutoIndent"
,
"AutoExpand"
,
"AutoExpand"
,
"FormatParagraph"
,
"ZoomHeight"
,
"ZoomHeight"
,
]
]
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment