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
2abf72a1
Kaydet (Commit)
2abf72a1
authored
Tem 21, 2017
tarafından
Vasiliy Faronov
Kaydeden (comit)
elextr
Tem 21, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Push current position to navqueue before navigating back (#1537)
üst
088aaefe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
navqueue.c
src/navqueue.c
+14
-0
No files found.
src/navqueue.c
Dosyayı görüntüle @
2abf72a1
...
...
@@ -192,6 +192,20 @@ static gboolean goto_file_pos(const gchar *file, gint pos)
void
navqueue_go_back
(
void
)
{
filepos
*
fprev
;
GeanyDocument
*
doc
=
document_get_current
();
/* If the navqueue is currently at some position A, but the actual cursor is at some other
* place B, we should add B to the navqueue, so that (1) we go back to A, not to the next
* item in the queue; and (2) we can later restore B by going forward.
* (If A = B, add_new_position will ignore it.) */
if
(
doc
)
{
if
(
doc
->
file_name
)
add_new_position
(
doc
->
file_name
,
sci_get_current_position
(
doc
->
editor
->
sci
));
}
else
/* see also https://github.com/geany/geany/pull/1537 */
g_warning
(
"Attempted navigation when nothing is open"
);
/* return if theres no place to go back to */
if
(
g_queue_is_empty
(
navigation_queue
)
||
...
...
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