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
961ccf38
Kaydet (Commit)
961ccf38
authored
Tem 17, 2014
tarafından
Kernc
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Migrated some old-style build_settings to new-style build-menu
üst
7a0285ee
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
40 additions
and
39 deletions
+40
-39
filetypes.c
data/filetypes.c
+9
-8
filetypes.cpp
data/filetypes.cpp
+9
-8
filetypes.haskell
data/filetypes.haskell
+6
-7
filetypes.python
data/filetypes.python
+6
-7
filetypes.ruby
data/filetypes.ruby
+7
-3
filetypes.sh
data/filetypes.sh
+3
-6
No files found.
data/filetypes.c
Dosyayı görüntüle @
961ccf38
...
...
@@ -78,18 +78,19 @@ context_action_cmd=
# 0 is spaces, 1 is tabs, 2 is tab & spaces
#type=1
[
build_settings
]
# %f will be replaced by the complete filename
# %e will be replaced by the filename without extension
# (use only one of it at one time)
compiler
=
gcc
-
Wall
-
c
"%f"
linker
=
gcc
-
Wall
-
o
"%e"
"%f"
run_cmd
=
"./%e"
[
build
-
menu
]
# %f will be replaced by the complete filename
# %e will be replaced by the filename without extension
# (use only one of it at one time)
FT_00_LB
=
_Compile
FT_00_CM
=
gcc
-
Wall
-
c
"%f"
FT_00_WD
=
FT_01_LB
=
_Build
FT_01_CM
=
gcc
-
Wall
-
o
"%e"
"%f"
FT_01_WD
=
FT_02_LB
=
_Lint
FT_02_CM
=
cppcheck
--
language
=
c
--
enable
=
warning
,
style
--
template
=
gcc
"%f"
FT_02_WD
=
EX_00_LB
=
_Execute
EX_00_CM
=
"./%e"
EX_00_WD
=
data/filetypes.cpp
Dosyayı görüntüle @
961ccf38
...
...
@@ -50,18 +50,19 @@ context_action_cmd=
# 0 is spaces, 1 is tabs, 2 is tab & spaces
#type=1
[
build_settings
]
# %f will be replaced by the complete filename
# %e will be replaced by the filename without extension
# (use only one of it at one time)
compiler
=
g
++
-
Wall
-
c
"%f"
linker
=
g
++
-
Wall
-
o
"%e"
"%f"
run_cmd
=
"./%e"
[
build
-
menu
]
# %f will be replaced by the complete filename
# %e will be replaced by the filename without extension
# (use only one of it at one time)
FT_00_LB
=
_Compile
FT_00_CM
=
g
++
-
Wall
-
c
"%f"
FT_00_WD
=
FT_01_LB
=
_Build
FT_01_CM
=
g
++
-
Wall
-
o
"%e"
"%f"
FT_01_WD
=
FT_02_LB
=
_Lint
FT_02_CM
=
cppcheck
--
language
=
c
++
--
enable
=
warning
,
style
--
template
=
gcc
"%f"
FT_02_WD
=
EX_00_LB
=
_Execute
EX_00_CM
=
"./%e"
EX_00_WD
=
data/filetypes.haskell
Dosyayı görüntüle @
961ccf38
...
...
@@ -72,17 +72,16 @@ context_action_cmd=
# 0 is spaces, 1 is tabs, 2 is tab & spaces
#type=1
[build_settings]
# %f will be replaced by the complete filename
# %e will be replaced by the filename without extension
# (use only one of it at one time)
compiler=ghc --make "%f"
run_cmd="./%e"
[build-menu]
# %f will be replaced by the complete filename
# %e will be replaced by the filename without extension
# (use only one of it at one time)
FT_00_LB=_Compile
FT_00_CM=ghc --make "%f"
FT_00_WD=
FT_02_LB=_Lint
FT_02_CM=hlint "%f"
FT_02_WD=
EX_00_LB=_Execute
EX_00_CM="./%e"
EX_00_WD=
data/filetypes.python
Dosyayı görüntüle @
961ccf38
...
...
@@ -61,18 +61,17 @@ context_action_cmd=
# 0 is spaces, 1 is tabs, 2 is tab & spaces
#type=0
[build_settings]
# %f will be replaced by the complete filename
# %e will be replaced by the filename without extension
# (use only one of it at one time)
compiler=python -m py_compile "%f"
run_cmd=python "%f"
[build-menu]
# %f will be replaced by the complete filename
# %e will be replaced by the filename without extension
# (use only one of it at one time)
FT_00_LB=_Compile
FT_00_CM=python -m py_compile "%f"
FT_00_WD=
FT_02_LB=_Lint
FT_02_CM=pep8 --max-line-length=80 "%f"
FT_02_WD=
error_regex=(.+):([0-9]+):([0-9]+)
EX_00_LB=_Execute
EX_00_CM=python "%f"
EX_00_WD=
data/filetypes.ruby
Dosyayı görüntüle @
961ccf38
...
...
@@ -73,9 +73,13 @@ context_action_cmd=
# 0 is spaces, 1 is tabs, 2 is tab & spaces
#type=1
[
build
_settings
]
[
build
-
menu
]
# %f will be replaced by the complete filename
# %e will be replaced by the filename without extension
# (use only one of it at one time)
compiler
=
ruby
-
c
"%f"
run_cmd
=
ruby
"%f"
FT_00_LB
=
_Compile
FT_00_CM
=
ruby
-
wc
"%f"
FT_00_WD
=
EX_00_LB
=
_Execute
EX_00_CM
=
ruby
"%f"
EX_00_WD
=
data/filetypes.sh
Dosyayı görüntüle @
961ccf38
...
...
@@ -52,12 +52,6 @@ context_action_cmd=
# 0 is spaces, 1 is tabs, 2 is tab & spaces
#type=1
[
build_settings]
# %f will be replaced by the complete filename
# %e will be replaced by the filename without extension
# (use only one of it at one time)
run_cmd
=
"./%f"
[
build-menu]
# %f will be replaced by the complete filename
# %e will be replaced by the filename without extension
...
...
@@ -65,3 +59,6 @@ run_cmd="./%f"
FT_02_LB
=
_Lint
FT_02_CM
=
shellcheck
--format
=
gcc
"%f"
FT_02_WD
=
EX_00_LB
=
_Execute
EX_00_CM
=
"./%f"
EX_00_WD
=
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