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
fc5d8d14
Kaydet (Commit)
fc5d8d14
authored
Eki 27, 2014
tarafından
Colomban Wendling
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge pull request #362 from ntrel/fb-cmd
Make File Browser use explorer as default open command on Windows
üst
a7a893a2
36c155cb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
filebrowser.c
plugins/filebrowser.c
+5
-1
No files found.
plugins/filebrowser.c
Dosyayı görüntüle @
fc5d8d14
...
@@ -33,6 +33,10 @@
...
@@ -33,6 +33,10 @@
#ifdef G_OS_WIN32
#ifdef G_OS_WIN32
# include <windows.h>
# include <windows.h>
# define OPEN_CMD "explorer \"%d\""
#else
# define OPEN_CMD "nautilus \"%d\""
#endif
#endif
GeanyPlugin
*
geany_plugin
;
GeanyPlugin
*
geany_plugin
;
...
@@ -987,7 +991,7 @@ static void load_settings(void)
...
@@ -987,7 +991,7 @@ static void load_settings(void)
"filebrowser"
,
G_DIR_SEPARATOR_S
,
"filebrowser.conf"
,
NULL
);
"filebrowser"
,
G_DIR_SEPARATOR_S
,
"filebrowser.conf"
,
NULL
);
g_key_file_load_from_file
(
config
,
config_file
,
G_KEY_FILE_NONE
,
NULL
);
g_key_file_load_from_file
(
config
,
config_file
,
G_KEY_FILE_NONE
,
NULL
);
open_cmd
=
utils_get_setting_string
(
config
,
"filebrowser"
,
"open_command"
,
"nautilus
\"
%d
\"
"
);
open_cmd
=
utils_get_setting_string
(
config
,
"filebrowser"
,
"open_command"
,
OPEN_CMD
);
/* g_key_file_get_boolean defaults to FALSE */
/* g_key_file_get_boolean defaults to FALSE */
show_hidden_files
=
g_key_file_get_boolean
(
config
,
"filebrowser"
,
"show_hidden_files"
,
NULL
);
show_hidden_files
=
g_key_file_get_boolean
(
config
,
"filebrowser"
,
"show_hidden_files"
,
NULL
);
hide_object_files
=
utils_get_setting_boolean
(
config
,
"filebrowser"
,
"hide_object_files"
,
TRUE
);
hide_object_files
=
utils_get_setting_boolean
(
config
,
"filebrowser"
,
"hide_object_files"
,
TRUE
);
...
...
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