Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
G
geany
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
geany
Commits
bfd5587f
Kaydet (Commit)
bfd5587f
authored
Ock 18, 2016
tarafından
Colomban Wendling
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge pull request #852 from b4n/reflow-hang
Fix hang in reflow command (and small improvements around)
üst
50212093
e083c8d1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
7 deletions
+9
-7
keybindings.c
src/keybindings.c
+9
-7
No files found.
src/keybindings.c
Dosyayı görüntüle @
bfd5587f
...
...
@@ -2221,7 +2221,7 @@ static gint split_line(GeanyEditor *editor, gint column)
gint
pos
;
/* don't split on a trailing space of a line */
if
(
sci_get_char_at
(
sci
,
lend
-
1
)
==
GDK_space
)
if
(
sci_get_char_at
(
sci
,
lend
-
1
)
==
' '
)
lend
--
;
/* detect when the line is short enough and no more splitting is needed */
...
...
@@ -2232,7 +2232,7 @@ static gint split_line(GeanyEditor *editor, gint column)
found
=
FALSE
;
for
(
pos
=
edge
-
1
;
pos
>
lstart
;
pos
--
)
{
if
(
sci_get_char_at
(
sci
,
pos
)
==
GDK_space
)
if
(
sci_get_char_at
(
sci
,
pos
)
==
' '
)
{
found
=
TRUE
;
break
;
...
...
@@ -2242,19 +2242,21 @@ static gint split_line(GeanyEditor *editor, gint column)
{
for
(
pos
=
edge
;
pos
<
lend
;
pos
++
)
{
if
(
sci_get_char_at
(
sci
,
pos
)
==
GDK_space
)
if
(
sci_get_char_at
(
sci
,
pos
)
==
' '
)
{
found
=
TRUE
;
break
;
}
}
}
if
(
!
found
)
/* don't split right before a space */
while
(
pos
+
1
<=
lend
&&
sci_get_char_at
(
sci
,
pos
+
1
)
==
' '
)
pos
++
;
if
(
!
found
||
pos
>=
lend
)
break
;
sci_set_current_position
(
sci
,
pos
+
1
,
FALSE
);
sci_cancel
(
sci
);
/* don't select from completion list */
sci_send_command
(
sci
,
SCI_NEWLINE
);
sci_insert_text
(
sci
,
pos
+
1
,
editor_get_eol_char
(
editor
));
line
++
;
}
return
line
-
start_line
;
...
...
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