IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Ruby Discussion :

Thème foncé pour scite !


Sujet :

Ruby

  1. #1
    Membre extrêmement actif
    Avatar de Madmac
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Juin 2004
    Messages
    1 685
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Canada

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : Alimentation

    Informations forums :
    Inscription : Juin 2004
    Messages : 1 685
    Points : 1 376
    Points
    1 376
    Billets dans le blog
    7
    Par défaut Thème foncé pour scite !
    La documentation pour la configuration de la couleur d'erreur est très difficile à avoir. J'y suis arrivé! En voici un exemple:

    fichier .SciTEuser.properties

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
    606
    607
    608
    609
    610
    611
    612
    613
    614
    615
    616
    617
    618
    619
    620
    621
    622
    623
    624
    625
    626
    627
    628
    629
    630
    631
    632
    633
    634
    635
    636
    637
    638
    639
    640
    641
    642
    643
    644
    645
    646
    647
    648
    649
    650
    651
    652
    653
    654
    655
    656
    657
    658
    659
    660
    661
    662
    663
    664
    665
    666
    667
    668
    669
    670
    671
    672
    673
    674
    675
    676
    677
    678
    679
    680
    681
    682
    683
    684
    685
    686
    687
    688
    689
    690
    691
    692
    693
    694
    695
    696
    697
    698
    699
    700
    701
    702
    703
    704
    705
    706
    707
    708
    709
    710
    711
    712
    713
    714
    715
    716
    717
    718
    719
    720
    721
    722
    723
    724
    725
    726
    727
    728
    729
    730
    731
    732
    733
    734
    735
    736
    737
    738
    739
    740
    741
    742
    743
    744
    745
    746
    747
    748
    749
    750
    751
    752
    753
    754
    755
    756
    757
    758
    759
    760
    761
    762
    763
    764
    765
    766
    767
    768
    769
    770
    771
    772
    773
    774
    775
    776
    777
    778
    779
    780
    781
    782
    783
    784
    785
    786
    787
    788
    789
    790
    791
    792
    793
    794
    795
    796
    797
    798
    799
    800
    801
    802
    803
    804
    805
    806
    807
    808
    809
    810
    811
    812
    813
    814
    815
    816
    817
    818
    819
    820
    821
    822
    823
    824
    825
    826
    827
    828
    829
    830
    831
    832
    833
    834
    835
    836
    837
    838
    839
    840
    841
    842
    843
    844
    845
    846
    847
    848
    849
    850
    851
    852
    853
    854
    855
    856
    857
    858
    859
    860
    861
    862
    863
    864
    865
    866
    867
    868
    869
    870
    871
    872
    873
    874
    875
    876
    877
    878
    879
    880
    881
    882
    883
    884
    885
    886
    887
    888
    889
    890
    891
    892
    893
    894
    895
    896
    897
    898
    899
    900
    901
    902
    903
    904
    905
    906
    907
    908
    909
    910
    911
    912
    913
    914
    915
    916
    917
    918
    919
    920
    921
    922
    923
    924
    925
    926
    927
    928
    929
    930
    931
    932
    933
    934
    935
    936
    937
    938
    939
    940
    941
    942
    943
    944
    945
    946
    947
    948
    949
    950
    951
    952
    953
    954
    955
    956
    957
    958
    959
    960
    961
    962
    963
    964
    965
    966
    967
    968
    969
    970
    971
    972
    973
    974
    975
    976
    977
    978
    979
    980
    981
    982
    983
    984
    985
    986
    987
    988
    989
    990
    991
    992
    993
    994
    995
    996
    997
    998
    999
    1000
    1001
    1002
    1003
    1004
    1005
    1006
    1007
    1008
    1009
    1010
    1011
    1012
    1013
    1014
    1015
    1016
    1017
    1018
    1019
    1020
    1021
    1022
    1023
    1024
    1025
    1026
    1027
    1028
    1029
    1030
    1031
    1032
     
     # Global initialisation file for SciTE
    # For Linux, place in $prefix/share/scite
    # For Windows, place in same directory as SciTE.EXE (or Sc1.EXE)
    # Documentation at <a href="http://www.scintilla.org/SciTEDoc.html" target="_blank">http://www.scintilla.org/SciTEDoc.html</a>
     
    # Globals
     
    # Window sizes and visibility
    if PLAT_WIN
    	position.left=0
    	position.top=0
    if PLAT_GTK
    	position.left=5
    	position.top=22
    position.width=$(scale 576)
    position.height=$(scale 740)
    #position.maximize=1
    #position.tile=1
    #full.screen.hides.menu=1
    #minimize.to.tray=1
    split.vertical=1
    #output.horizontal.size=200
    #output.vertical.size=60
    #output.initial.hide=1
    #horizontal.scrollbar=0
    #horizontal.scroll.width=10000
    #horizontal.scroll.width.tracking=0
    #output.horizontal.scrollbar=0
    #output.horizontal.scroll.width=10000
    #output.horizontal.scroll.width.tracking=0
    #output.scroll=0
    #error.select.line=1
    #end.at.last.line=0
    tabbar.visible=1
    #tabbar.hide.one=1
    #tabbar.multiline=1
    #toolbar.visible=1
    #toolbar.usestockicons=1
    #toolbar.large=1
    #menubar.detachable=1
    #undo.redo.lazy=1
    #statusbar.visible=1
    #fileselector.width=800
    #fileselector.height=600
    #fileselector.show.hidden=1
    #magnification=-1
    #output.magnification=-1
     
    # Sizes and visibility in edit pane
    #line.margin.visible=1
    line.margin.width=4
    margin.width=$(scale 16)
    fold.margin.width=$(scale 14)
    #fold.margin.colour=#FF0000
    #fold.margin.highlight.colour=#8989ff
    #blank.margin.left=4
    #blank.margin.right=4
    buffered.draw=1
    #phases.draw=2
    if PLAT_WIN
    	technology=1
    #font.quality=3
    if PLAT_MAC
    	font.quality=3
     
    # Element styles
    #view.eol=1
    #control.char.symbol=.
    caret.period=500
    view.whitespace=0
    view.indentation.whitespace=1
    view.indentation.guides=1
    view.indentation.examine=3
    highlight.indentation.guides=1
    #caret.fore=#FF0000
    #caret.additional.blinks=0
    #caret.width=2
    #caret.line.back=#FFFED8
    #caret.line.back.alpha=63
    edge.column=200
    edge.mode=0
    edge.colour=#C0DCC0
    braces.check=1
    braces.sloppy=1
    #selection.fore=#006000
    # DADADA used as background because it yields standard silver C0C0C0
    # on low colour displays and a reasonable light grey on higher bit depths
    if PLAT_WINNT
    	selection.alpha=32
    	selection.back=#000000
    if PLAT_GTK
    	selection.alpha=30
    	selection.back=#000000
    if PLAT_MAC
    	selection.alpha=32
    	selection.back=#000000
    #selection.additional.fore=#0000A0
    #selection.additional.back=#000080
    #selection.additional.alpha=20
    #selection.rectangular.switch.mouse=1
    #selection.multiple=0
    #selection.additional.typing=0
    #virtual.space=3
    #rectangular.selection.modifier=4
    #whitespace.fore=#FF0000
    #whitespace.back=#FFF0F0
    #error.marker.fore=#0000A0
    #error.marker.back=#DADAFF
    #error.inline=1
    bookmark.fore=#BE0000
    #bookmark.back=#FFFFA0
    #bookmark.alpha=
    #find.mark=#8989ff
    #find.mark.indicator=style:compositionthick,colour:#FFB700,under
    #highlight.current.word=1
    #highlight.current.word.by.style=1
    #highlight.current.word.colour=#00D040
    #highlight.current.word.indicator=style:roundbox,colour:#0080FF,under,outlinealpha:140,fillalpha:80
    #indicators.alpha=63
    #indicators.under=1
     
    # Scripting
    ext.lua.startup.script=$(SciteUserHome)/SciTEStartup.lua
    ext.lua.auto.reload=1
    #ext.lua.reset=1
     
    # Checking
    are.you.sure=1
    #are.you.sure.for.build=1
    #save.all.for.build=1
    #quit.on.close.last=1
    #load.on.activate=1
    #save.on.deactivate=1
    #are.you.sure.on.reload=1
    #save.on.timer=20
    #reload.preserves.undo=1
    #check.if.already.open=1
    #temp.files.sync.load=1
    default.file.ext=.cxx
    #source.default.extensions=.h|.cxx|.bat
    #title.full.path=1
    #title.show.buffers=1
    #pathbar.visible=1
    #save.recent=1
    #save.session=1
    #session.bookmarks=1
    #session.folds=1
    #save.position=1
    #save.find=1
    #open.dialog.in.file.directory=1
    #strip.trailing.spaces=1
    #ensure.final.line.end=1
    #ensure.consistent.line.ends=1
    #save.deletes.first=1
    #save.check.modified.time=1
    buffers=40
    #buffers.zorder.switching=1
    #api.*.cxx=d:\api\w.api
    #locale.properties=locale.de.properties
    #translation.missing=***
    #read.only=1
    #background.open.size=20000
    #background.save.size=20000
    if PLAT_GTK
    	background.save.size=10000000
    #max.file.size=1
     
    # Indentation
    tabsize=3
    indent.size=3
    use.tabs=1
    #indent.auto=1
    indent.automatic=1
    indent.opening=0
    indent.closing=0
    #tab.indents=0
    #backspace.unindents=0
     
    # Wrapping of long lines
    #wrap=1
    #wrap.style=2
    #cache.layout=3
    #output.wrap=1
    #output.cache.layout=3
    #wrap.visual.flags=3
    #wrap.visual.flags.location=3
    #wrap.indent.mode=1
    #wrap.visual.startindent=4
     
    # Folding
    # enable folding, and show lines below when collapsed.
    fold=1
    fold.compact=1
    fold.flags=16
    fold.symbols=1
    #fold.highlight=1
    #fold.highlight.colour=#00C0C0
    #fold.on.open=1
    fold.comment=1
    fold.preprocessor=1
     
    # Find and Replace
    # Internal search always available with recursive capability so use in preference to external tool
    find.command=
    # findstr is available on recent versions of Windows including 2000
    #if PLAT_WIN
    #	find.command=findstr /n /s $(find.what) $(find.files)
    #find.input=$(find.what)
    #if PLAT_GTK
    #	find.command=grep --line-number "$(find.what)" $(find.files)
    find.files=*.c *.cxx *.h
    #find.in.files.close.on.find=0
    #find.in.dot=1
    #find.in.binary=1
    #find.in.directory=
    #find.close.on.find=0
    #find.replace.matchcase=1
    #find.replace.escapes=1
    #find.replace.regexp=1
    #find.replace.regexp.posix=1
    #find.replace.wrap=0
    #find.replacewith.focus=0
    #find.replace.advanced=1
    find.use.strip=1
    #find.strip.incremental=1
    #find.indicator.incremental=style:compositionthick,colour:#FFB700,under
    replace.use.strip=1
    #replace.strip.incremental=1
    #strip.button.height=24
     
    # Behaviour
    #eol.mode=LF
    eol.auto=1
    clear.before.execute=0
    #vc.home.key=1
    #wrap.aware.home.end.keys=1
    #autocompleteword.automatic=1
    #autocomplete.choose.single=1
    #autocomplete.*.fillups=([
    #autocomplete.*.start.characters=.:
    caret.policy.xslop=1
    caret.policy.width=20
    caret.policy.xstrict=0
    caret.policy.xeven=0
    caret.policy.xjumps=0
    caret.policy.yslop=1
    caret.policy.lines=1
    caret.policy.ystrict=1
    caret.policy.yeven=1
    caret.policy.yjumps=0
    #visible.policy.strict=1
    #visible.policy.slop=1
    #visible.policy.lines=4
    #time.commands=1
    #caret.sticky=1
    #properties.directory.enable=1
     
    # Status Bar
    statusbar.number=4
    statusbar.text.1=\
    li=$(LineNumber) co=$(ColumnNumber) $(OverType) ($(EOLMode)) $(FileAttr)
    statusbar.text.2=\
    $(BufferLength) chars in $(NbOfLines) lines. Sel: $(SelLength) chars.
    statusbar.text.3=\
    Now is: Date=$(CurrentDate) Time=$(CurrentTime)
    statusbar.text.4=\
    $(FileNameExt) : $(FileDate) - $(FileTime) | $(FileAttr)
     
    if PLAT_WIN
    	command.scite.help="file://$(SciteDefaultHome)\SciTEDoc.html"
    	command.scite.help.subsystem=2
    if PLAT_GTK
    	command.print.*=a2ps "$(FileNameExt)"
    	command.scite.help=xdg-open "file://$(SciteDefaultHome)/SciTEDoc.html"
     
    # Internationalisation
    # Japanese input code page 932 and ShiftJIS character set 128
    #code.page=932
    #character.set=128
    # Unicode
    #code.page=65001
    code.page=0
    #character.set=204
    #command.discover.properties=python /home/user/FileDetect.py "$(FilePath)"
    # Required for Unicode to work on GTK+:
    #LC_CTYPE=en_US.UTF-8
    if PLAT_GTK
    	output.code.page=65001
    if PLAT_MAC
    	output.code.page=65001
    #ime.interaction=1
    #ime.autocomplete=1
     
    # Export
    #export.keep.ext=1
    export.html.wysiwyg=1
    #export.html.tabs=1
    #export.html.folding=1
    export.html.styleused=1
    #export.html.title.fullpath=1
    #export.rtf.tabs=1
    #export.rtf.font.face=Arial
    #export.rtf.font.size=9
    #export.rtf.tabsize=8
    #export.rtf.wysiwyg=0
    #export.tex.title.fullpath=1
    # Magnification (added to default screen font size)
    export.pdf.magnification=0
    # Font: Courier, Helvetica or Times (Courier line-wraps)
    export.pdf.font=Helvetica
    # Page size (in points): width, height
    # E.g. Letter 612,792; A4 595,842; maximum 14400,14400
    export.pdf.pagesize=595,842
    # Margins (in points): left, right, top, bottom
    export.pdf.margins=72,72,72,72
    export.xml.collapse.spaces=1
    export.xml.collapse.lines=1
     
    # Define values for use in the imported properties files
    chars.alpha=abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    chars.numeric=0123456789
    chars.accented=ŠšŒœŸÿÀàÁáÂâÃãÄäÅåÆæÇçÈèÉéÊêËëÌìÍíÎîÏïÐðÑñÒòÓóÔôÕõÖØøÙùÚúÛûÜüÝýÞþßö
    # This is a better set for Russian:
    #chars.accented=ÀàÁáÂâÃãÄäÅ娸ÆæÇçÈèÉéÊêËëÌìÍíÎîÏïÐðÑñÒòÓóÔôÕõÖö×÷ØøÙùÚúÛûÜüÝýÞþßÿ
     
    # The open.filter setting is used in the file selector which has a menu of filters to apply
    # to the types of files seen when opening.
    # There is a limit (possibly 256 characters) to the length of a filter on Windows,
    # so not all source extensions can be in this setting.
    source.files=*.asm;*.c;*.cc;*.cpp;*.cxx;*.cs;*.h;*.hh;*.hxx;*.hpp;\
    *.idl;*.odl;*.rc;*.rc2;*.dlg;*.def;\
    *.vb;*.vbs;*.bas;*.frm;*.cls;*.ctl;\
    *.java;*.js;*.py;*.pyw;*.pl;*.rb;*.cgi;*.lua;*.conf;\
    make*;*.mak;\
    *.properties;*.html;*.xml;*.iface;*.bat;*.e;*.m;*.mm;\
    *.sh;*.patch
     
    # Each platform has a different idea of the most important filters
    if PLAT_WIN
    	all.files=All Files (*.*)|*.*|
    	top.filters=All Source|$(source.files)|$(all.files)
    if PLAT_GTK
    	all.files=All Files (*)|*|Hidden Files (.*)|.*|
    	top.filters=All Source|$(source.files)|$(all.files)
    # As OS X only greys out filtered files, show all as default
    if PLAT_MAC
    	all.files=All Files (*.*)|*.*|
    	top.filters=$(all.files)All Source|$(source.files)|
     
    open.filter=\
    $(top.filters)\
    $(filter.ada)\
    $(filter.conf)\
    $(filter.asm)\
    $(filter.asn1)\
    $(filter.ave)\
    $(filter.baan)\
    $(filter.bash)\
    $(filter.caml)\
    $(filter.cmake)\
    $(filter.cobol)\
    $(filter.cpp)\
    $(filter.css)\
    $(filter.d)\
    $(filter.eiffel)\
    $(filter.erlang)\
    $(filter.fortran)\
    $(filter.gap)\
    $(filter.hs)\
    $(filter.idl)\
    $(filter.ihex)\
    $(filter.inno)\
    $(filter.java)\
    $(filter.js)\
    $(filter.kix)\
    $(filter.lout)\
    $(filter.lua)\
    $(filter.matlab)\
    $(filter.metapost)\
    $(filter.mmixal)\
    $(filter.modula3)\
    $(filter.nncrontab)\
    $(filter.nsis)\
    $(filter.opal)\
    $(filter.pascal)\
    $(filter.perl)\
    $(filter.php)\
    $(filter.pov)\
    $(filter.powershell)\
    $(filter.prg)\
    $(filter.properties)\
    $(filter.ps)\
    $(filter.python)\
    $(filter.r)\
    $(filter.ruby)\
    $(filter.rust)\
    $(filter.sql)\
    $(filter.specman)\
    $(filter.srec)\
    $(filter.tcl)\
    $(filter.tehex)\
    $(filter.tex)\
    $(filter.text)\
    $(filter.txt2tags)\
    $(filter.vb)\
    $(filter.web)\
    $(filter.yaml)\
    $(filter.verilog)\
    $(filter.vhdl)
     
    #$(filter.ch)\
     
    #save.filter=$(open.filter)
     
    # Give symbolic names to the set of fonts used in the standard styles.
    if PLAT_WIN
    	font.base=font:Verdana,size:12
    	font.small=font:Verdana,size:8
    	font.comment=font:Georgia,size:10.1
    	font.code.comment.box=$(font.comment)
    	font.code.comment.line=$(font.comment)
    	font.code.comment.doc=$(font.comment)
    	font.code.comment.nested=$(font.comment)
    	font.text=font:Times New Roman,size:11
    	font.text.comment=font:Verdana,size:9
    	font.embedded.base=font:Verdana,size:9
    	font.embedded.comment=font:Comic Sans MS,size:8
    	font.monospace=font:Hack,size:13
    	font.vbs=font:Lucida Sans Unicode,size:10
    if PLAT_GTK
    	font.base=font:Bitstream Vera Sans,size:12
    	font.small=font:Bitstream Vera Sans,size:10
    	font.comment=font:Bitstream Vera Serif,size:11
    	font.code.comment.box=$(font.comment)
    	font.code.comment.line=$(font.comment)
    	font.code.comment.doc=$(font.comment)
    	font.code.comment.nested=$(font.comment)
    	font.text=font:Bitstream Charter,size:12
    	font.text.comment=font:Serif,size:11
    	font.embedded.base=font:Serif,size:11
    	font.embedded.comment=font:Serif,size:11
    	font.monospace=font:Hack,size:12
    	font.vbs=font:Bitstream Vera Sans Mono,size:11
    if PLAT_MAC
    	font.base=font:Verdana,size:12
    	font.small=font:Verdana,size:10
    	font.comment=font:Georgia,size:13
    	font.code.comment.box=$(font.comment)
    	font.code.comment.line=$(font.comment)
    	font.code.comment.doc=$(font.comment)
    	font.code.comment.nested=$(font.comment)
    	font.text=font:Times New Roman,size:13
    	font.text.comment=font:Verdana,size:11
    	font.embedded.base=font:Verdana,size:11
    	font.embedded.comment=font:Comic Sans MS,size:10
    	font.monospace=font:Courier New,size:12
    	font.vbs=font:Lucida Sans Unicode,size:12
    font.js=$(font.comment)
     
    # Give symbolic names to the set of colours used in the standard styles.
    colour.code.comment.box=fore:#66b266 
    colour.code.comment.line=fore:#66b266 
    colour.code.comment.doc=fore:#3F703F
    colour.code.comment.nested=fore:#A0C0A0
    colour.text.comment=fore:#8989ff,back:#D0F0D0
    colour.other.comment=fore:#66b266 
    colour.embedded.comment=back:#E0EEFF
    colour.embedded.js=back:#F0F0FF
    colour.notused=back:#FF0000
     
    colour.number=fore:#4ca5a5
    colour.keyword=fore:#6666b2
    colour.string=fore:#bf7fbf 
    colour.char=fore:#bf7fbf 
    colour.operator=fore:#888888
    colour.preproc=fore:#b2b266
    colour.error=fore:#FFFF00,back:#FF0000
     
    # Global default styles for all languages
    # Default
    style.*.32=$(font.base)
    # Line number
    style.*.33=back:#C0C0C0,$(font.base)
    # Brace highlight
    style.*.34=fore:#8989ff,bold
    # Brace incomplete highlight
    style.*.35=fore:#FF0000,bold
    # Control characters
    style.*.36=
    # Indentation guides
    style.*.37=fore:#C0C0C0,back:#FFFFFF
     
    # Printing
    #print.colour.mode=1
    print.magnification=-1
    # Windows-only setup: left, right, top, bottom margins, in local units:
    # hundredths of millimeters or thousandths of inches
    print.margins=1500,1000,1000,1500
    # Header/footer:
    print.header.format=$(FileNameExt) -- Printed on $(CurrentDate), $(CurrentTime) -- Page $(CurrentPage)
    print.footer.format=$(FilePath) -- File date: $(FileDate) -- File time: $(FileTime)
    # Header/footer style
    print.header.style=font:Arial,size:12,bold
    print.footer.style=font:Arial Narrow,size:10,italics
     
    # Warnings - only works on Windows and needs to be pointed at files on machine
    #if PLAT_WIN
    #	warning.findwrapped=100,E:\Windows\Media\SFX\Boing.wav
    #	warning.notfound=0,Effect.wav
    #	warning.wrongfile=0,Glass.wav
    #	warning.executeok=0,Fanfare.wav
    #	warning.executeko=100,GlassBreak.wav
    #	warning.nootherbookmark=100,Boing2.wav
     
    # Define the Lexer menu,
    # Each item contains three parts: menu string | file extension | key
    # The only keys allowed currently are based on F-keys and alphabetic keys and look like
    # [Ctrl+][Shift+][Fn|a] such as F12 or Ctrl+Shift+D.
    # A '&' may be placed before a letter to be used as an accelerator. This does not work on GTK+.
     
    keyText=Shift+F11
    keyMake=Ctrl+Shift+F11
    keyHTML=F12
    keyXML=Shift+F12
    # On OS X, F11 is used by Expose, F12 by Dashbard
    if PLAT_MAC
    	os.x.home.end.keys=1
    	keyText=Shift+F13
    	keyMake=Ctrl+Shift+F13
    	keyHTML=Ctrl+Shift+F14
    	keyXML=Shift+F14
     
    default.languages=\
    #FreeBasic|bas||\
    Text|txt|$(keyText)|\
    Ada|ads||\
    #Apache Confi&g|conf||\
    Assembler|asm||\
    #ASN.1|mib||\
    #Avenue|ave||\
    #Baan|bc||\
    &Batch|bat||\
    #Bullant|ant||\
    &C / C++|c||\
    #CMake|cmake||\
    C&#|cs||\
    #COBOL|cob||\
    #Csound|orc||\
    CSS|css||\
    D|d||\
    &Difference|diff||\
    #&Eiffel|e||\
    #Erlang|erl||\
    &Errorlist|err||\
    #FlagShip|prg||\
    #Forth|forth||\
    &Fortran|f90||\
    #Gap|g||\
    #Haskell|hs||\
    H&ypertext|html|$(keyHTML)|\
    #&InnoSetup|iss||\
    #Intel HEX|hex||\
    &Java|java||\
    Java&Script|js||\
    #&Kix|kix||\
    Lisp|lisp||\
    #Lot|lot||\
    #Lout|lt||\
    Lu&a|lua||\
    Matlab|m.matlab||\
    &Makefile|mak|$(keyMake)|\
    #MetaPost|mp||\
    #MMIXAL|mms||\
    #Modula-3|m3||\
    #&nnCron crontab|tab||\
    #NSIS|nsis||\
    #Objective Caml|ml||\
    #Octave|m.octave||\
    #Opal|impl||\
    Pascal|pas||\
    Pe&rl|pl||\
    P&HP|php||\
    #P&LSQL|spec||\
    #P&ostScript|ps||\
    #P&OV-Ray SDL|pov||\
    #PowerShell|ps1||\
    #PowerPro|powerpro||\
    &Properties|properties||\
    Pytho&n|py||\
    #R|R||\
    #Reso&urce|rc||\
    Ruby|rb||\
    #Rust|rs||\
    Shell|sh||\
    S&QL|sql||\
    #Specman|e||\
    #S-Record|mot||\
    &TCL|tcl||\
    #Tektronix extended HEX|tek||\
    TeX|tex||\
    #&txt2tags|t2t||\
    &VB|vb||\
    VBScr&ipt|vbs||\
    #Verilog|v||\
    #VHDL|vhd||\
    &XML|xml|$(keyXML)|\
    YAML|yaml||
     
    menu.language=$(default.languages)
     
    # User defined key commands
    user.shortcuts=\
    Ctrl+Shift+V|IDM_PASTEANDDOWN|\
    Ctrl+PageUp|IDM_PREVFILE|\
    Ctrl+PageDown|IDM_NEXTFILE|
     
    #KeypadPlus|IDM_EXPAND|\
    #KeypadMinus|IDM_BLOCK_COMMENT|
     
    #user.context.menu=\
    #||\
    #Next File|IDM_NEXTFILE|\
    #Prev File|IDM_PREVFILE|
     
    # To keep menus short, these .properties files are not loaded by default.
    imports.exclude=abaqus asl asn1 au3 avenue avs baan blitzbasic bullant \
    cobol cmake csound ecl escript flagship forth freebasic gap haskell hex inno \
    kix latex lot lout metapost mmixal modula3 nimrod nncrontab nsis \
    opal oscript powerpro powershell purebasic r rebol rust \
    scriptol smalltalk sorcins spice specman \
    tacl tal txt2tags verilog vhdl
    # Newly removed: ave baan escript lot metapost mmixal
    # The set of imports allowed can be set with
    #imports.include=ave
     
    # Import all the language specific properties files in this directory
    import *
     
     
     
     style.*.32=$(font.base),back:#2b2f3b,fore:#04c4ff
    style.*.33=back:#44424f,$(font.base)
    style.*.37=fore:#939393
    caret.fore=#FFFFFF
    selection.alpha=75
    selection.back=#FFFFFF
    colour.keyword=fore:#649bff
    colour.operator=fore:#727272
     
    #caret.fore=#FF0000
    #caret.additional.blinks=0
    #caret.width=2
    #caret.line.back=#FFFED8
    #caret.line.back.alpha=63
     
    line.margin.visible=1
    line.margin.width=4
     
     
    margin.width=$(scale 16)
    fold.margin.width=$(scale 14)
    fold.margin.colour=#000000
    fold.margin.highlight.colour=#2b2f3b
     
    tabsize=4
    indent.size=4
    use.tabs=1
    view.indentation.guides=0
     
    fold.fore=#605f60
    fold.back=#000000
    #fold.margin.colour=#FF0000
    #fold.margin.highlight.colour=#8989ff
    #fold.highlight=1
    #fold.highlight.colour=#00C0C0
    #fold.on.open=1
    # Internationalisation
    # Japanese input code page 932 and ShiftJIS character set 128
    #code.page=932
    #character.set=128
     
    # Unicode
    code.page=65001
    #character.set=204
     
    # Required for Unicode to work on GTK+:
    LC_CTYPE=en_US.UTF-8
    output.code.page=65001
     
    style.errorlist.32=$(font.base),back:#232630
    style.errorlist.0=fore:#FFFFFF
     
    # Give symbolic names to the set of colours used in the standard styles.
    colour.code.comment.box=fore:#00C0C0,back:#FEFEFE
    colour.code.comment.line=fore:#00C0C0,back:#FEFEFE
    colour.code.comment.doc=fore:#00C0C0,back:#FEFEFE
    colour.text.comment=fore:#00C0C0,back:#D0F0D0
    colour.text.comment=fore:#00C0C0,back:#D0F0D0
    colour.constant=fore:#607F00,back:#FEFEFE
    colour.embedded.comment=back:#E0EEFF
    colour.embedded.js=back:#F3F3F3
    colour.notused=back:#FF0000
     
    colour.number=fore:#007F7F
    colour.keyword=fore:#00008F
    colour.string=fore:#7F007F
    colour.char=fore:#7F007F
    colour.operator=fore:#555555
    colour.preproc=fore:#7F7F00
    colour.error=fore:#FFFF00,back:#FF0000
     
     
     
    # Define SciTE settings for other simple files.
     
    file.patterns.props=*.properties;*.session;*.ini;*.inf;*.url;*.cfg;*.cnf;*.aut
    file.patterns.text=*.txt;*.log;*.lst;*.doc;*.diz;*.nfo
    file.patterns.batch=*.bat;*.cmd;*.nt
    file.patterns.diff=*.diff;*.patch
    file.patterns.make=makefile;Makefile;*.mak;configure
     
    filter.properties=Properties (ini inf reg url cfg cnf)|$(file.patterns.props)|
    filter.text=Text (txt log lst doc diz nfo)|$(file.patterns.text);make*|
    filter.batch=Batch (bat cmd nt)|$(file.patterns.batch)|
    filter.diff=Difference (diff patch)|$(file.patterns.diff)|
     
    lexer.$(file.patterns.props)=props
    lexer.$(file.patterns.batch)=batch
    lexer.*.err=errorlist
    lexer.$(file.patterns.make)=makefile
    lexer.*.iface=makefile
    lexer.$(file.patterns.diff)=diff
     
    word.characters.$(file.patterns.text)=$(chars.alpha)$(chars.numeric)$(chars.accented)-'
     
    colour.other.operator=fore:#dfbf99
     
    # Properties styles
     
    # Default
    style.props.0=
    # Comment
    style.props.1=fore:#66b2b2,$(font.comment)
    # Section
    style.props.2=$(colour.string),back:#E0F0F0,eolfilled
    # Assignment operator
    style.props.3=$(colour.other.operator)
    # Default value (@)
    style.props.4=$(colour.preproc)
    # Key
    style.props.5=
    # Matched Operators
    style.props.34=fore:#8989ff,notbold
    style.props.35=fore:#FF0000,notbold
    comment.block.props=#~
    preprocessor.symbol.$(file.patterns.make)=!
    preprocessor.start.$(file.patterns.make)=IF IFDEF IFNDEF
    preprocessor.middle.$(file.patterns.make)=ELSE ELSEIF ELSEIFDEF ELSEIFNDEF
    preprocessor.end.$(file.patterns.make)=ENDIF
     
    # Batch styles
     
    # List from <a href="http://www.easydos.com/dosindex.html" target="_blank">http://www.easydos.com/dosindex.html</a> and <a href="https://sourceforge.net/p/scintilla/bugs/1686/" target="_blank">https://sourceforge.net/p/scintilla/bugs/1686/</a>
    # I limit here the commands to those built in command.com, ie. I don't list external Dos commands
    # if [no] (test) (command) -- test is EXIST (filename) | (string1)==(string2) | ERRORLEVEL (number)
    # for %%(variable) IN (set) DO (command) -- variable is [a-zA-Z] -- eg for %%X in (*.txt) do type %%X
    # Also includes device names.
    keywordclass.batch=\
    assoc aux break call cd chcp chdir choice cls cmdextversion \
    color com1 com2 com3 com4 con copy ctty date defined \
    del dir do dpath echo else endlocal erase errorlevel exist \
    exit for ftype goto if in lpt1 lpt2 lpt3 lpt4 md mkdir move \
    not nul path pause popd prompt prn pushd rd rem ren \
    rename rmdir set setlocal shift start time title type ver \
    verify vol 
    keywords.$(file.patterns.batch)=$(keywordclass.batch)
     
    # Optional list of external commands to highlight in style 5.
    # If not set all commands are highlighted in style 5.
    #keywords2.$(file.patterns.batch)=append attrib chkdsk comp diskcomp
     
    # Default
    style.batch.0=fore:#FFFFFF
    # Comment (rem or ::)
    style.batch.1=fore:#adc2ad,$(font.comment)
    # Keywords
    style.batch.2=$(colour.keyword),bold
    # Label (line beginning with ':')
    style.batch.3=$(colour.string),back:#606060,fore:#FFFF00,eolfilled
    # Hide command character ('@')
    style.batch.4=$(colour.preproc)
    # External commands
    style.batch.5=fore:#007090,$(font.monospace),bold
    # Variable: %%x (x is almost whatever, except space and %), %n (n in [0-9]), %EnvironmentVar%
    style.batch.6=fore:#b266b2
    # Operator: * ? < > |
    style.batch.7=fore:#cccccc
     
    comment.block.batch=REM ~
     
    # Makefile styles
     
    # Default
    style.makefile.0=fore:#cccccc
    # Comment: #
    style.makefile.1=$(colour.other.comment),$(font.code.comment.box)
    # Pre-processor or other comment: !
    style.makefile.2=$(colour.preproc)
    # Variable: $(x)
    style.makefile.3=fore:#9999cc
    # Operator
    style.makefile.4=$(colour.other.operator)
    # Target
    style.makefile.5=fore:#e2b2b2
    # Error
    style.makefile.9=$(colour.error),eolfilled
    # Matched Operators
    style.makefile.34=fore:#8989ff,notbold
    style.makefile.35=fore:#FF0000,notbold
     
    comment.block.makefile=#~
     
    # Error list styles
     
    style.errorlist.32=fore:#dfbf99,$(font.small)
    # Default
    style.errorlist.0=fore:#cccccc
    # python Error
    style.errorlist.1=fore:#FF0000
    # gcc Error
    style.errorlist.2=fore:#b266b2
    # Microsoft Error
    style.errorlist.3=fore:#cccc99
    # command or return status
    style.errorlist.4=fore:#8989ff
    # Borland error and warning messages
    style.errorlist.5=fore:#dfbf99
    # perl error and warning messages
    style.errorlist.6=fore:#FF0000
    # .NET tracebacks
    style.errorlist.7=fore:#FF0000
    # Lua error and warning messages
    style.errorlist.8=fore:#FF0000
    # ctags
    style.errorlist.9=fore:#FF00FF
    # diff changed !
    style.errorlist.10=fore:#adc2ad
    # diff addition +
    style.errorlist.11=fore:#9999cb
    # diff deletion -
    style.errorlist.12=fore:#66b2b2
    # diff message ---
    style.errorlist.13=fore:#e5cbcb
    # PHP error
    style.errorlist.14=fore:#FF0000
    # Essential Lahey Fortran 90 error
    style.errorlist.15=fore:#FF0000
    # Intel Fortran Compiler error
    style.errorlist.16=fore:#FF0000
    # Intel Fortran Compiler v8.0 error/warning
    style.errorlist.17=fore:#FF0000
    # Absoft Pro Fortran 90/95 v8.2 error or warning
    style.errorlist.18=fore:#FF0000
    # HTML Tidy
    style.errorlist.19=fore:#FF0000
    # Java runtime stack trace
    style.errorlist.20=fore:#FF0000
    # Text matched with find in files and message part of GCC errors
    style.errorlist.21=fore:#cccccc
    # GCC showing include path to following error
    style.errorlist.22=fore:#bb77bb
    # Ensures that spacing is not affected by line number styles
    style.errorlist.33=$(font.small)
     
    lexer.errorlist.value.separate=1
     
    # Difference styles
     
    # Default
    style.diff.0=fore:#cccccc
    # Comment (part before "diff ..." or "--- ..." and , Only in ..., Binary file...)
    style.diff.1=fore:#adc2ad
    # Command (diff ...)
    style.diff.2=fore:#cbcb99
    # Source file (--- ...) and Destination file (+++ ...)
    style.diff.3=fore:#e5cbcb
    # Position setting (@@ ...)
    style.diff.4=fore:#c890c8 
    # Line removal (-...)
    style.diff.5=fore:#66b2b2
    # Line addition (+...)
    style.diff.6=fore:#9999cb
    # Line change (!...)
    style.diff.7=fore:#d8d8d8
     
    command.build.makefile=make
    command.build.*.mak=make
     
    command.help.*.properties="file://$(SciteDefaultHome)/SciTEDoc.html#property-$(CurrentSelection)"
    command.help.subsystem.*.properties=2
     
    if PLAT_WIN
    	command.go.*.bat="$(FileNameExt)"
    	command.name.0.*.bat=Execute Selection
    	command.0.*.bat=$(CurrentSelection)
    	command.name.1.*.mak=nmake
    	command.1.*.mak=nmake -f $(FileNameExt)
     
    # ruby styles
    # White space
    style.ruby.0=fore:#808080
    # Error
    style.ruby.1=back:#FF0000
    # Comment line
    style.ruby.2=fore:#00C0C0,$(font.comment)
    # POD
    style.ruby.3=fore:#aaaaad,back:#373742,$(font.monospace),eolfilled
    # Number
    style.ruby.4=fore:#9ED100
    # keyWord
    style.ruby.5=fore:#00EFFF
    # String
    style.ruby.6=fore:#fb5bff
    # Character
    style.ruby.7=fore:#fc82ff
    # Class name
    style.ruby.8=fore:#15FF00
    # Def name
    style.ruby.9=fore:#00E874
    # Operator
    style.ruby.10=fore:#FFED05
    # Identifier
    style.ruby.11=
    # Regex
    style.ruby.12=fore:#000000,back:#A0FFA0
    # Global
    style.ruby.13=fore:#9AA6FF
    # Symbol
    style.ruby.14=fore:#00E801
    # MODULE_NAME
    style.ruby.15=fore:#A000A0,bold
    # INSTANCE_VAR
    style.ruby.16=fore:#7BFF00
    #style.ruby.16=fore:#B00080
    # CLASS_VAR
    style.ruby.17=fore:#B5E800
    # BACKTICKS
    style.ruby.18=fore:#FFFF00,back:#A08080
    # DATASECTION
    style.ruby.19=fore:#600000,back:#FFF0D8,eolfilled
    # HERE_DELIM
    style.ruby.20=fore:#000000,back:#DDD0DD
    # HERE_Q
    style.ruby.21=fore:#7F007F,back:#DDD0DD,eolfilled,notbold
    # HERE_QQ
    style.ruby.22=fore:#7F007F,back:#DDD0DD,eolfilled,bold
    # HERE_QX
    style.ruby.23=fore:#7F007F,back:#DDD0DD,eolfilled,italics
    # STRING_Q
    style.ruby.24=fore:#7F007F,$(font.monospace),notbold
    # STRING_QQ
    style.ruby.25=$(colour.string),$(font.monospace)
    # STRING_QX
    style.ruby.26=fore:#FFFF00,back:#A08080
    # STRING_QR
    style.ruby.27=fore:#000000,back:#A0FFA0
    # STRING_QW
    style.ruby.28=fore:#000000,back:#FFFFE0
    # Demoted Keyword
    style.ruby.29=$(style.ruby.5)
    # STDIN
    style.ruby.30=back:#ff0213
    # STDOUT
    style.ruby.31=back:#ff0213
    # STDERR
    #style.ruby.40=back:#FF8080
    style.ruby.40=back:#ff0213
    # SCE_RB_UPPER_BOUND allocated but unused
    style.ruby.41=back:#FF0000
     
    # Matched Operators
    style.ruby.34=fore:#8989ff,bold
    style.ruby.35=fore:#FF0000,bold
    # Braces are only matched in operator style
    braces.ruby.style=10
     
    # Global default styles for all languages
    # Default
    style.*.32=$(font.base),back:#1b1d25,fore:#ade4ff
    # Line number
    style.*.33=fore:#737373,back:#1b1d25,$(font.base)
    # Brace highlight
    style.*.34=fore:#FF0000,bold,back:#0000A0
    # Brace incomplete highlight
    style.*.35=fore::#009933,bold
    # Control characters
    style.*.36=
    # Indentation guides
    style.*.37=fore:#C0C0C0,back:#FFFFFF
     
     
    # FONT SETTINGS
    # Give symbolic names to the set of fonts used in the standard styles.
    if PLAT_WIN
    font.base=font:Segoe UI,size:12,$(font.override),back:#000000,fore:#99cc99
    font.small=font:Verdana,size:9,$(font.override)
    font.comment=font:Calibri,size:10,$(font.override)
    font.code.comment.box=$(font.comment),$(font.override)
    font.code.comment.line=$(font.comment),$(font.override)
    font.code.comment.doc=$(font.comment),$(font.override)
    font.text=font:Verdana,size:10,$(font.override)
    font.text.comment=font:Verdana,size:10,$(font.override)
    font.embedded.base=font:Verdana,size:10,$(font.override)
    font.embedded.comment=font:Calibri,size:10,$(font.override)
    font.vbs=font:Lucida Sans Unicode,size:10,$(font.override)
    font.monospace=font:Hack,size:10
    #  font.override=$(font.monospace)
    if PLAT_GTK
    font.base=font:lucidatypewriter,size:12
    font.small=font:lucidatypewriter,size:12
    font.comment=font:new century schoolbook,size:12
    font.code.comment.box=$(font.comment)
    font.code.comment.line=$(font.comment)
    font.code.comment.doc=$(font.comment)
    font.text=font:times,size:14
    font.text.comment=font:lucidatypewriter,size:12
    font.embedded.base=font:lucidatypewriter,size:12
    font.embedded.comment=font:lucidatypewriter,size:12
    font.monospace=font:Hack,size:12
    font.vbs=font:new century schoolbook,size:12
    font.js=$(font.comment)
    Cette configuration suppose la présence de la fonte Hack dans votre ordinateur. Mais pour corriger la taille et les fontes, les lignes à modifier se trouvent entre 1000 et 1031

  2. #2
    Membre averti Avatar de Javix
    Inscrit en
    Juin 2007
    Messages
    531
    Détails du profil
    Informations forums :
    Inscription : Juin 2007
    Messages : 531
    Points : 353
    Points
    353
    Par défaut
    Je ne vois vraiment pourquoi utiliser SCiTE et qui pourrait encore s'en servir compte tenu de nombreux éditeurs de text gratuits:
    - Sublime text
    - Atom
    - Visual Studio Code

    qui proposent tous des thèmes et plugins à chaque goût.

  3. #3
    Membre actif
    Profil pro
    Problem Solver
    Inscrit en
    Juin 2013
    Messages
    138
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations professionnelles :
    Activité : Problem Solver

    Informations forums :
    Inscription : Juin 2013
    Messages : 138
    Points : 231
    Points
    231
    Par défaut
    Mais pour ceux dont le goût est SCiTE, merci Madmac

Discussions similaires

  1. Télécharger un thème wordpress pour un hopital
    Par serigne dans le forum Débuter
    Réponses: 1
    Dernier message: 30/08/2015, 10h57
  2. [Débutant] [SP2010] Développement d'un thème complet pour Sharepoint
    Par Mantis544 dans le forum Développement Sharepoint
    Réponses: 3
    Dernier message: 23/08/2012, 15h23
  3. Théme office pour java
    Par kimymet dans le forum AWT/Swing
    Réponses: 2
    Dernier message: 28/10/2010, 19h22
  4. Un thème graphique pour swing
    Par Ceubex dans le forum AWT/Swing
    Réponses: 4
    Dernier message: 10/09/2010, 17h52
  5. skin foncé pour Qt
    Par gjaegy dans le forum Qt
    Réponses: 1
    Dernier message: 30/06/2010, 17h55

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo