-
Notifications
You must be signed in to change notification settings - Fork 14
/
.SciTEUser.properties
243 lines (186 loc) · 5.63 KB
/
.SciTEUser.properties
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
# -*- coding: utf-8 -*-
# Author: Lucas Cimon (github.com/Lucas-C/linux_configuration)
#######
# Général
#######
repertoireConf=.scite
#~ repertoireCour=`pwd`
# encodage UTF-8 (ou en-tête)
code.page=65001
# Monospace
font.base=$(font.monospace)
font.small=$(font.monospace)
font.comment=$(font.monospace)
font.text=$(font.monospace)
font.text.comment=$(font.monospace)
font.embedded.base=$(font.monospace)
font.embedded.comment=$(font.monospace)
font.vbs=$(font.monospace)
# Restauration auto
save.session=1
# MAJ auto des fichiers
load.on.activate=1
# Full screen
position.width=-1
toolbar.visible=1
# Affichage par défaut de tous les fichiers onglet "Ouvrir"
source.files=*
# ouverture dans une seule instance de scite
check.if.already.open=1
# nombre de fichiers max en onglet
buffers=20
# Active l'affichage complet avec retour à la ligne en cas de réduction de la fenêtre
wrap=1
# Ligne finale
ensure.final.line.end=1
# Tabulations
tabsize=4
indent.size=4
# Indentation auto
indent.automatic=1
indent.opening=0
indent.closing=0
# Réduction des blocs
fold=1
fold.compact=0
fold.flags=16
# Icone pour la réduction, choix : 0, 1, 2, 3
fold.symbols=3
fold.comment=1
# Affichage des lignes
line.margin.visible=1
line.margin.width=4
# Utilise l'autocomplétion des mots
autocompleteword.automatic=1
# Fini l'autocomplétion si appui sur "(", et du coup propose le prototype s'il est disponible.
autocomplete.*.fillups=(
# Racourcis (nécessitent GTK et parfois API)
menukey.edit.match_brace=no
menukey.edit.select_to_brace=no
menukey.edit.complete_symbol=<control>E
# nécessaire pour éviter que la barre espace ne soit plus reconnue (résolu par modif clavier pour code::blocks ?)
menukey.edit.show_calltip=<control><shift>Return
menukey.view.toggle_all_folds=<control><shift>W
#NOTE: décommenter "import r" dans /usr/share/scite/SciTEGlobal.properties
# -> seuls fichiers *.rsource reconnus !?
#######
# Bash
#######
file.patterns.bash=*.sh;*.bsh;configure;.bashrc
comment.block.bash=#
comment.block.at.line.start.bash=1
comment.block.props=#
comment.block.at.line.start.props=1
comment.block.batch=::
comment.block.at.line.start.batch=1
#######
# Makefile
#######
command.go.$(file.patterns.make)=make
command.build.$(file.patterns.make)=make clean; make
comment.block.at.line.start.makefile=1
comment.block.makefile=#
file.patterns.make=makefile;Makefile;*.mak;configure;CMakeLists.txt;CMakeCache.txt
#######
# Java
#######
command.build.*.java=javac "$(FileNameExt)"
command.compile.*.java=make "$(FileNameExt)"
#######
# C & C++ & Assembleur & Swig
#######
comment.block.at.line.start.cpp=1
abbreviations.cpp=$(repertoireConf)/c_abbrev.properties
api.cpp=$(repertoireConf)/c.api
COMPILATION="$(FileNameExt)" -o "$(FileName)" -Wall -Wextra -pedantic -m32
DEBUG=-g & screen -d -m xterm -fn 8x13 -e gdb $(FileName)
#~ DEBUG=-O1
command.build.*.h;*.c;*.cpp=make
comment.block.cpp=//
comment.box.start.cpp=/**
comment.box.middle.cpp= *
comment.box.end.cpp= */
#Swig extension
file.patterns.cpp=*.c;*.cc;*.cpp;*.cxx;*.h;*.hh;*.hpp;*.hxx;*.ipp;*.sma;*.i;*.hi;*.tpp
#######
# Assembleur
#######
# On affilie l'assembleur au C en utilisant le "patterns" n'ayant qu'un élément :
file.patterns.cs=*.cs;*.s;*.S
#~ FONCTIONNE PAS ?! : keywords2.$(file.patterns.cpp)=$(repertoireConf)/keyword.s
COMPILATEUR_ASM=gcc
command.go.needs.*.s;*.S=$(COMPILATEUR_ASM) $(COMPILATION)
command.compile.*.s;*.S=$(COMPILATEUR_ASM) $(COMPILATION) $(DEBUG)
command.build.*.s;*.S=$(COMPILATEUR_ASM) $(COMPILATION)
command.go.*.s;*.S=./"$(FileName)"
#######
# C++
#######
COMPILATEUR_CPP=g++
command.go.needs.*.cpp=
command.compile.*.cpp=$(COMPILATEUR_CPP) $(COMPILATION) $(DEBUG)
#######
# C
#######
COMPILATEUR_C=gcc -std=c99
command.go.needs.*.c=
command.compile.*.c=$(COMPILATEUR_C) $(COMPILATION) $(DEBUG)
#######
# HTML
######
command.go.$(file.patterns.html)=screen -d -m firefox "$(FilePath)"
# Semble cool
#~ xml.auto.close.tags=1
#######
# XML
######
file.patterns.xml=*.xml;*.xsl;*.svg;*.xul;*.xsd;*.dtd;*.xslt;*.axl;*.xrc;*.rdf;*.scn
comment.stream.start.xml=<!--
comment.stream.end.xml=-->
comment.box.start.xml=<!--
comment.box.middle.xml=--
comment.box.end.xml=-->
comment.block.at.line.start.xml=1
#######
# Latex
#######
command.build.$(file.patterns.tex)=pdflatex "$(FileNameExt)" | tail -n 34
command.go.$(file.patterns.tex)=screen -d -m evince "$(FileName).pdf"
#######
# TCL
#######
comment.block.at.line.start.tcl=1
#######
# LUA
#######
api.$(file.patterns.lua)=$(repertoireConf)/lualib5_annot.api
calltip.lua.word.characters=.:$(word.chars.lua)
calltip.lua.end.definition=)
comment.stream.start.lua=--[[
comment.stream.end.lua=]]
comment.box.start.lua=--[[
comment.box.middle.lua=--
comment.box.end.lua=]]
comment.block.lua=--
#######
# ADA
#######
comment.block.at.line.start.ada=1
comment.block.ada=--
abbreviations.ada=$(repertoireConf)/ada_abbrev.properties
api.ada=$(repertoireConf)/ada.api
command.build.$(file.patterns.ada)=gnatmake "$(FileNameExt)"
command.compile.*.adb=gnatmake -f -g -gnato -fstack-check "$(FileNameExt)" & screen -d -m xterm -fn 8x13 -e gdb "$(FileName)"
command.go.*.adb=./"$(FileName)"
#######
# DECA
#######
file.patterns.java=*.java;*.jad;*.pde;*.deca
# Notes : correspondance keywords{X}.{lexer} && style.{lexer}.{Y} indiquée nulle part et dépendante du lexer !!
# impossible d'ajouter des "comment.stream" dans un lexer qui n'en possède pas
# modifier le comment.block.{lexer} ne modifie pas l'application du style.{lexer} des commentaires !!
# raccourcis CTRL+i
#~ command.i.$(file.patterns.EXTENSION)=
#~ api.*.js=$(SciteDefaultHome)/api/js.api
#~ api.*.html=$(SciteDefaultHome)/api/html.api
#~ api.*.htm=$(SciteDefaultHome)/api/html.api