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
624048ea
Kaydet (Commit)
624048ea
authored
Ock 05, 2015
tarafından
Colomban Wendling
Kaydeden (comit)
SiegeLord
Agu 16, 2015
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Keep selection stable when replacing tabs and spaces
üst
2a887fee
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
editor.c
src/editor.c
+18
-0
No files found.
src/editor.c
Dosyayı görüntüle @
624048ea
...
...
@@ -4317,6 +4317,7 @@ void editor_fold_all(GeanyEditor *editor)
void
editor_replace_tabs
(
GeanyEditor
*
editor
,
gboolean
ignore_selection
)
{
gint
search_pos
,
pos_in_line
,
current_tab_true_length
;
gint
anchor_pos
,
caret_pos
;
gint
tab_len
;
gchar
*
tab_str
;
struct
Sci_TextToFind
ttf
;
...
...
@@ -4337,6 +4338,8 @@ void editor_replace_tabs(GeanyEditor *editor, gboolean ignore_selection)
}
ttf
.
lpstrText
=
(
gchar
*
)
"
\t
"
;
anchor_pos
=
SSM
(
editor
->
sci
,
SCI_GETANCHOR
,
0
,
0
);
caret_pos
=
sci_get_current_position
(
editor
->
sci
);
while
(
TRUE
)
{
search_pos
=
sci_find_text
(
editor
->
sci
,
SCFIND_MATCHCASE
,
&
ttf
);
...
...
@@ -4354,7 +4357,13 @@ void editor_replace_tabs(GeanyEditor *editor, gboolean ignore_selection)
/* update end of range now text has changed */
ttf
.
chrg
.
cpMax
+=
current_tab_true_length
-
1
;
g_free
(
tab_str
);
if
(
anchor_pos
>
search_pos
)
anchor_pos
+=
current_tab_true_length
-
1
;
if
(
caret_pos
>
search_pos
)
caret_pos
+=
current_tab_true_length
-
1
;
}
sci_set_selection
(
editor
->
sci
,
anchor_pos
,
caret_pos
);
sci_end_undo_action
(
editor
->
sci
);
}
...
...
@@ -4364,6 +4373,7 @@ void editor_replace_tabs(GeanyEditor *editor, gboolean ignore_selection)
void
editor_replace_spaces
(
GeanyEditor
*
editor
,
gboolean
ignore_selection
)
{
gint
search_pos
;
gint
anchor_pos
,
caret_pos
;
static
gdouble
tab_len_f
=
-
1
.
0
;
/* keep the last used value */
gint
tab_len
;
gchar
*
text
;
...
...
@@ -4397,6 +4407,8 @@ void editor_replace_spaces(GeanyEditor *editor, gboolean ignore_selection)
}
ttf
.
lpstrText
=
text
;
anchor_pos
=
SSM
(
editor
->
sci
,
SCI_GETANCHOR
,
0
,
0
);
caret_pos
=
sci_get_current_position
(
editor
->
sci
);
while
(
TRUE
)
{
search_pos
=
sci_find_text
(
editor
->
sci
,
SCFIND_MATCHCASE
,
&
ttf
);
...
...
@@ -4415,7 +4427,13 @@ void editor_replace_spaces(GeanyEditor *editor, gboolean ignore_selection)
ttf
.
chrg
.
cpMin
=
search_pos
;
/* update end of range now text has changed */
ttf
.
chrg
.
cpMax
-=
tab_len
-
1
;
if
(
anchor_pos
>
search_pos
)
anchor_pos
-=
tab_len
-
1
;
if
(
caret_pos
>
search_pos
)
caret_pos
-=
tab_len
-
1
;
}
sci_set_selection
(
editor
->
sci
,
anchor_pos
,
caret_pos
);
sci_end_undo_action
(
editor
->
sci
);
g_free
(
text
);
}
...
...
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