File: codelite.mo

package info (click to toggle)
codelite 14.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 112,816 kB
  • sloc: cpp: 483,662; ansic: 150,144; php: 9,569; lex: 4,186; python: 3,417; yacc: 2,820; sh: 1,147; makefile: 52; xml: 13
file content (1784 lines) | stat: -rw-r--r-- 344,172 bytes parent folder | download | duplicates (4)
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
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
T~PPPPQA.QNpQUQR5RBR ^RRRRRRRRR7	SASQSbS=sS(S
S
SSS	TT#T/T8T:T>TETNT	bT	lTvT
|TTT
TT	T2T	UU U8UQUXU`UgUoUUUUU
UUUU
UUUVV+V1AVsV	xVV	VVVVV
VVVVWWWW"W4WHW	YWcW.rWWWWWWW
WWXX X(X7X;X?X EX
fXtXXX!XXXXXYY
YY#Y#5YYYaYjYzYYYYYYY
YYY	Y	ZZ5Z;ZMZ
^ZlZyZZZZ
ZZ4Z3Z[ [*$[O[d[w[[E[[[
\*\#I\m\\R\!\]&4]8[]]]]F]^ 4^!U^w^^^!^^^&^#_
:_ E_ f_____"__
`` `'`	)`3`;8`;t````````	`` `a/a@aOa_aoa%a'a&aa
b%b-'b%Ub{bbb4b3/c0cc(cFc:dD?d<d2dnd3ceGe;erffAgcUgPg
h-h
hhhhhhii(i<i$Vi {i	iiiii)iWjdjkj
sjjjjj@j"jkkk
*k8kJkWkukkkk
k*k	ll(lGlalsll"l;l5m=mUmmmm=m	m
mmn,nKninvnn&nnnnMoFo>/pnp%pp%pppqq'q=qQqFiqqqq8qr4rIr4Prr
rr rurFsstv#t[tt!u@uvv+wwwwwxx<x3yByz$z<zNzizyzz	zz0z!z3!{U{\{0n{#{&{){"|/7|(g|"|H||o}E}/A~q~u~%~"~~.~*&$QlvtXvB~P"5<Vh,

*->2l@8!,@$m*(146M35+/3J*~){Ӆ
O+]!
ԇC[;kC:?L#=R"r,"Š&(
O]Lx$ŋ'!Ceu{
u,=DUoÍύލ.*Hs		6ΏՏۏ
	&05E{Ӑ+9/Y'ȑݑ*
1
?"M
p{$ ̒=]ip$͓	0:BJ_pvĔܔ

 0@R
iWwϕ&"(*S0jP
Pspoٛtǜ<
ĝϝ

	
*8GW]
jx
"(	)8MY`mqx̟ܟ

P+mFM9HC$ơ<,(*U+07ݢ/EWry7ϣ0=
n+|'$#AI`"r!U

5Mchw
Ԧ *I
Y	dn	,̧ ݧ'/8h;)2AU#\
©ѩ!!1BS2s:Ҫ&
4<IRagëܫ
	#-3H'X	
Ȭ	֬#+8&Jqԭ+)Fs_"Ӯ0F'3n ïݯ
do,İ	ʰ
԰߰
#4F`r+>8AQo*̲
)	2<Odt>*AqRĵ
++0W	ʶ*7DPX&w%%-B[dŸθ	׸
#3J^nȹ
)4^nv		@&	gq"л*ݻ
0Fbvټ

$CRbs
Fͽ2Ne##̾%-<X	t	~
ʿݿ
$6E!c	6(#;DCf
&'@4h!!% R9T  "&C#j!%&aMzU19k)#
%9[K"'
#! Ef~$!(>J]
lw!&-.D?sPU v.Jbu,3-`*,/#,PfUn0
	,->l	,9PT]f$&9Ki

:?
EPVk
8$9B'Ks
31Q`o		D?3?GgoIdS|zj#	
'>N
it&1*!0Ro!-#0	F
P
^l!
B=
Zh~!!	PNgo	$&>We,=<z1*B!nd;*3'?%g/%V<UuT'l/"./KPFV&-*"
+&9`s{

	&&6NT	]g0k'	1;
T	b	lv!6X*`"@M1j!#
-'UtC16OSp
QBJ\{*
D`/IYc4E%4JYoq:Xq* "(72O%"&.4c.	+
D/R

&:K	W
a
lSwo;6S69.GBa4>ZAs52)0H.y%1O@P*hXa
hs
*5Ogz,?	
 5AEW	`6j


+%$Q#v=3)Fc4/y8$+		7	R	,g	*	0	.	


h
:#Pt,2!+M!f"
'
]=
"
(
(
+%<b 4O%j


	
*	6!@b(q*	5	BL
\	gqs
+18>0NY$&+Rck
p{
		 
*8Kfr~
$#='a&$
1D	`+j18)DWm
)6>FNS$Y~2
,
;I\w
";GTc	r|
6
.3BSr
5,+G!s"$#Hdy#$'C[/k(
Xc{

 - : N [ k ~ 
   
    
!!/!B!T!i!#!!!!!!"!!"A"R"_"s"""""""""###"#.#@#H#
N#hY##v$%%$%B%\%l%|%C%%%
& &/&-D&r&&&&&8&_'Nn'Y'
("(2(
7(B((N(5w((?(1(,%)R)U)])Gf)E)))*	*	*' *H*1,,^,^,E-y-y[.T.F*/fq/%/?/u>001vO2b2)334I$5n5
6D6@7#8j8T:s:z::
:#::::
;;%;-;I;P;a;"g;);$;;;-
<(;<%d<<<<<<<<,
=!:=\=v==="=#=>>>
,>
:>
H>V>Lc>>>$>k>c?w????????	@
@
 @.@;@P@g@1@@@#@A1AJAeA1AA1AA%B?B^ByBHBBBBCCM(CvCCC$CCC
D#D@DODcDzDDDD	DD\EEF
FFFFFG$G	1G;GJGSGXGoGGGGG
GG'GHHHHHH	HHH
I
IGI+fII	IIIIIIIIJJ1J>JDJKJWJ^J'mJ
JJJJJJK!LN5LVLLLM#M8MIMbM}MMMMMM
MN
N!N3N
CN
QN_N}NNNNO?]OOO	O	OOOO
OOOO,P	4P!>P`PiP
PPPPPOPQQ.Q=Q#MQ
qQ+|QBQ]Q/IRyR'R!R!RRSS4SKSZS
nSyS	SPS'STTTTTT(U1U-NU8|U,UUUOUMVTVdVxV}VVVVVVVV
WW$W<WMW^WqW
~WWWWDWW
	XX
!X/X7X,Y	?Y$IY"nYYYYYYYY)Z'1ZYZlZZ1ZZ	ZZZZZ	Z"[+[1[7[<[A[Z[n[[[
[
[[[[[[[[	[	\\/\J\W\p\\\\\
\
\\\]	]
])]
:]H]e]u]	~]]]]]]]]^^	^(^
5^C^V^
o^}^^^^^^^	__0_C_[_	u___	___!_$_`#`/`>`J`Y`o````
`	``````Fa Xa"yaaaaa8ab64bkb&bbbbcc"c7cDcbcwccvcdd d0d=Cdeeeeee$e>e ;f\f*of3ff1f(g*Cgngqgg$gg"g$g$h3h)9h-ch	h	hh]ifioiiiiii	ii$j'j;j
Rj	`jjjjjj jj
j*jk
%k'3k$[k#kkkk
kk
ll0l+?lkll:lllm"m
/m=mMm^mrm#mmxm+2n ^nnnn nno0o?oFo
NoP\oo
ooNop(p/p7pFpMpYpwpppppp	pp
qq"q4qMqQq
aqoqqqqqqqqr$r1rFrJr
gr
urrrrr
r?r
s#s3sCsas{ssssss!s	t
tJt'"uJu	Ru\ucu'iuu
uuuu.uu2vEv]vvvvv<wMwUw^wgwvwww)w$w'
x2x>xQx$ax x#x0x3xX0y%y!yy>y5+z(az=z6z6z'6{&^{!{&{;{
||$|9,|*f|||||||||
|
||'
}5}	O}Y}m}}} }}E}~
,~7~G~_~t~~
~~~~~~~
*6
<
JX
al!	.>
\j
w,€

 B.q
2؁
	)
DYR$&т 
$7INbgB


$"GP_kz'".Ӆ03F9Ɔ
؆-?Sp!NŇ/
AL_gtG2EYbkr~(Ήމ)"+L,x)4ϊ
3AP _&ڋ%%7HYh
~Dӌ+CO\k΍4-/] o
%
&DP
]k~	Տ܏
1	>H
NY
y
ِ=-5k1	ӑݑ'?G=WA:ג.;J]x	ʓ		*=$J%o#"%ܔ/	?I^#zŕҕ
%7HW_p{l^YXA@SI`ޘ\?`210ibc̚05IVgy5*4
)Blsz-
؜
#
-8NZjqv
ŝߝ09R)c),.AX.eş؟%+>0%o̠ߠ#T@f%"
/ =
^=l	آ$7?
KVv
ɣף
'<Qf
v

ä
+AP;`0ޥ%*:P%k
¦5ݦ
$:2mħاa\
zP٨|8ߩ.ER+b
!ت(A-[ N:*4e_Ŭ3߬$08/i)0ܮ
%)+O>{گ.3"WV)4ذ*
-81f<(ձ/^.""ϲ/(X%uD8">"(#>"Ya|&޶-3M	g q Է4:
BPW^elsø۸4"5CX:2׹
+c޺cBbh	arbԼc7PkY)۾o":aKJ+iv/<=%Djj/.# RQs|'BtjrRe>z$"!#ABjP"sA'-@Tn(	(1TI`E'\3
+)9co+
&3CXn$~+2"5
LWfx,&:Nh""'-
2@U#bA>JD5FA5-,#0P1-b	D
NY`Av 
!/7!Jltq%"
/=Sn1u#
:ETo	
	
	%+7<
EPcp|

,7HNZn!u
D)%$O0t/5.*:e5m65
(3@,HuK-&)8b
t



#!7Y
`
n|(#*;9u 
	3O
ep
	%C^jy~

BC,(p		

 
+
9GLYix$2-%^D_
}}),Hfg&$E8~G :;:7v9!F
Q`P+|-'2,_g
?,1/BII4aRM5$+:K(Wt1@R\3FH;^Zn$Id,%'#M)q22LjL!F(>[JeDA54J<PWHz\l?	z	8<
u
v
_nd%

Al8!UE^Yv9
3.bgmtQ</@S&s4@]v}
	"c$


;U'!D?M%+!1Sgz0R#@d

)
BM	ak"~
;	$.?QT[n{@
 5Vgx1?!q+5'&D]p!  23 f )y     / .!I!d!(|!!1<"3n"6"O"B)#l#####,#$
$	%$%/$'U$)}$$$S%[%`%t%2%%%%%%&
	&&&	&&
&
&&&'')'I'Y'
v''''','
(?(R(b(h(z(
(( (((((())')6,):c)5)a)6*F*c*yu**~+B,I,o,C;--b=..V%/e|//5s0v0 1X1[2>m222Q2H13Hz3J3+4#:4J^4_4	5K5`6jd66mi7s7RK8N88;994:::;T;	<"<9<O<l<<<<<h<!=5==rs====
>	>)>;>N>[>y>>	>>>>? ?2?I?Y?l??K?l?2J@-}@?@8@B$A8gAAAAA
AAB
BB#B7BCB)PBzB/~BB+B!BCoCeKEFP~GTG&$HKHHCxIIIXJ_JJ	JJJKKK$K0KGKPKFSKKKK
K1KLL+LBLTLZL`LNiLLPL)M9<MvMMMMM)M/M)%N'ONwNNN
NNNN
NNN)N(O!5OWO]O	tO~OOO"OO	OOOPPPQ(Q8/Q	hQ
rQ}QRQQQ	QQ	QQ	RRR/RR	R	RS
SS5S	ES
OSZScSySSSS'S&SSS
TT T,TFT,\T1T%T&TU

UUU%U9U?UFUOUXU
lU	wUUU'UU	U5U$V77V oWW WW/WUXzjX"X
YY#0YTYhYY
YY
YYY*Y
Z
ZZ=4Z.rZZ
ZZZZZZ
ZZZ[
[[	'[	1[;[
A[L[T[e[r[[<[
[
[[	\
 \
.\
<\
G\R\
i\t\\
\
\\
\
\\\
\]].].E]
t]
]]
]
]]
]]
]
^^
^
&^
4^
?^
J^U^o^^
^^4^
^
^__
*_
8_C_T_k__
__
_
_
___
`$`;`L`i`
}```
`
`
```"a
%a
3a>a
Ra
`aka|a
aa
aa"a
a
a
b!b
<bGb^brb
b
bbb
b
bb,b,c;cJcQcpccccHc!d-d:d YdzdddXde >e,_e1eeee@
fKf!dfffffff
g# g Dg	eg!og!g!g!gg g h=hOh_heh(lh	hh;h;hii-i0i4i9iFiJiVibiiiiiii%i&j#6jZjsjj$jjjTj3CkwkkkIk?l9Ul,l;ll+~m=m3mmnvn?oTAoToo(nppppp
p
pppqq-qIq
cqnquq	qq!qUq&r-r4r	Ar	KrUrerClrrrrrrss%s=sPsfsvss-ssssst-t@tYt3xt0tttuu>5u	tu	~uuu%u%uvv:v!Gviv|vvW@w<w4w
x$"xGx-^xxxxxxxy9'yaytyy2yyy	y1z8zKzazwzSzzh{{{L{<{||*|t|qR}t}9~@~	V~`~~9*Kv0CSfv3ŀ'>E$aہ*!"D<`nTHa*Ճ!ك!6L'h)XTh6K…*1G]sz!Ն0+3\F'";#Vz)+È*$-?$m*-$!i2Ƌ	ߋ%5DE
3̌BЌ96Bp̍%	
'6=&t*$Ǝ <!Uw9$ԏ(;Tml	(/BXn	Ƒّ$*?L	Ycj		ʓΓޓ-CJW^z	*۔&!7Yy'#*1NgzƖ͖Ԗ,?Un		
ϗ֗	)?LYfvИG1*A*l0ș1ޙ;Lbi
vcaJܛUk[`Oz+-9KTe
iw

ȡΡ
ۡ'6Qq
ǢҢ֢ ݢ
&
7EK`	p	zD$ɣHNMAOޤ$.>S3+ƥ,*:J1ʦ*:Pi*Χ$ާ2#H$lרJ;Qm©	ة		'1Mg
ª ت!8+Z:	KUbryĬ׬2N^q!~-έ0%%	KUhq®Ү
	!+2E"Ux̯߯";N(aа)&E[ܱ+8%-^y
2@V!nijݳ
0C4SI
Ҵݴ/!.B[n.{+ֵ
.DWjշ_$\'¸*+ 2Sq			ɹй!	'&	NX!k	Һ	ٺ	
	%
,7JWjz		˻һ	/?Xth	#C-qx%ڽ*'4GWs
Ǿ	ھ
$	+;	H
R]d	k
uBÿܿ''.'V~$&3C_x		8BXEv6H5~$' 4!UwVOL%e1gGBTG!]&*#$,QHa$"$?Rn!3@[*z$'3:nCH/<$Ot!;Ut!!!*6!a$J#*./^er0	,6'F?n	%-4Tg*@Pfy	
1<D
		*/HXk{	R,.	EQbdsJ;J(2BXer4*@\-x		!:A	]gtB	!'%Iot
H	4	>	H	R\*xU7J]j'z4
)6-IZw!	
	(!$J$o!S1#U\
lzT63I'}$	E>'Z!	 *7*Ny

1#2V28>Xjq~	**0:k~	)	 0	CM]q~! 9"X{.!
 D:!$vZ	nx	!RE"3hLQ*;f
 3H[yo&3Cbiy(#%>%Qw
)3
:E]3j0
7BOauNVL/e$,";;6w**K$P9u'$$!!-CAq6!(k9
!$FY4o,:	R	\f|	3,.	4>T)n# -(!Jc~*4
){<%( 7M0`/-^ng)Fb!{0 <Oe~%B *	$K	$p	$				
!
=
	X
b
x



"


	&9Un~(*0[hu	


~-



	
	

*O?%!
!5I]	nx
	)BO_o%!"8[z$+1]1v8)$!:\q	 *1	8*Bm-!1!Acv
	(;N	U_	fp-	!
)
4?PT=d ,)37>	Q[b{!(";^z!$,9

.<!Rt
0@	V`z**$7	PZat(/;@M
i	t~		c*       B!T!j!z!	!!*!!!!"$"71"hi"P"T##	x#####+#;# $6($"_$$$$$T$Y%b%f%n%{%%*%%:'d'Wa((z^)z)cT*B*d*,`+<++L,-}-k..-//=i0011*1?2c3u3R4K5R5_5r555555	5	5566(6A6T6s6666667	77!777M7Z7'p7&7777!7# 8*D8o888	8888;8
9#969EU9999	9999	::	:):<:I:Y:i:y:-:::":	;-;J;c;-y;;-;;!<)<E<`<4m<<<<<<:<!=9=T=a=}======	>">A>Z>m>	t>r~>r>d?&@
+@6@I@b@{@@@@@
@@@@A	A%A,ADAPA)_AAB$B)B0B7B>BNB!kBBBCB6B)C0C4CAC	QC[C	sC}CCCCCCCC	CCCD%D5D;D|HDDEAEKE3F%CFiFFFFFFFGG1GJG	ZGdGqGGGGGGGGHHHHHH	HII(I	/I9IIIPIaI'qII$III
IIIJ	"JG,JtJyJJJJJJBJN-K$|KK*KKKL(L5LPL`LmL}LLLBL!LMMMMMM(M(N*DN0oN*NNNNN3O:OJO]OdOqO3OO	OOOOPP*PBPRP_PuPP	PPP9PP	QQ/Q	?QIQ%R:RARZR	sR	}RR	R	RRRRRR
S&S9.ShSySSSSS	SSSSSSSTT$T	4T>TNT	[TeTvTTTTT	TTTT	UU1UQUaUtUUUUUUUUUVV-VCV	PVZVgVyVVVVVVVW	WW%W8WNWmW}WWWWWWWXX8XLXiXXXXXXX/X2/YbYYYYYY Y	Z)Z	?ZIZYZhZ	xZZZZ=ZZ*[0[J[`[|[9[![<[!(\!J\l\'\\\	\\\] ]4]<]QN]]]]
]
]
^^_	__0_3L_-__	_/_+`-`0C`$t`,````'`a#!a"Ea"ha	a)a-aaabbbb$b"c.c5c<cScbc'~ccccccdd.d'Adid|d$ddd&d d#e7eGe_e
zeeeee*e!f$"f0Gfxffffffffg!g9gcIg$g!ggh)h?hXhnhhh	hh3hh	h	iPici	si}iiiiiiiijj*j7j>j	Qj[jcjtjjj
jjjjjkk(k5kOkkk|k	kkkkkkl*l1l-Al	olylllll	lllm!m 4m	Um_m<6n*sn	n	n
nn-nnoo"o	)o!3oUo'tooo!o	oppp	pppp
q q$<qaq$}qqq	q!qq!q'rBrWarrrr<s&As'hs6s-s9s/t!Ltntt0tttt+t$uCuJu	Wuauiuvu}uu	u
uu#uu	uvv)v9v'Fv	nvExvv	vvvww0wKwXw	nw	xww	www	wwww	w	w	xxx,x?xLx\xpxx	xxxxx	xxxy
y"y*2y]yjy}yy/yyyy.z/zEzUz	\zfzsz	zMz$z${%{||$|3|:|M|T|s||$|||||||$|!}(}>}K}^}e}!n}!}9}9}&~B-~p~~~0~~~5EUn{ <BUkr@ǀ#+	OYm}	'4JZw*-*'*6at#؃%	/!Bdq~	˄ۄ6CVtą-=$Sx	
҆%(>Qqʇ#*7DW	p	z!Ljڈ	"2<H*3'3FVnv?-ʊH$Af|	‹̋܋
 
+6"Fi|', #-&Tj'ٍ*:Ok~	Ŏَplm^ڏX9A@ԐI`_\`2~1icMȓד5*P4{)ڔ
	(%2
Xc
ju
˕ܕ	%2HUn	Ėז-6L*_	̗!$7DZmǘΘ<՘!4SZgw?ՙT'jȚ.ؚ	3=/[&Л%5Tj#֜
0Ok̝<ܝ,H&XϞ$0Ct
6̟!'4MiQy!ˠ97ʡ9,BUk$ڢ'34[/&?&'%NUtʤݤ'$ChQ"p*Ѧ*$:Y3li#)*Mx%3ܨ,/?\!ѩ*%Pf0̪ߪtm*Tp$XѬ!*Lh~	ܭ	+4`
m	{				Ů.*;f'3-'WӰW+V\ڱU7UV:ٳN.Ws]Lp:MWm,ŷb"Ux74!l^$$0UFnw*-~Xm׻EX@q'Ѽ&# EDYGa6Ӿӿ)K	Uh"|
;	!\:'6BSj{*!$:
Ydt$+'%%Ms )'Hp"%
3	OY	`jq~r7;>s<'9g1n#('	'1(YQ	BQj
		!W:Sly+'@S_w			
/6=
DO`gt+	8	B
LWsz
<6Fe#!"#,333g-		&!1J@++

'
2=
N
Y
g
r
}


"5*Kv	61Piy
		!+>Qdz	#		#*7SZu
	t~43&!H	Xbipy")'L0t[\Xnm	]]D'7e|h%Mf=z*3933m -	3#$'4	\0f	9#/#S:h6-U@</}!g%O`{$IW'Z	E&pl?,TJN64k(4Gf:30!EA!3H|Id'}!*0#K:=g$,Q9u8$t_]2Kar-Y341&IgzX)'5:pw	~RH7Jar&=P`v

	(-VV]

&4 ;+\v.$!78MJ	#*F
Yg}"G!%!Gi|
	,
%	0		E	O	d					E		
	
)
<
[
b
'i




3
 0$In?+$-
(B
*k




)
#AQd/39#O)s'66'3F0z0PWd-q0)(
%	;	EO\}c

+2HXk	,
70>o	|			$18@N1\1Mc`Uu=Yk(*]|Eh\m?yx2GJ7O6QK M\ P $  !9?!Qy!!=S"Q"v"Z#f#nW$B$1	%;%8%2&0&)'0'	'E'/(?(R(b({(((((f(+)$H)km))))
**+*8*H*U*m**	******+6+I+Y+l+N|+E+),%;,4a,',3,(,-.-A-Z-g-w-----
-
---'-.(,.U.n.i//01N262$ 3E33@r4-4?4s!555555555566?6W6g6t6
616666677
7B7Y7Tu77-788"828	Q8%[8%8%8"889	99*9;9A9	H9R9b9)i9(9!999	99:

::
5:
C:N:a:7;R;j;;;8;;
;;8;'<.<4<A<	H<R<
c<q<u<<M=T=a=h=o=========	=='>&+>	R>\>c>j>v>>>>>>+?2?	9?C?G?T?p?w?~????	???'??	@: @[@'
5	nZR	9
)o#?A(
^_CgWB

q

|Oi
5^}

:
\	v

	Z1-C	
	56{C
o
~

|	-e\	M
Td
hU	<8
O
x	t	V		}`	D
N

+y^

&L	.G
h

g>T
2
M2HlX2Gz%LrmiF;

F	IK
N
*PI
x}	@0E

	pJ
.36
	M}jaA
I	Y	_*5LnI

[v
Dc
[0YJno	3_
Q
pl
.7.knk#k$
P*<	g07	RD]
a+!z
	
A*^&
w~		&
nAp
Y 	kM
^w	"aF	mHr	4

'	l
NZ

7n

b2?!{
	
,X
X
Q3`
9t
vH)	|
kp	G	J 	C%
4n
(H
21	_

W
	"sOI<j)g@\5H
Q^l#'e
N	z	
U<	qA	c|
uqp
L{
MuI


~*
l	f
nxf
aJZx'	
0	h&
(
L#

/
d
L
LA<
t /
/		D
	. 
N
1:
H$1,	`o
W
+	Cy4	6w't)
F)
[n	x[A?%
W!
u/N
z
%	S2
.:
1
N
4

C
Xo:@y	GCs	6E:


~mOe
~mv
wVS	f			B

k	x[	
T$,
(Kp0	i!y
{	5"[R
\)	
>=	b
1B	Tb

V	ap
	ZL

0~OW
S
Yx
J
M
YYk	p"
+8
F
		#	u
-
	V
Ya	-
X8J,	8r[:	Z
P

c).
QK	&	6e
|l	r
@
Q	-D	7	.	
}{>46

.	7+Q3=aR
<[
i
k|
	V3'Lcu
7>nK
u
P	hST	
f]dQ!
?

	m@
5m
	PV7zB	x+w"	
s
lPC@I	|
9e*IG"A
-zaD
=~
W=$
$&

D
a
iBUy|

Q`(?'(o	+d
Q	
	p	t
V

|
=	#
u	Z	-sQG8A
,P
~x
q		@M^sEAI!
<H_
	
ajnf	
qP)h

`6oH	#|V
	V
@Pc,- 04H$O
dVg
VL
C`
z	R
m"S
	
8\	
\
		}=^x]#D1;4X'u	>
k
3{	D{		
]
_^
\
K
#&7	N2U	\0
		?#

`]	N 	b	
3K
N>
s
$,
 @4	fg	U
]	J`SM]
qu)O5m?	<c6
=Ki	r_	g
$*	\gJPSFD1


n
fE	3]:5
4NJ!,	(t
~	
@=
	lA}
;s
.
Tc]

c
r,S
%
*h1QWU
<7Ix:
G\
p
	
Iyo0G
3
,

z
  bS9
+


t

'.qbN%?

-
r>

E


9\



"

:,N
w
a!/)fn
G	K_
dP_z
	H:



7
ZHnti,)	;+		

e&*
c
E		yEf
)pBEq
p
(4R;jwN:\AT
}Cm#	w
.

!
\

gtc`
{so
r
Z	I.`
x/TG
9LTZ
_	{
	oBf*
4(
+`liR

	^>p	8=Cm	
^1
+KB
?
u;(	%:gY

'{

l	
	eE0Fec
RTrR$	?FO*5F	J
smD3
)!w<	Kvhj6		~
	
:

M<
:i
l
']Y
	R
9



G

_$\|m
S%
O/>E1	4X
	&B~o,	`e
E
}WZVyXbRsjao
M"
_B9		6
bMD
82

k/
y	/WLhj	Q
v
L
gX~Q
b	-	)
l 	~S1j
I!	dwg1J	
 
		=eb-
&	Dbo

<(
|u"		^t,U$
2	vZt
S
	r;/FH>iX3tX
v9Y^}/oz3uY	[+Zus%/%O
d	!-{`
%
h	
d]
SW}
n+
y

8
^[
y^
+
"X[	ig
KT



*	
#x	8X~	][rAw2>
	
	OM
d1t
(x

7

5
	D	j	P	UcT~TBv
JJ>B2?l

o

)	f

\2jF		sl#

3v
K
P			
k
k%
+7
5
6
y&J
	m

U
H	L(
	
#U
O	zD	[yp
l	d	:		L=9
-
R
kf		;

I

hH66M
F
	7
H7	y8v?c,!?W 89&
jVs
 Oj

	*C	
<&Z~V"$
&BC
	1
T
S
\D8
G{}.

!U	zvjK	Rh

j},-A
8	
=
x7
]	
W%'l

2z	?
-

r[Z	
Bi`rYW	/
cV(
k
q2M	
I:
v>	w
B{P	*u
SW
"	.}
dwfm

)!=W/
3|$^	iS	|U;F[


d
XG	T
9w	5JF$Y1`>4	
uE%q
sh_4

]	*@
	h	mO
Q#5
	$'R
_	>i
O
t;	qT	Ha
0'


m
d
c		
9	
vf9E9@Ki56	@
a%|	q&0

X	Y2q}

g;=Q
w!`QM
a(	YA

40NC;"Y
2/0	3# 
=PI
bR0Nrs		WJ
6=
sUe_6
Le	bU}
Ke
<iKVp
ze7ptg	Ef	R&
t	

Go;hv	rkbCf;zuF
E<?k
y
q@"


cX(	C		'M		q'

;
%_*
{v

@xbFa	j

edO	g
5		
/?8{n$+

{	0|		y	Z
G 
.]

9

U	
>h
4G3	@	h
[zr	we	 	UPb	E]<Aj
B;

	8	-qd

"

Add the file anyway?
(this may take a few seconds)
-- MemCheck process completed

Artistic Style has terminated
Commands starting with the hash sign ('#'), will not be executed
MESSAGE: Another process is already running.
MESSAGE: Ignoring last command.

This won't be a problem on Linux, but it may be on other, case-insensitive platforms %s formatted   %s unchanged    (disabled)
 - application/octet-stream --------------- Log starts at:  ; Match whole word:  ; Regular expression:  Called  Function name  Matches found:  Project Settings Self time [s] Total time [%]  and all its contents will be removed from the project. does not exist does not exist! files
Continue? from the workspace, click 'Yes' to proceed or 'No' to abort. has been modified, reload file anyways? in FileView. in file:  matches of project  possible errors seconds seconds    switch:#$%d$(CMD)$(TITLE)$(WXFB) $(WXFB_PRJ)$filename$fullpath$user$workspace%CLASS%%d min %d sec   %i deleted%i file(s) successfully deleted%s lines
%u file(s) not added, probably due to a name-clash&About...&Add&Add a new item to this tabgroup&Add an existing project&Add..&Add...&Apply&Attach&Attach to process...&Build&Build Project&Build Settings...&Cancel&Check All&Check for updates...&Clean&Clear&Clear All&Clear Results&Close&Close Workspace&Code Completion...&Compile Current File&Copy this item, to be pasted to another tabgroup&Cut&Debugger&Debugger Pane&Defaults&Delete&Delete All Breakpoints&Delete Line&Delete this tabgroup&Delete...&Disable&Display EOL&Edit&Edit...&Export&File&Find&Find In Files...&Find this C symbol&GDB Settings...&Generate&Go To Line...&Import other IDEs solution/workspace files...&Insert&Login&Manage Plugins...&Match case&Navigation Bar&New&New Class...&New Empty File&New Set...&New Workspace...&New...&Next Bookmark&OK&Ok&Open&Open Active Project Settings...&Open File...&Open Folder...&Open Workspace...&Output Pane&Paste an item into this tabgroup&Pause debugger&Plugins&Quick Debug...&Quick Outline...&Quit&Redo&Refresh&Reload File&Reload Workspace&Remove this item from the tabgroup&Rename&Replace&Replace Marked&Replace...&Reset&Reset colours&Restart Debugger&Run&Run the Setup Wizard...&Save&Save File&Save files before search&Search&Setup...&Show Functions...&Start/Continue Debugger&Stop&Toggle All Panes&Transpose Lines&Un-Check All&Uncheck All&Undo&Unmark All&Update Database&View&Workspace''
Contains some invalid characters
Continue anyways?'
contains some invalid characters
Continue anyway?'
to:
'' ?' already exists at the target directory '' already has a body' and its content?' does not exist.' from disc?' is a directory. Are you sure you want to remove it and its content?' is already part of project '' is located at '' is located under this path' is not a valid C++ qualifier' is part of the template project [' not found in the resultset' which is required
'%s' is a folder.
This operation will delete the folder and its content.
Continue?'%s' is already assigned to: '%s''%s' is not a valid line number'%s' is not a valid regular expression'.
Would you like to remove it from the dependency list?': debugger not loaded
': directory does not exist'; Match case: 'Add Functions Implementation' can only work inside valid scope, got ('Find What' is empty'Highlight Matching Word' alpha:'Highlight Matching Word' colour:'else' doesn't break(Build Cancelled)**** Error evaluating expression: *.hpp;*.h;*.hxx;*.inl;*.h++, elapsed time: , process terminated with exit code: 0, reason: could not locate project -- None ------------Build Ended----------
----------Build Started--------
----------Building project:[ ----------Cleaning project:[ ............ Error!!!
......... Generated successfully!
.cpp filename:.h filename:.supp.supp:0127.0.0.115212011 - 2015 (C) Tomas Bata University, Zlin, Czech Republic2012 - 2015 (C) Tomas Bata University, Zlin, Czech Republic44-Character Signature80::/:memory:;<Edit...><New...><No repository path is selected><Open Configuration Manager...><Use Active Set><Use Defaults><b>Breakpoint# <none detected><not applicable>===== APPLYING PATCH - DRY RUN =====
===== Finding references of '%s' =====
===== Found total of %u matches =====
===== OUTPUT END =====
====== Searching for: '?A Debugger type with that name already existsA File with that name already exists!A New version is available!A Tern plugin adding support for express web application framework for node. http://expressjs.com/A Unit test plugin based on the UnitTest++ frameworkA comma separated list of interfaces for this classA comma separated list of parents for this classA compiler with this name already existsA debug session is running
Cancel debug session and continue building?A dockable pane that shows a zoomed-out view of your code.A file with that name already exists. Please choose a different nameA file with this name: '%s' already exists, continue anyway?A makefile generator based on codelite's workspaceA minimal frame loaded from XRC

The XRC was generated by wxCrafter,
Its 'source-code' is in the file gui.wxcpA new version of CodeLite is available for downloadA plugin that allows user to launch external tools from within CodeLiteA project with similar name already exists in the workspaceA semi-colon separated list of extensions e.g. cpp;h;xrc
If you really want to find all possible files, just add *A setter function will return a reference to the object, for example:
Foo& SetFoo(const Obj& foo) {this->m_foo = foo; return *this;}A small tool to add expandable code snippets and template classesA space delimited string containing all of the project files in a relative path to the project fileA space delimited string containing all of the project files in an absolute pathA temporary breakpoint (or watchpoint) is one that works only once. When it's hit it behaves like any other, except that it's then deleted.A terminal emulator designed for codelite IDEA&pply AllANSIASCII ViewerAStyleAStyle Only:AStyle OptionsAStyle help pageAbbreviation Name:Abbreviation pluginAbbreviations Settings...Abbreviations imported successfully!Abbreviations were exported to 'Aborted.
AboutAbout CodeLiteAbout...Accept server authentication?Accepting server authentication server...Accepting this suggestion will replace your old search paths with these paths
Continue?AccessAccountAccount Name:Account:Action:Active?AddAdd -mwindows flag to avoid a terminal console in MSWin GUI appsAdd / modify qmake configurations:Add AccountAdd BookmarkAdd BreakpointAdd CompilersAdd Existing ItemAdd File(s):Add Forward Declaration for "Add Function ImplementationAdd Function Implementation...Add Include FileAdd Include File for "Add New WatchAdd Search Paths to Code Completion ParserAdd WatchAdd Watch...Add a Conditional Breakpoint..Add a Disabled BreakpointAdd a New File...Add a Temporary BreakpointAdd a missing header fileAdd a new breakpoint or watchpointAdd additional library search paths separated by semi-colonAdd additional linker options separated by semi-colonAdd an Existing File...Add an Existing ProjectAdd an existing compilerAdd an existing project...Add an extra check to suppress. You'll need to know its id...Add classAdd columnAdd compiler error patternAdd compiler warning patternAdd ctags Parser Exclude Path:Add ctags Parser Search Path:Add databaseAdd drop table statement?Add fileAdd file(s) to the excluded files listAdd foreign keyAdd function implementationAdd here definitions of code branches you want to be checked e.g. 'FOO' or 'BAR=2'. Each will be passed to Cppcheck as '-DFOO' or -D'BAR=2' (so don't write the -D yourself).Add here macros to pass to clang when generating PCH files
One macro per lineAdd here search paths used by clang / ctags for locating include filesAdd here search paths used by clang for locating include filesAdd include path for PHPAdd include path for code completion:Add include path:Add include paths for Code CompletionAdd new ERD tableAdd new ERD viewAdd new accountAdd new columnAdd new error patternAdd new foreign keyAdd new warning patternAdd revision number as preprocessor definition in the compilation lineAdd search pathAdd selected filesAdd template classAdd the full path to a directory to search for #includesAdd to exclude pathsAdd to include pathsAdd...AddProjectToBuildMatrix was called with NULL projectAdded FilesAdding file: Adding files...Adding the template class failedAdditional C compiler options to pass to the compiler provided as a semi-colon delimited list (used for C files only)Additional C compiler options to pass to the compiler provided as a semi-colon delimited list These settings are used by _all_ build configurations (e.g. Release and Debug)Additional Include PathsAdditional Search PathAdditional assembler options to pass to the assembler provided as a semi-colon delimited list
(used for .s files only)Additional compiler options to pass to the compiler provided as a semi-colon delimited listAdditional compiler options to pass to the compiler provided as a semi-colon delimited list These settings are used by _all_ build configurations (e.g. Release and Debug)Additional environment variables:Additional include path for PHP (affects command line runs only)Additional library search path provided as a semi-colon delimited list These settings are used by _all_ build configurations (e.g. Release and Debug)Additional linker options provided as a semi-colon delimited list These settings are used by _all_ build configurations (e.g. Release and Debug)Additional preprocessors definitions provided as a semi-colon delimited list These settings are used by _all_ build configurations (e.g. Release and Debug)AddressAddress or pointer to watchAddress:Adds the angular object to the top-level environment, and tries to wire up some of the bizarre dependency management scheme from this library, so that dependency injections get the right typesAdvancedAdvanced Settings:After build finishes, if showing the build pane scroll to...After install is completed, click the 'Scan' buttonAfter the execution of the program ends, show a console with the message "Hit any key to continue..."
This is useful when you wish to view the output printed to stdout before the console terminatesAlign Escaped Newlines LeftAlign Trailing CommentsAlign into circleAlign into horizontal treeAlign into meshAlign into vertical treeAll Breakpoints deletedAll FilesAll files are up-to-date!All include paths prefixed with $(IncludeSwitch)All tables which really exist in
All your functions seems to have an implementation!AllmanAllocate by regexAllow All Parameters Of Declaration On Next LineAllow Short Blocks On A Single LineAllow Short Functions On A Single LineAllow Short If Statements On A SingleLineAllow Short Loops On A Single LineAllow caret to be placed beyond the end of lineAllow caret to scroll beyond end of fileAllow only single instance runningAllow the user to place the caret using the mouse beyond the end of lineAllow you to specify parent project. Specify this when project is sub-directory (see add_subdirectory) and it's built with the parent project.Allows enabling/disabling the highlight folding block when it is selected. (i.e. block that contains the caret)Allways search for 'using namespace' statements in all included filesAlso show the 'Replace' section of the Find barAltAlternate debugger executable:Always Break Before Multiline StringsAlways Break Template DeclarationsAmend the previous commitAn abbreviation with this name already exists!An active debug session is already runningAn alias to $(IntermediateDirectory)An attacker might change the default server key to confuse your client into thinking the key does not exist
An error occurred during file removal. Maybe it has been already deleted or you don't have the necessary permissionsAn uncaught exception thrown!AngularAnother debug session is already in progress. Please stop it firstAnother instance is already running. Please stop it before executing another oneAnother process is already runningAppendAppend to global settingsApplication Type:Application entry pointApplyApply PatchApply Patch - Dry Run...Apply Patch...Apply breakpoints after main function is hitApply changesApplying breakpoints...Applying breakpoints... doneApplying changes...Applying your choices and restarting CodeLiteApplying your choices, this may take a few secondsArchiveArchive switch, usually not needed (VC compiler sets it to /OUT:Are you sure that you want to discard all local changes?Are you sure you want remove 'Are you sure you want to continue connectingAre you sure you want to delete '%s'Are you sure you want to delete compiler
'Are you sure you want to delete folder 'Are you sure you want to delete perspective '%s'?Are you sure you want to delete qmake settings '%s'?Are you sure you want to delete the selected accounts?Are you sure you want to delete the selected items?Are you sure you want to delete this compiler option?Are you sure you want to delete this entry?Are you sure you want to delete this file type?Are you sure you want to delete this linker option?Are you sure you want to delete this tool?Are you sure you want to remove project 'Are you sure you want to restore colours to factory defaults?
By choosing 'Yes', you will lose all your local modificationsAre you sure?Argument list used when CMake is called. Each argument must be separated by new line. Multiple arguments on the one line are OK too if they're separated by space.
Do not use arguments -DCMAKE_BUILD_TYPE, -G and 'path', they are passed by the plugin.

Example:
-DCMAKE_CXX_FLAGS=-g
-DCMAKE_C_FLAGS=-gArguments to pass to the debuggerArguments:Arrows with Background ColourAscii ViewerAsk me for each fileAssembler NameAssembler OptionsAssertion failed!
Stack trace is available in the 'Call Stack' tab
Assigned files:Associate this lexer with files which have these extensionsAtAt this time (1Q 2014) only valgrind supported - development state.AttachAttach debugger to process:Attach to process with LLDB is not supported under WindowsAttempting to debug workspace with no active project? Ignoring.Authenticating server...Authentication error: Authentication failed. Retrying...
AuthorAuthor:Auto Revision:Auto Scroll to BottomAuto adjust the horizontal toolbar to fit to the page contentAuto cast 'char[]' into 'char*'Auto detect Node.js & npm binariesAuto display code completion box when typingAuto expand items under the cursorAuto hide build paneAuto insert single matchAuto show build paneAuto-adjust horizontal scrollbar widthAutoincrementAutomatic Word Completion:Automatically hide the build pane when there are neither errors nor warningsAutomatically set breakpoint at mainAvailable Build Systems:Available Macros:Available Themes:Available environment sets:Available project configurations:Available sets:BEGINBLOBBOOLBackgroundBackground Colour:Background colour:Backing up database data before changing the structure is really good idea. Do you want to continue without doing so?Backtrace framesBackupBackup data fileBackup database structureBackup modified filesBackup structure fileBackup!BackwardBased on Theme:BasicsBatch BuildBatch Build...Batch Insert Of CopyrightsBatch Insert of Copyright BlockBatch insert requires a workspace to be openedBefore executing this tool, save all filesBegin searchBeginning transactionBehavior:BehaviourBelow is a list of compilers found on your computer.
Click 'OK' to replace the current list of compilers with this list. 'Cancel' to abort.Below is a list of the 'annoying' dialogs answers, you can modify 
the answer of a dialog by checking / unchecking the saved answerBin Pack ParametersBinaryBlameBlame...Block Guard:BlocksBookmark Shape:Bookmark TypeBookmark label:BookmarksBrace breaking styleBracket Style options define the bracket style to useBracketsBranch nameBreakBreak Before Binary OperatorsBreak Before Ternary OperatorsBreak BlocksBreak Blocks AllBreak Constructor Initializers Before CommaBreak PHP Arrays verticallyBreak after 'heredoc' statementBreak after string concatenation operator (".")Break at assertion failure (MinGW only)Break before 'foreach'Break before 'while'Break before classBreak before functionBreak by line, function or memory address:Break closingBreak else-ifBreak when C++ exception is thrownBreakpointBreakpoint Breakpoint %d condition clearedBreakpoint and Watchpoint PropertiesBreakpoint creation unsuccessfulBreakpoint deletion failedBreakpoint not deletedBreakpoint successfully addedBreakpoint successfully deletedBreakpointsBrowseBrowse  foldersBrowse commit historyBrowse for code completion folder...Browse for folderBrowse for folder...Browse for virtual folderBrowse for working directoryBrowse virtual foldersBrowse...BrowserBug ID:Bug Message Pattern:Bug URL Pattern:BuildBuild Active ProjectBuild Cancelled!Build OrderBuild Order...Build Order:Build Output AppearanceBuild SettingsBuild SystemsBuild TargetBuild ToolBarBuild Type:Build WorkspaceBuild and DebugBuild and ExecuteBuild and Run Pro&jectBuild anyway?Build cancelled. The following compilers referred by the workspace could not be found:
Build directory:Build ended with errors. Click to viewBuild ended with errors. Continue?Build ended with warnings. Click to viewBuild error indicatorsBuild is in progress
Click to view the Build LogBuild order for configuration '%s' has been modified, would you like to save it?Build starting...BuildQBuiltinBundle IdentifierBy default CodeLite comes with many plugins. Here you can disable some if neededBy default the maximum number of configurations checked per file is 12. If that might not be enough, tick this box.By default when typing ";" next to a close brace ")" CodeLite will move the ";" to the right
This option enables or disables this behaviorBy default, 'Find', FindNext and FindPrevious  will clear all  current 'Highlight Matching Word' matches. Untick this box to prevent that happening.By default, CodeLite uses the current active environment variables set as defined in the Settings > Environment Variables dialog.
However, you may choose a different set to become the active set when this workspace is loaded selecting it here.By default, all but the first results of 'Search' are automatically folded; you have to click on each subsequent file to see its contained matches. Tick this box to prevent this.
You can still fold and unfold results with the button in the output pane toolbar.By default, codelite uses the command 'git apply --whitespace=nowarn --ignore-whitespace' for applying patch files.
Set here an extra flags to use with this command, e.g.:

--reverse

See the git manual for more optionsBy default, codelite will prepend the relative directory to the file name to compose an object name (e.g. src/a.cpp will generate object: src_a.o).
Uncheck this option to make the object name exactly as the file name without any prefixesBy default, the tabs of this group will be added to the current tabs. Tick this to replace the current tabs instead.By marking the project as a GUI project, CodeLite will launch the program without any console terminal wrapping the process executionCC CompilerC Compiler OptionsC commentsC&lear AllC++C++ CompilerC++ Compiler OptionsC++ PluginsC++ WorkspaceC++ formatter:C++11 standardsC/C++C/C++ Files C99 standardsCC=codelite-cc gcc

CMakeCMake HelpCMake application path is invalid!CMake arguments (used for configuration)CMake integration for CodeLiteCMake integration with CodeLiteCMake program:CMakePlugin SettingsCOLUMN_NAMECOMMITCPP commentsCSSCScopeCScope Integration for CodeLiteCScope SettingsCScope executable:CScope not foundCScope settingsCTagsCXX=codelite-cc g++
Caching file: Call GraphCall StackCallGraph failed to save file with DOT language, please build the project again.Can not create workspace in the root folderCan not find the string 'Can not format file using PHP-CS-Fixer:
Failed to write temporary fileCan not format file using PHP-CS-Fixer:
failed to read temporary file contentCan not format file using PHP-CS-Fixer: Missing PHAR fileCan not format file using PHP-CS-Fixer: Missing PHP executable pathCan only import one folder at a timeCan't create PHP project. Close your current workspace firstCan't create new db in this database engine!Can't find CodeDesigner template file '%s'Can't find wxFormBuilder template file '%s'Can't import files to workspace without projectsCan't interrupt debuggee process: I don't know its PID!Can't launch PuTTY. Don't know where it is ....Can't open file: Can't write data to file: CancelCannot access or create file!Cannot continue, impossible to access project settings.Cannot open directoryCannot open options fileCannot process UTF-32 encodingCannot process the input streamCannot retrieve active project, cannot continue.Cant connect!Cant find build configuration for project 'Cant find project: Cant find proper compiler for project 'Cant open project 'Cant resolve scope properly. Found <Canvas scale must be decimal value.CaptionCapture process outputCaret & ScrollingCaret blink period (milliseconds):Caret jumps between word segmentsCaret jumps between word segments marked by capitalisation (CamelCase) or underscoresCaret lineCaret line background colourCaret line colour alphaCaret width (pixels):CaseCase SensitiveCase sensitive matchCases:Center Line in EditorChaiChangeChange Active Bookmark Type...Change Log...Change classChange patch line endings (EOL):Change to UNIX style (LF)Change to Windows style (CRLF)Change value...Check &AllCheck AllCheck The Following:Check allCheck all pluginsCheck configuration (turns off other checks)Check continuousCheck for new version on startupCheck spelling...Check the command line options you needCheck the folders you wish to import
files fromCheck this option so codelite will use the clang's code completion over the ctags one.
clang is more accurate, while ctags is fasterCheck your project settings->Debug to define folder mappingCheck...Checking file Checkout directory:ChecksChoose a category for this templateChoose a commitChoose a directoryChoose a fileChoose a file...Choose a file:Choose a folder:Choose a name for the group:Choose a name to give the projectChoose compilerChoose debugger:Choose directoryChoose suppression file to use.Choose the formatting from one of the known stylesChoose the icon fileChoose the object typeChoose the view to use for this folder from the list belowChoose which target(s) to "bundle-ize"Choose.Chose a fileChromiumCl&ean ProjectClangClang Formatting OptionsClangFormat OptionsClassClass Name:Class documentation templateClass exists!
Overwrite?Class generator dialogClass name:Class postfix:Class prefix:Class:ClassnameCleanClean Active ProjectClean WorkspaceClean git database (garbage collection)ClearClear AllClear Build OutputClear Cached PathsClear Clang CacheClear HistoryClear LogClear Svn Output TabClear View	Ctrl-LClear clang translation unit cache:Clear filterClear ignore listClear recent workspace / files historyClear report...Clear the CppCheck report viewClear the excluded files listClear the ignore listClear the keyboard shortcutClick here to open the open resource dialogClick to add a class from which to deriveClick to clear all itemsClick to create a new project.
If NO workspace is open, it will auto create a workspace before creating the projectClick to download a MinGW compilerClick to open a web browser in CodeLite's forumsClick to open a web browser in CodeLite's wiki main documentation pageClick to scan your computer for installed compilersClick to search for other groupsClick to select all itemsClicking this button will erase all clang's generated PCH files. 
Use this button as the first step to resolve a code completion issueClone URL:Clone a compilerClone a git repositoryClone the sources into this target directoryCloseClose AllClose FileClose Other TabsClose Tabs To The RightClose ViewClose WorkspaceClose call graphClose connection?Close selected connectionClose this dialogClose workspaceClosing CodeLite
Save perspective and exit?Closing the diff viewer, will lose all your changes.
Continue?Co&pyCodeCode CompletionCode Completion is case sensitive (improves performance)Code GenerationCode Generation / RefactoringCode Navigation Accelerators:Code navigation key:CodeDesignerCodeDesigner RAD Settings...CodeDesigner RAD integration with CodeLiteCodeDesigner path:CodeDesigner project settings:CodeLiteCodeLite CodeLite - ReplaceCodeLite Diff PluginCodeLite Forum:CodeLite IP addressCodeLite can not find project 'CodeLite can suggest a list of 'Tokens' that will be added to the 'Tokens' table based on parsing the following header files 
(space separated list):CodeLite contains a built-in doxygen documentation generator which adds doxygen comments to your code.
Here you can set the prefix that will placed on top of the dynamic content of the comment:CodeLite settings:CodeLite spell checkerCodeLite spell-checkerCodeLite upgradeCodeLite will place the below text after the auto generated section (so you may override the generated variables)CodeLite's Log-file verbosity:Coding styleCollapseCollapse AllColour ThemesColour local variablesColour modified items in the workspace viewColour modified items in the workspace view treeColour workspace symbolsColouringColouring modifed git files...Colouring tracked git files...Colours and &Fonts...Colours and FontsColumn Index in Pattern:Column LimitColumn indexColumn nameColumn:Columns per indentation level:Columns per tab character in document:Columns:CommandCommand LineCommand List: Add any command(s) hereCommand lineCommand line arguments:Command line is empty. Build aborted.Command line optionsCommand-line DefinitionsCommand:Commands:
<code>%s</code>
CommentComment LineComment SelectionComment Selection	Ctrl-Shift-/Comment:CommentsComments:CommitCommit ERDCommit HistoryCommit ListCommit local changesCommit message:Committing transactionCommunication port:Compare with...Comparison MethodCompilation LineCompilation line:CompileCompile Single FileCompilerCompiler Errors Patterns:Compiler NameCompiler Name / FamilyCompiler OptionsCompiler Warnings Patterns:Compiler is not required for this projectCompiler optionCompiler optionsCompiler regular expressionCompiler search paths for header files. These settings are used by _all_ build configurations (e.g. Release and Debug)Compiler:CompilersCompilers updated successfully!
You can now build your workspaceCompilingCompiling file: Complete &WordCondition %s set for breakpoint %dCondition:
<code>%s</code>
Conditional Conditional Breaks: Add any condition hereConfigurationConfiguration &Manager...Configuration ManagerConfiguration Name is emptyConfiguration Name:Configure Editor Tab ColoursConfigure Project ImagesConfigure cscopeConfigure external tools...ConfirmConflict found during mergeConflicted FilesConnect...Connected!Connected. Click to disconnectConnecting to Connecting to: Connection name:Connection settingsConsoleConstraint 1:NContainsContinueContinuing...Continuing...
Continuous build plugin which compiles files on save and report errorsConvert Indentation to SpacesConvert Indentation to TabsConvert to Unix FormatConvert to Windows FormatCopyCopy All Content from Left to RightCopy All Content from Right to LeftCopy Backtrace to ClipboardCopy Build Output to ClipboardCopy Entire Build Output To ClipboardCopy File NameCopy File Name to ClipboardCopy Full Path to ClipboardCopy LeftCopy LineCopy Path Relative to WorkspaceCopy Path to ClipboardCopy RightCopy Selected LineCopy Settings from:Copy ValueCopy Value OnlyCopy Value to ClipboardCopy Values From:Copy backtraceCopy commit hash to clipboardCopy diagram SQL to the clipboardCopy itemCopy settings from:Copy table SQL to the clipboardCopy the below text and paste it in your php.ini file:Copy the following icon into the projectCopy value to clipboardCopyAllCopyright Plugin - Place copyright block on top of your source filesCopyright Plugin - a small plugin that allows you to place copyright block on top of your source filesCopyrightsCopyrights SettingsCore dump to be opened:Corresponding executable:Could not connect to codelite-lldb at 'Could not convert the file to the requested encodingCould not create Info.plist file
Could not create target file '%s'Could not create workspace folder:
%sCould not find account: Could not find aff file!Could not find any PHP binary to execute. Please set one in from: 'PHP | Settings'Could not find default application for file '%s'
Would you like CodeLite to open it?Could not find dictionary file!Could not find known host file.
Could not find match for class 'Could not find project configuration!
Could not find selected compiler...Could not find the target projectCould not initialize spelling engine!Could not launch terminal for debuggerCould not locate account: Could not locate any MinGW compiler installed on your machine, would you like to install one now?Could not locate compilation database or database version is not up-to-date: Could not locate pro file.
Did you remember to run qmake? (right click on the projectCould not locate project: Could not locate the requested buid configurationCould not open file: Could not read file:Could not start TTY console for debugger!Could not stat file:Could not stat: Could not write tern project file: CppCheckCppCheck integration for CodeLite IDECppCheck settingsCppCheckPlugin: CppCheck is currently busy please wait for it to complete the current checkCppChecker add warning suppressionCppChecker integration for CodeLite IDECreateCreate .hpp instead of .hCreate BranchCreate C++ classes for the databaseCreate C++ classes for the tableCreate CScope &databaseCreate CScope databaseCreate Conditional BreakpointCreate DiffCreate Diff...Create ERD diagram from the databaseCreate ERD diagram from the tableCreate ERD from DBCreate ERD from TableCreate FileCreate New ProjectCreate Svn TagCreate TagCreate UnitTests for Class..Create a breakpoint or watchpointCreate a new 'PreDefined Types' set...Create a new abbreviationCreate a new compiler named 'Create a new project...Create a new workspaceCreate a project from an existing source filesCreate a project from the source files under the workspace pathCreate an empty PHP projectCreate application call graph from profiling information provided by gprof tool.Create application call graph from profiling information provided by gprof tool.   

Create classes from DBCreate classes from TableCreate compact logCreate folder per namespaceCreate foreign keyCreate foreign key for tableCreate local branchCreate new &test...Create new 'PreDefined' setCreate new directory...Create new file...Create new qmake based projectCreate new qmake settingsCreate new virtual folder...Create new workspace...Create reverted IndexCreate reverted Index databaseCreate tests for &class...Create the folder on the file system as wellCreate the project under a separate directoryCreate the project under a separate folderCreate the workspace in a separate directoryCreate the workspace under a separate directoryCreate view for tableCreate/Recreate the cscope databaseCreating file list...CreditsCross-platform database plugin designed for managing data, ERD and code generation.

CscopeCtrlCu&t this item, to be pasted to another tabgroupCurrentCurrent DiffsCurrent canvas scaleCurrent function:Current scope is now set to: "%s", depth: %d
Current working directory: Custom BuildCustom Makefile RulesCustom scaleCustom user settingsCustomizeCustomize coloursCustomize your colours and font per languageCustomize your editor tab colours globally or per projectCutCut LineCut itemCygwin path conversion command:D&uplicate Selection / LineDATEDATETIMEDB ErrorDBETableDOUBLEDRAG AND DROP
A FOLDER HEREData saved! Data structure written successfully!Data to watch:Data was saved to Database ExplorerDatabase created successfullyDatabase dropped successfullyDatabase file:Database handle is NULLDatabase logDatabase nameDatabase passwordDatabase tableDatabase user nameDatabase viewDatabaseExplorerDatabaseExplorer for CodeLiteDateDate:DbExplorerDebugDebug / Output panesDebug Program ArgumentsDebug ToolBarDebug a core d&ump...Debug a core dumpDebug core file with LLDB is not supported under WindowsDebug scriptDebug session ended
Debug session started successfully!
Debug...DebuggerDebugger 'PreDefined Types' set to use:Debugger CommandDebugger MarkerDebugger ProxyDebugger Search PathsDebugger SettingsDebugger Tooltip:Debugger TypeDebugger command:Debugger exited with the following error string:
%sDebugger line background colourDebugger path:Debugger port:Debugger to use:Debugger:DebuggingDebugging a remote targetDebugging a running Node.js process is only available on Linux / OSXDebugging using LLDB is always done over a proxy process (i.e. codelite-lldb)
Here you can select the type of the proxy to use (local or remote):
* Local proxy is used by default to debug local processes (this is the default)
* Remote proxy: use this method to connect to a remote codelite-lldb proxy server over TCP/IPDebugging: DecimalDeclare this class non-copyableDefaultDefault Generator:Default database:Default folder must be set to full path (i.e. it should start with a '/')Default folder:Define here a custom makefile rule to be executed in the pre-build steps.
See the wiki for more helpDefine here set of environment variables which will be applied by CodeLite before launching processes.

Variables are defined in the format of NAME=VALUEDefine how CodeLite will merge the compiler settings defined in the 'Global Settings' with the settings defined on this pageDefine how CodeLite will merge the linker settings defined in the 'Global Settings' with the settings defined on this pageDefines to pass e.g. FOO  or FOO=1:DeleteDelete &AllDelete AllDelete All BreakpointsDelete CompilerDelete Selected BreakpointDelete SetDelete WatchDelete all breakpointsDelete all breakpoints and watchpointsDelete tabgroup %s?Delete the %i selected files from the filesystem?Delete the currently selected abbreviationDelete the currently selected setDelete the selected accountsDelete the selected breakpointsDelete the selected error patternDelete the selected file from the filesystem?Delete the selected itemDelete the selected warning patternDelete to Line &EndDelete to Line &StartDelete...Deleted FilesDependencies:Depends extension:DescriptionDescription to show in the dialogDescription:Design toolDestination Virtual Directory:DetachDetach EditorDetects memory management problems. Uses Valgrind - memcheck skin.Diagram name cannot be emptyDiagram name:Dictionary base name:Dictionary path:Did you intend quote the filenameDid you intend to use --recursiveDiffDiff ToolDiff:DiffsDirectory  %s
Directory where the project will be built. Path is relative to $(WorkspacePath).Disab&le All BreakpointsDisableDisable BreakpointDisable Smart IndentationDisable semicolon shiftDisabledDisabled DisassembleDisassemblyDiscard changes for all filesDisconnected. Click to connectDisplayDisplay &Function CalltipDisplay Breakpoints / Bookmarks marginDisplay Clang errors as text annotations inside the editor (i.e. as an inline messages)Display Folding MarginDisplay Folding marginDisplay FormatDisplay and BehaviorDisplay completion box for language keywordsDisplay function argument list after typing an open brace '('Display function calltipDisplay horizontal guides for matching braces "{"Display information about the hovered textDisplay line numbersDisplay line numbers marginDisplay the margin in which a coloured line marks any altered lineDisplay the margin that lets you 'fold' individual functions, or sections of functions, to hide their contentsDisplay the selected class functions in the list view belowDisplay type info tooltipsDisplay:Displaying:Do not change EOL, apply patch as it isDo not parse the file after saving itDo not trigger file parsing after saving a fileDo not trim the caret lineDo you also want to delete the file 'Do you want to replace the existing editors? (Say 'No' to load the new ones alongside)Do you want to start importing new / updating changed files?DockingDocking Style:DocsetsDon't CreateDon't OverwriteDon't automatically close the Debugger Pane on an editor click if this tab is showing. You probably don't want it to close whenever you set a breakpoint, for example.Don't automatically close the Output Pane on an editor click if this tab is showing e.g. you may not want it to close while you correct one of many build errors.Don't automatically close the Output Pane on an editor click if this tab is showing.Don't automatically fold Search resultsDon't automatically showDon't close this pane when an editor gets focusDon't know how to start MSYSGit...Don't reload any the externally modified filesDon't understand type : %d
DoneDone!Double click a compiler to make it the default for its compiler familyDouble click on an entry to modify it:Double click to insert in the current editor.Double-click to choose one of these groupsDownDownloadDownload ZealDownload and Open Containing Folder...Downloading file: DoxygenDoxygen:Drop databaseDrop tableDrop viewDu&plicate this tabgroupDump data from database into .sql fileDump data into file ...Dump data to fileDuplicate a tabgroupDynamic LibraryE&nable All BreakpointsE&xitEOL ModeEOL Mode:ERDERD type doesn't match current database adapter.ERROR: failed to place breakpoint: "%s"Each file here has been assigned a Virtual Directory. If you're happy with the choice, select the file and click 'Apply'. Otherwise select the file and use the 'back' button to return it to the Unassigned Files section.Ecma5Ecma6Edge threshold (0 - 100) [%]:Edge threshold [%] :EditEdit BreakpointEdit Class ExtendsEdit Class InterfacesEdit ConfigurationsEdit ItemEdit Lexer Keyword Sets:Edit SnippetsEdit TaskEdit TextEdit Workspace ConfigurationEdit contentEdit expressionEdit in a small text editor...Edit the line to add:Edit the selected accountEdit the selected error patternEdit the selected itemEdit the selected warning patternEdit...Edit::Split selection into multiple caretsEditorEditor SettingsEditor TabsEditorFrameEmpty file nameEn&vironment Variables...Enable BreakpointEnable C++11 StandardEnable C++14 StandardEnable CMake for this projectEnable ClangEnable Clang code completionEnable Code Completion for the selected librariesEnable GDB Pretty PrintingEnable HTML code completionEnable JavaScript code completionEnable PHP support for codelite IDEEnable TweaksEnable Windows(R) theme for Vista / Windows 7Enable Word Completion plugin?Enable XML code completionEnable ZoomNavigatorEnable automatic uploadEnable clang code completionEnable code completion for browser mode (DOM, document, window etc)Enable code completion for the Underscore libraryEnable code completion for the chain assertion libraryEnable continuous buildEnable custom buildEnable debugger full loggingEnable extended mode. In extended mode, the remote server is made persistent.
i.e. it does not go down after the debug session endsEnable full debugger loggingEnable localizationEnable mouse zoomEnable multiple selectionsEnable pending breakpointsEnable pipe filteringEnable pluginEnable this to change the caret from a vertical line caret to a block shape caretEnabledEncoding & LocaleEncoding to use for the searchEngine:Ensure captions are visible on mouse hoverEnter New Configuration Name:Enter New Name:Enter a count >0 to ignore this breakpoint (or watchpoint) for that number of times. It then behaves as though it is disabled, except that every time it would have triggered, the ignore count decrements.
When the count reaches zero, the breakpoint becomes active again.Enter any extra library names, separated by';' e.g. Foo  or  Foo;BarEnter here any commands that should be passed to the debugger after attaching the remote target:Enter here any commands that should be passed to the debugger on startup:Enter here the URL for the bug details.
For example: http://mytracker.com?bug_id=$(BUGID)Enter here the URL for the feature request details.
For example: http://mytracker.com?fr_id=$(FRID)Enter here the command to be used by CodeLite for launching consoles:Enter here the message to add to the commit log. You may use the $(BUG_URL) and $(BUGID) macros.
An example: "Fixed: BUG#$(BUGID), See $(BUG_URL) for more details"Enter here the message to add to the commit log. You may use the $(FR_URL) and $(FRID) macros.
An example: "Implements FR#$(FRID), See $(FR_URL) for more details"Enter here the unique ID string that cppchecker can recognise. Examples are "operatorEqVarError" and "uninitMemberVar". You can find these by grepping the cppchecker source, or by running cppchecker on your app in a terminal and passing the additional parameter '--xml'.Enter identifier nameEnter new URL:Enter new expression:Enter new name:Enter number of casesEnter other optionsEnter the URL to debugEnter the condition statementEnter the filepath to the program that you want to debug.
Alternatively, if you enter the path below, putting just the filename here will suffice.Enter the full filepath of the core dump to be examined.
Or, if you enter the correct working directory below, just the filename will suffice.Enter the full filepath of the executable that crashed to cause the core dump.
Or, if you enter the correct working directory below, just the filename will suffice.Enter the line-number on which you wish to break. It's assumed to refer to the current file: if it doesn't, please enter the correct filepath below.Enter the new directory name:Enter the new file name:Enter the regex:Enter the symbol to search for:EnvironmentEnvironment VariablesEnvironment exported to: '%s' successfullyEnvironment sets:Environment variable set to use:ErrorError (%d): %sError allocating bufferError allocating space for unknown parameter type
Error calling isc_dsql_free_statementError colourError creating database connectionError deleting unknown parameter type
Error evaluating expression Error obtaining projectError occurred while creating virtual folder:
Error retrieving Next record
Error with RunQueryWithResults
ErrorsErrors on page:EvalEvaluateEvaluate expressionEvaluate the expression in the "Address" fieldEvery time the debugger runs, set a breakpoint at main(). You may wish to stop then anyway; but it's especially useful when you want to set breakpoints that won't 'take' earlier (however, first try enabling Pending breakpoints, or 'Apply breakpoints after main is hit'ExcludeExclude  %s
Exclude (unmatched)  %s
Exclude PathsExclude binary (application/octet-stream) filesExclude foldersExclude from BuildExclude pathsExclude these file extensions:ExecutableExecutable to Run / DebugExecutable:ExecuteExecute SQLExecute scriptExecuting cscope...Executing sql...Executing: ExecutionExit	Alt-XExpand allExpands to CodeLite's startup directory on (e.g. on Unix it expands to ~/.codelite/Expands to all preprocessors set in the project setting where each entry is prefixed with $(PreprocessorSwitch)Expands to current dateExpands to current file full name (name and extension)Expands to current file full path (path and full name)Expands to current file name (without extension and path)Expands to current file pathExpands to logged-in user as defined by the OSExpands to project's pathExpands to the archive tool (e.g. ar) name as set in the Tools tabExpands to the compiler name as set in the Tools tabExpands to the compiler options as set in the project settingsExpands to the current project intermediate directory path, as set in the project settingsExpands to the current project name as appears in the 'File View'Expands to the current project selected configurationExpands to the linker name as set in the Tools tabExpands to the project binary output fileExpands to the project's build working directoryExpands to the project's run working directoryExpands to the resource compiler nameExpands to the selected text in the active editorExpands to the selected text range in bytes from beginning of file, eg. 150:200Expands to the shared object linker name as set in the Tools tabExpands to the source switch (usually, -c)Expands to workspace's pathExplicitly Include PCHExplicitly include the PCH file in the command line using a compiler switch (.e.g -include /path/to/pch)ExplorerExportExport AllExport CMakeLists.txtExport ERD to image...Export LexersExport MakefileExport abbreviations to the file system...Export canvas backgroundExport canvas to imageExport database CREATE SQL statements into *.sql fileExport database to fileExport database...Export imageExport specific lexersExport syntax highlight settings to zip fileExport the current set to a platform 
specific environment fileExport...ExpressionExpression to watch:Expression:ExtExtended ProtocolExtends:ExtensionExtensions to consider when looking for missing files:External DiffExternal Diff Viewer:External ToolExternal ToolsExtrasFFLOATFail!Failed Files:Failed to amend the tabgroup :/Failed to connect to Node.js debugger:
'%s'Failed to copy template file to '%s'Failed to create .project file '%s'Failed to create directory: Failed to create the path: %s
A permissions problem, perhaps?Failed to create workspace
Workspace already existsFailed to create workspace 'Failed to create workspace:
Failed to execute command: %sFailed to execute command: %s
Working Directory: %s
Failed to find Custom Build Target for event IDFailed to find file: Failed to initialize debugger: Failed to insert breakpointFailed to launch CodeDesigner, no path specified
Please set CodeDesigner path from Plugins -> CodeDesigner -> Settings...Failed to launch Subversion client.
Failed to launch codelite_cppcheck process!Failed to launch debugger 'Failed to launch tool
'Failed to list directory: Failed to load imageFailed to load package.json file from path:
Failed to load the destination tabgroup :/Failed to load wizard's file 'plugin.cpp.wizard'Failed to load wizard's file 'plugin.h.wizard'Failed to locate the configured default terminal application required by CodeLite, please install it or check your configuration!Failed to map remote file: Failed to open fileFailed to open file CallGraph.png. Please check the project settings, rebuild the project and try again.Failed to open file:
Failed to open file: '%s' for writeFailed to open remote file: Failed to open temporary file Failed to open the following files for scan:Failed to open workspace 'Failed to open workspace: corrupted workspace fileFailed to override read-only fileFailed to read file '%s'Failed to read template file '%s'Failed to remove directoryFailed to remove directory: Failed to rename file: Failed to rename path. Failed to rename workspace file:
'Failed to save fileFailed to save file:
Failed to save workspace file to disk. Please check that you have permission to write to diskFailed to start NodeJS applicationFailed to start build process, command: Failed to start clean process, command: Failed to start debugger: permission deniedFailed to start terminal for debuggerFailed to synchronize file 'Failed to unlink file: Failed to unlink path: Failed to write Info.plist file!Failed to write file '%s'Failed:Feature Message Pattern:Feature Request ID:Feature URL Pattern:Fetch the next 100 commitsFetching directory list...Fi&nd functions calling this functionFi&nd...Field 'FileFile ExplorerFile Extensions:File Index in Pattern:File MappingFile Mask:File Masking:File TypeFile Type SettingsFile TypesFile Types:File ViewFile already exists!

 Overwrite?File and Line:File contains ignore string, skipping itFile contains ignore string, skipping it: File diffFile existsFile font encodingFile font encoding:File for data restore:File imported successfully!File mappingFile nameFile name indexFile name:File pathFile removal failedFile text conversion failed!
Check your file font encoding from
Settings | Global Editor Prefernces | Misc | LocaleFile to Run / Debug:File type:File's full path:File:File: FilesFiles Encoding:Files extension to import (semicolon delimited):Files have been modified outside the editor.
Choose which files you would like to reload.Files successfully created.Files to exclude from CppCheck test:Files to ignore:Files were modified outside the editorFill Empty LinesFilter:FindFind &NextFind &PreviousFind &Resource...Find &SymbolFind ...Find / Find In FilesFind / ReplaceFind AllFind DefinitionFind In FilesFind Installed CompilersFind NextFind PrevFind PreviousFind References...Find Resource In WorkspaceFind SymbolFind What :Find What...Find Word At CaretFind Word At Caret BackwardFind and ReplaceFind and select all occurrencesFind bookmarkFind dictionaries on the web..Find files #&including this filenameFind files #including this filenameFind functions &called by this functionFind functions called by this functionFind functions calling this functionFind in FilesFind selected textFind this &global definitionFind this C global definitionFind this C symbolFind this global definitionFind whatFind/FindNext clears highlit matching wordsFinished adding files...FirebirdPreparesStatement::InterpretErrorCodes()
FirebirdPreparesStatementWrapper::InterpretErrorCodes()
FirebirdResultSet::InterpretErrorCodes()
First result page.Fix Include StatementFix build tool path on startupFixture (optional):Fixture name (optional):Fold All ResultsFold At ElseFold CompactFold PreprocessorsFolderFolder MappingFolder name cannot be emptyFolder name:Folder:FoldersFoldingFontFont:For help on options type 'astyle -h'For no limit, set it to 0Force checking unlimited numbers of configurationsForeground Colour:Foreground colour:Foreign key connectionForeign keys:Format Current SourceFormat OptionsFormat SourceFormat Source CodeFormat editor on file saveFormat text after insertionFormat the file when doneFormatted  %s
FormattingFormatting files...ForumsForwardFound CompilersFound and replaced Found and selected Found the breakpoint ID!Frame TitleFrame title:From Revision:From revision:Full NameFull Screen...FunctionFunction 'Function documentation templateFunction implementation (you can edit the code below):Function nameFunction name starts with an upper case letterFunction name:Function prefix:Functions start with lowercaseFunctions to test:GDB WindowsGIT pluginGIT plugin settingsGNUGPL v2 or laterGTK only: Redirect stdout/stderr output to a log fileGUI application with Main FrameGUI dialog-based application (wxFormBuilder)GUI frame-based application (wxFormBuilder)Gathering required information...GdbGeneralGeneral Project SettingsGeneral:GenerateGenerate Info.plist fileGenerate Setters / GettersGenerate Setters/Getters for classGenerate Setters/Getters for class 'Generate Setters/Getters...Generate class filesGenerate consturctorGenerate dependencies files (*.o.d)Generate desctructorGenerate doxygen comment after "/**"Generate doxygen comment?Generate source codeGenerate the functions in this filenameGenerated File(s) Path:Generated File:Generated functions start with lowercase letterGenerating compile_commands.json file...Generator that will be used for CMake configuration. If no generator is selected, plugin uses global default generator selected in plugin settings.Generator:Get Info Version StringGitGit Apply PatchGit Diff: Git commitGit requires a commit messageGit settings...Give a name to the templateGive this account a unique nameGlobal &Editor Preferences...Global Font:Global Parser PathsGlobal PathsGlobal SettingsGlobal Tab ColoursGlobal background Colour:Global email:Global font:Global foreground Colour:Global theme:Global user name:Go ToGo To For&ward LocationGo To LineGo To Pre&vious LocationGo to Dash websiteGo to DeclarationGo to ImplementationGo to Next 'Find In File' MatchGo to Previous 'Find In File' MatchGo to Zeal websiteGo to line number (1 - %d):Go to:GoogleGoto Active ProjectGoto Beginning of Current FunctionGoto Beginning of Next FunctionGoto DeclarationGoto Folder:Goto ImplementationGoto definitionGrep Selection in the Current FileGrep Selection in the WorkspaceGuidesHEAD versionHTMLHandle file has:Hd folder to add new filesHe&lpHeader FileHelpHelp PluginHelp Plugin ErrorHelp...Help:HelpPluginHere you can add the names of any files that you want to ignore. Standard wildcards will work e.g. moc_*Here you can add undefines (branches you don't want to be checked) e.g. 'FOO' or 'BAR=2'. Each will be passed to Cppcheck as '-UFOO' or -U'BAR=2' (so don't write the -U yourself).Here you can pass 'configurations' to cppcheck
e.g. "Only test code branches where FOO is defined" or
"Don't test code branches where the value of FOO is 2"HexadecimalHideHide Docking Windows captionsHide change marker marginHide namespacesHide parametersHide the edit marginHide the edit margin ( the red/green marks when a line is modified)Highlight Active Fold BlockHighlight Matching WordsHighlight OccurrencesHighlight WordHighlight caret lineHighlight caret line with a background colourHighlight colour:Highlight debugger lineHighlight matched bracesHighlight this revisionHistoryHit ENTER to search, or Shift + ENTER to search backwardHit any keyboard key. Don't use the modifier keys (e.g. 'Shift') here, use the checkboxes belowHitting <ENTER> in a C style comment automatically adds a '*' to the next lineHitting <ENTER> in a C++ style comment section automatically adds a '//' to the next lineHome Page:Horizontal ViewHostHost / IP:Host / tty:Host key for server changed: it is now:
Host name / IP of the server hosting the MySQL serverHost=I can't find 'cscope' anywhere. Please check if it's installed.I'm afraid that tabgroup item no longer exists :/I'm afraid that tabgroup no longer exists :/IDIDE KeyIDE Key:INFO: Retag workspace completed in %ld seconds (%lu files were scanned)INFO: Retag workspace completed in 0 seconds (No files were retagged)INTINTEGERIP address:Icon FileIcon Set:Icon changes require a workspace reloadIdentify the data to be watched. It can be one of:
1) Any variable name e.g. 'foo'
2) A memory address, suitably cast e.g.*(int*)0x12345678 will watch an int-sized block starting at this address.
Don't include spaces in the expression: gdb can't understand them.
3) A complex expression e.g. a*b + c/d'. The expression can use any operators valid in the program's native language.

NB. A watchpoint set on a local variable will automatically be removed when the variable loses scope.Identify this tool with an ID from the given listIf a line ends with a character/word which has this style, the remaining of the line will be coloured with this style background colourIf checked, any errors or warnings will be displayed in the editor alongside the failing code.If checked, before executing a command CScope will look for any changed files and, if found, try to update the database. In practice this seems unreliable.If checked, pass -std=c++11 to the clang code completion engine to ensure that all c++11 features are recognized properlyIf checked, pass -std=c++14 to the clang code completion engine to ensure that all c++14 features are recognized properlyIf checked, sort alphabetically. Otherwise display in the same order as the editors.If checked, the generated header file will be foo.hpp instead of foo.hIf clear, only spaces will be used for indentation.
If set, a mixture of tabs and spaces will be used.If missing, append EOL at end of fileIf set, the generated code will be placed inside this namespaceIf the 'Missing Includes' check is enabled, add here any extra
directories where Cppcheck should search for #includesIf this button is visible, there are breakpoints that you tried to set, but that the debugger refused. This most often happens when the breakpoint is inside a library that hadn't been loaded when the debugger started.

Click to offer the breakpoints to the debugger again.If this is a custom build project (i.e. project that uses a custom makefile),
please set the CXX and CC environment variables like this:
If ticked, all output from e.g. cout or wxLogDebug will be redirected to the file .codelite/codelite-stdout-stderr.logIf ticked, examining the contents of e.g. std::string, wxString, wxArrayString will be much easierIf ticked, the 'missingIncludeSystem' suppression is passed to Cppcheck. This stops it complaining about a missing #include <foo>, while still detecting a missing #include "bar"If ticked, these settings will be saved and be applied in the future. Otherwise the warnings will be back when you restart CodeLite, which may be what you should want.If ticked, these settings will be saved and be applied in the future. Otherwise the warnings will be back when you restart CodeLite, which may be what you want.If you accept the host key here, the file will be automatically created.
If you check this box, the breakpoint (or watchpoint) will still exist, but it won't trigger. If you uncheck it in the future, the breakpoint will work again.If you don't want to be spammed by this message again, tick the box. You can change your mind in Settings > Global Editor Preferences > DialogsIf you wish to break when a particular function is entered, insert its name here. In C just the name will do e.g. 'main' or 'myFoo'. For C++ class methods, you need to do 'MyClass::myFoo'

Alternatively you can enter a regular expression, and tick the checkbox below. A breakpoint will then be set on all matching functions.If you wish to import files without extensions, tick this optionIf you wish to insert a breakpoint on several functions, you can tick this box, then enter a suitable regular expression in the textctrl above.If you've entered a line-number, its assumed to refer to the current file. If it isn't, enter the correct filename here.

For a function, a file is usually not required. However, if you have several functions with the same name, in several different files (do people _really_ do that?) and you want to break on only one of those, enter the correct filename here.If your CodeLite is already configured the way you like it, click to skip the WizardIgnoreIgnore BreakpointIgnore String:Ignore count:Ignore the following file patterns:Ignore this fileIgnore this file patternIgnore whitespacesIgnore-count = %u
Ignore.IgnoredImage path cannot be empty.ImagesImmediate InsertImpl?Implement Parent Virtual FunctionsImplement all Un-implemented Functions...Implement all pure virtual functionsImplement all virtual functionsImplement functionsImplement inherited pure virtual Functions...Implement inherited virtual Functions...Implement inherited virtual functionsImplementation FileImplements:ImportImport - Environment variableImport Eclipse ThemeImport FilesImport Files From DirectoryImport abbreviations from the file system...Import database from SQL file ...Import database from fileImport filesImport files to projectImport files without extensionsImport settings from a zip archiveImporting IDE solution/workspace...Importing files ...In file:Include DirsInclude FilesInclude Path:Include PathsInclude pathInclude path to pass to the compiler (provided as semi-colon delimited list)Included From:Indent Case LabelsIndent Function DeclarationAfterTypeIndent line comments (C++-style comments) according to the indentation of the selected fragment of the textIndent using SPACESIndent using TABSIndentationIndentation OnlyIndented line commentsIndex File:Indicator Colour:Indicator ColumnInheritance Access:Inherits:Initializing CodeLiteInline ErrorsInline classInsert Comment BlockInsert Copyright BlockInsert Copyrights BlockInsert DELETE SQL statement template into editor.Insert DELETE SQL templateInsert Doxygen CommentInsert Doxygen Comment	Ctrl-Shift-DInsert ExpansionInsert INSERT SQL statement template into editor.Insert INSERT SQL templateInsert New Variable Name:Insert SELECT SQL statement template into editor.Insert SELECT SQL templateInsert UPDATE SQL statement template into editor.Insert UPDATE SQL templateInsert base revision to diff against:Insert generated files into...Insert new value for '%s':Insert templateInsert the program arguments here
Place each argument on a separate lineInserting comment to file: InstallInstallation PathIntegrationIntermediate FolderInternal breakpoint was hit (id=%d), Applying user breakpoints and continuingInvalid C++ class nameInvalid C/C++ symbol nameInvalid DateInvalid Prepared Statement ParameterInvalid command line options:Invalid field typeInvalid memory value: %sInvalid option file options:Invalid path: Invalid plugin nameInvalid project name 'Invalid project path selected: Invalid project path!Invalid revision numberInvertInvisibleIt is used intenally by this plugin. Valgrind outputs to this file and afterwards the plugin processes this file and shows result.It is used intenaly by this plugin. Valgrind outputs to this file and afterwards the plugin processes this file and shows result.It seems that NodeJS is not installed on your machine
(Can't find file '/usr/bin/nodejs' or '/usr/bin/node')
I have temporarily disabled Code Completion for JavaScript
Please install NodeJS and try againJavaJavaScriptJump to cursorJump to modifed fileJump to next errorJump to previous errorK&RKeep function signature un-formattedKeep openKeep pane openKey nameKey:Keyboard &shortcuts...Keyboard ShortcutKeyboard Shortcut:Keyboard ShortcutsKindLLDB Debugger for CodeLiteLLDB SettingsLLDB Settings...LLDB crashed! Terminating debug sessionLLDB has a data formatters subsystem that allows users to define custom display options for their variables
You can set here the types to pass to LLDBLLVMLONGLabelLabelsLanguageLanguage:Launching MemCheck...
Learn more about LLDB typesLeft FIle:Left Side File:
Let CodeLite configure your installed compilers or help you install oneLet me choose which file or files to reloadLevelLibrariesLibraries Path:Libraries Search PathLibrary PathLibrary switch (e.g. -L)LicenseLineLine Number in Pattern:Line numberLine number indexLine to add:Line:Line: Link EditorLinkerLinker OptionsLinker is not required for this projectLinker optionLinker optionsLinuxList commitsList here list of tokens to be pre-processed by codelite-indexer usually, you would like to add here
macros which confuse the parserList here list of tokens to be pre-processed by codelite-indexer. 
Usually, you would like to add here macros which confuse the parser
Click the below link to read more about this feature and the syntax supported.
List modified filesList of libraries to link with. Each library is prefixed with $(LibrarySwitch)List of library paths to link with. Each library is prefixed with $(LibraryPathSwitch)Listen host:Load MemCheck log from file.Load Welcome Page at &StartupLoad a group of tabsLoad a tab groupLoad canvas from file...Load eclipse theme websiteLoad last session on startupLoad the tabgroupLoad...Loading Svn blame dialog...
Loading Workspace View...Loading file...Loading...Local FolderLocal Folder:Local PreferencesLocal VairablesLocal column:Local folder:Local proxy process (default)Local repository email:Local repository user name:Local variables inside functions will use their own colour to diffrentiate them from other code
The colour can be selected from the 'Colours and Fonts' menuLocale to use:Locally debugging with LLDB on Windows is not supported by LLDBLocalsLocationLocation:Lock fileLocked FilesLogLog:Logging...LoginLogin user nameLook and Feel:Look for files starting with this directory:Look in :MESSAGE: Entering directory `%s'
Mac (CR)Mac Bundler ConfigurationMacBundlerMacroMacros (clang only):Macros (clang):Macros HandlingMainly useful for Windows when the password
prompt is not accessible via the UIMakeMake &LowercaseMake Read OnlyMake Upper&caseMake active project output a bundleMake dirtyMake singleton (available for classes only)Make sure that everything is set properly in your project settingsMake sure that you have an open workspace and that the active project is of type 'Executable'Make sure the file finishes with an end-of-lineMake temporaryMake this 'PreDefined Types' set activeMake this project output a bundleMake this theme for this languageMalformed project nameManage BookmarksManage OS X app bundlesManage Perspectives...Manage PluginsManage bookmarks...Mandatory:MarginsMark &AllMark the line that contains the build error with a red marker on the left marginMark this project as UnitTest++ projectMarks CMake output files as dirty and forces cmake configuration to be call again. This is very handy when you made some changes which don't change CMakeLists.txtMatch &BraceMatch &whole wordMatch a whole wordMatch a whole word onlyMax Instatement IndentMax items kept in find / replace dialog:Max number of array elementsMax number of frames to allow in a call-stackMaximum number of frames to show in the callstack windowMaximum number of tabs opened in the editor:MemCheckMemCheck SettingsMemCheck plugin detects memory leaks. Uses Valgrind (memcheck tool) as backend.MemoryMemory address:Memory size to viewMenuMenu Entry:Menu entry is not unique!Merged after pull. Rebase?MessageMessage:Min Instatement IndentMinGW / Cygwin:Minimun chars to type:MiscMissing file nameMissing filename in %s
Missing includesMissing locationMisspelling found!Misspelling:Modifed filesModifiedModified FilesModified Paths:Modified files found! Commit them first before switching branches...Modified files:Modifiers:More WatchesMore options:More...Most of the time you should find that files automatically get added to the most appropriate virtual directory. If yours don't, here you can add one or more regular expressions suitable for your situation. They'll be remembered for this project.Mouse Left Click +Move DownMove Function Implementation PreviewMove Function Implementation to...Move Line DownMove Line UpMove UpMove column downMove column upMove selected column downMove selected column upMove the #include statement one line downMove the #include statement one line upMove to next errorMove to previous errorMozillaMultiple candidates found. Select a file to open:Multiple jobs (-j)My DialogMy FrameMy MainFrameMyLabelMySQLMySQL ERDMySQL connection is not supported.MySqlN : MN :1NameName for this connectionName of header fileName of new className of source fileName:Namespace:NamespacesNaturalNe&xtNe&xt Build ErrorNewNew &ProjectNew &WorkspaceNew BreakpointNew ClassNew Class DiagramNew Class Wizard...New Class from Template...New Class...New CodeDesigner projectNew CodeLite Plugin Wizard...New CompilerNew Compiler NameNew ConfigurationNew Configuration Name:New Diff..New DirectoryNew FileNew File Name:New File...New FilesNew FolderNew Folder Name:New Folder...New Hierarchical State ChartNew InheritanceNew ItemNew Name:New PHP ProjectNew PHP WorkspaceNew Plugin WizardNew ProjectNew Project WizardNew Qmake projectNew Simple State ChartNew Symbol Name:New TaskNew ThemeNew Theme...New Unit TestNew Virtual FolderNew Virtual Folder Name:New WorkspaceNew abbreviation...New breakpointNew class diagram...New compiler found!New compiler name:New file name:New hierarchical state chart...New name:New qmake based project...New qmake settingsNew qmake settings nameNew simple state chart...New tableNew viewNew virtual folder name:New watchNew workspace name:New wxDialogNew wxDialog with Default ButtonsNew wxDialog with Default Buttons...New wxDialog...New wxFrameNew wxFrame...New wxPanelNew wxPanel...New wxWidgets ProjectNew wxWidgets Project Wizard...New...NewIneritanceDlgBaseNextNext BookmarkNext DiffNext InstructionNext tabNoNo Files to DisplayNo SQL Statements foundNo active project is set !?
Please set an active project and try againNo breakpoint found on this lineNo commit message given, aborting.No file to process %s
No files found.No files to checkNo match foundNo matched file was found, would you like to create one?No matches were found!No new or stale files found. The project is up-to-dateNo other local branches found.No project is active, cannot continue.No remote branches found.No remotes found, can't push!No spelling errors found!No such projectNo suggestionsNo workspaces found.Node ExpressNode threshold (0 - 100) [%]:Node threshold [%] :Node.jsNode.js DebuggerNode.js debugger disconnected unexpectedly
You might want to check the console to see if there are any useful messagesNode.js executable:NoneNormal bookmarkNormal breakpoint
Normally, when a breakpoint is hit, you'll want CodeLite to be raise to the top of the window z-order, so that you can examine values of variables etc.
However you won't always want that to happen; in particular, not if the breakpoint has commands, which end in 'continue'. If so untick this box to stop it happening.Not implemented
Not nowNot nullNot possibleNot this time!Nothing to be done hereNothing to pull, already up-to-date.Number of chars to type before showing the code completion boxNumber of columns to use per rowNumber of columns:Number of edge load level colors (max 10):Number of elements to display for arrays / strings:Number of files scanned: Number of items to display in the completion box:Number of jobs to try to run in parallelNumber of node load level colors (max 10):OKOK, Continue to DebugObjectObject name is same as the file nameObjects extension:Objects suffix (usually set to .o)Objects suffix (usually set to .o.d)Objects suffix (usually set to .o.i)OctalOdbcDatabaseLayer::InterpretErrorCodes()
OdbcPreparedStatement::InterpretErrorCodes()
On deleteOn updateOn various platform (e.g. Cygwin) it is recommended to use their own special gdb executable rather than the global one
You can specify one here, or leave this empty to use the defaultOnDeleteOnUpdateOne Line Keep BlocksOne Line Keep StatementOnly use clang code completionOopsOpenOpen &Workspace...Open '%s'Open Active Project Settings...Open Build Output in an Empty EditorOpen CMakeLists.txtOpen Containing FolderOpen ERD ViewOpen FileOpen File Explorer hereOpen File...Open FolderOpen Folder...Open IDE Solution/Workspace FileOpen Include File "Open MSYS GitOpen MSYS Git at the current file locationOpen ProjectOpen ResourceOpen SQL command panel for the databaseOpen SQL command panel for the tableOpen SQL command panel for the viewOpen SQL panelOpen SSH Account ManagerOpen SSH Account Manager...Open ShellOpen Shell hereOpen TerminalOpen With &Default ApplicationOpen WorkspaceOpen a file from the revcently opened filesOpen a recently used fileOpen a recently used workspaceOpen a workspace from a list of recently opened workspacesOpen account manager...Open an existing workspaceOpen connectionOpen diagramOpen git bashOpen in &editorOpen in CodeLiteOpen new connectionOpen package.jsonOpen plain output in editor window.Open resource...Open selected project settings. If there is no project selected, open the parent project of the seleced item in the treeOpen the QMakeSettings configuration dialogOpen the log file into an editorOpen with &Default ApplicationOpen with CodeDesigner...Open with Default ApplicationOpen with Default Application...Open with default applicationOpen with wxFormBuilder...Open workspaceOpen..Open...Opened files:Optionally, enter the path where the program that you want to debug can be foundOptionsOptions...Options:Or tell me where it can be found, from the menu: 'Plugins | CScope | Settings'Other settings:Other:OutlineOutline PluginOutputOutput FileOutput Pane Tabs Orientation:Output ViewOutput file (optional):Output file name (optional):Output file:Output informative messagesOverride it?OverwriteOverwrite global settingsOverwrite?P&HPPCH Compile FlagsPCH Compile Flags PolicyPHPPHP Executable:PHP ExecutionPHP General SettingsPHP Plugin for the codelite IDEPHP Run / DebugPHP executable:PHP formatter:PHP related settingsPHP-CS-FixerPHP-CS-Fixer help pagePHP-CS-Fixer phar file:PHP: parsed PHPFormatter OptionsPIDPackage name cannot be emptyPackage name:Pad OperatorsPad ParenthesisPad Parenthesis InsidePad Parenthesis OutsidePagePage Setup...Parameter type is not compatible with parameter of type double
Parent folderParent project:Parse WorkspaceParse Workspace - IncrementalParse modified files onlyParse workspaceParse!Parsing expression Parsing policy:Parsing results...Parsing workspace...Parsing workspace: %d%% completedParsing: Pass --check-config to Cppchecker. This is useful if you get a 'Cppcheck cannot find all the include files' warning: it lets you see which #include aren't being located. However it turns off other checks.Pass command line arguments to Node.js
Place each argument on its own linePass object list to the linker via filePassed:Password:Past&ePastePaste Build Output into an Empty EditorPaste bufferPaste itemPatch file to applyPathPath 'Path of the wxWidgets installation (optional).Path to cmake executable.Path to directory where CMakeLists.txt is located.Path to git executable:Path to gitk executable:Path to the executable to runPath:Paths added here will only be used for code completion and NOT during runtime.
If you want to add search paths for runtime (CLI mode only), Use the 'PHP CLI' tabPaths to ignore:PatternPattern:PatternsPause debuggerPause when execution endsPe&rspectivePending Breakpoints reappliedPerform a retag  when workspace is loadedPerform an immediate database updatePerform syntax check when saving a filePerformancePermission denied.Perspectives...Place each parent in a separate linePlace the Find bar at the bottomPlace this class inside a namespacePlease check the external tools' paths settings.Please define the value of the following variables:Please do not use these options again and do not change their values!
Plugin won't work.Please enter a name for the tab groupPlease enter the new ignore-countPlease fill all the fieldsPlease fix your project settings by selecting a valid compilerPlease insert a line number in the range of (1 - %ld)Please save the file before retagging itPlease save your changes before marking the file as read onlyPlease select a 'cdp' (CodeDesigner Project) file onlyPlease select a 'fbp' (Form Builder Project) file onlyPlease select a different project path
Please select a template from the listPlease select a virtual directoryPlease select an account to connect toPlease set an index file to execute in the project settingsPlugin Name:Plugin name:PluginsPlugins::Abbreviations::Show abbreviations completion boxPointer And Reference Aligned to the RightPortPort number:Port:Port=PortabilityPositionPosix standardsPossible name-clashPost BuildPostgreSQLPostgreSQL ERDPostgreSQL connection is not supported.Pre / Post Build CommandsPre BuildPre Compiled HeaderPre compiled headerPreDefined StylesPreferences...Prefix getter with 'get' or 'is'Prefix:PreparedStatement NOT closed and cleaned up by the DatabaseLayer dtorPrepend to global settingsPreprocessPreprocess FilePreprocessed extension:Preprocessing file: Preprocessor name:Preprocessor switch (e.g. -D)PreprocessorsPress any key to continue...PreviewPreview:Previo&us BookmarkPreviousPrevious BookmarkPrevious DiffPrevious tabPrimary keyPrintPrint diagramPrint previewPrint...Processes:Processing file ...Program ArgumentsProgram Received signal Program argumentsProgram arguments:Program exited normally.Program exited with return code: ProjectProject 'Project CreationProject DetailsProject Editor Preferences...Project Name:Project OnlyProject Path:Project SettingsProject TypeProject URL:Project category:Project contains 0 tests. Nothing to be doneProject enabledProject file typesProject kind:Project name:Project names may contain only the following characters [a-z0-9_-]Project new name:Project path:Project settings...Project to whom this unit test should be added to:Project tree folder:Project type:ProjectsProjects:Properties for breakpoint Properties for watchpoint Properties...Provide an alternate debugger executable to use.
This is currently only supported for GDBProvide help based on selected wordsProvide the plugin a short descriptionProvides variables that are part of the node environment, such as process and require, and hooks up require to try and find the dependencies that are being loaded, and assign them the correct types. It also includes types for the built-in modules that node.js provides ("fs", "http", etc)Proxy typePublic Key error: Public key hash: PullPull remote changesPushPush all local commits?Push local changesPush local commitsPut both the declaration and the implementation in the header filePythonQMAKESPEC:QMLQMake SettingsQMake to use:QTDIR:Qt's QMake integration with CodeLiteQuestionQuick Add NextQuick DebugQuick Find AllQuitROLLBACKRaise CodeLite when a breakpoint is hitRaise CodeLite when breakpoint hitReached the end of the 'Find In Files' resultsReached the start of the 'Find In Files' resultsReadyReally remove this warning suppression, rather than just unticking it?Reb&uild ProjectRebaseRebase with Rebase with what branch?RebuildRebuild WorkspaceRecent &FilesRecent &WorkspacesRecent filesRecent workspacesRecently used paths:Reconcile ProjectRecreated CScope DBRecreated inverted CScope DBRectangle hintRecursive option with no wildcardRedoRedo Ref. column:Ref. table:Refactoring engine is still caching workspace info. Try again in a few secondsRefactoring local variableReferenced table:ReferencesReferencing table:RefreshRefresh ViewRefresh file listsRefresh git file listRefreshing the view will lose all your changes
Do you want to continue?RegExpRegex Pattern:Regexs to use (optional):RegisterRegular &expressionRegular ExpressionRegular Expression:Regular:RelationReloadReload FileReload Modified FilesReload WorkspaceReload all the externally modified filesReload defaultsReload workspaceReload.Reloads Help from CMakeRemember my answerRemember my answer and apply it all filesRemember my answer and don't annoy me againRemember my answer and don't annoy me again!Remember my answer and don't ask me againRemember my answer and don't show this message againRemember these settingsRemote Attach CommandsRemote FolderRemote Folder:Remote folder:Remote proxy process over TCP/IPRemote proxy settingsRemoveRemove &All BookmarksRemove All &Currently-Active BookmarksRemove All BookmarksRemove All Currently-Active BookmarksRemove BookmarkRemove BreakpointRemove Compiler?Remove DirectoryRemove ProjectRemove Virtual FolderRemove columnRemove configuration 'Remove database '%s'?Remove duplicate records.Remove errors only if suppression rule was added without any change.Remove foreign keyRemove item %s from %s?Remove pathRemove pathsRemove projectRemove selected columnRemove selected filesRemove selected foreign keyRemove suppressed errors.Remove table '%s'?Remove the selected file from the excluded file listRemove the selected pathRemove the selected suppression from the listRemove view '%s'?Remove workspace configuration 'RenameRename ...Rename CompilerRename FileRename Local Variable...	Ctrl-Shift-LRename ProjectRename SymbolRename Symbol ScopeRename Symbol...Rename Symbol...	Ctrl-Shift-HRename fileRename file:Rename folderRename perspectiveRename projectRename virtual folder:Rename workspaceRename...Reparse the workspaceRepeatReplaceReplace AllReplace With:Replace current tabsReplace the current selectionReplace withRequireJSResetReset FileReset annoying dialogs answers:Reset coloursReset current repositoryReset fileReset repositoryResize the configuration barResolutions:Resolve AmbiguityResourceResource CompilerResource Compiler OptionsResource compiler include path as set in the project settingsResource compiler options provided as semi-colon listResource compiler search path, as semi colon listResourcesRestart Now!Restart debuggerRestoreRestore Default LayoutRestore log:Result as string: '%s'
Result:Result: %i rowsResultSet NOT closed and cleaned up by the DatabaseLayer dtorResultSet NOT closed and cleaned up by the PreparedStatement dtorRetag workspace after svn update, revert or applying patchRetag workspace once loadedRetagging...Revert changesRevert this commitRevert to default settingsRevert to revisionRevision:Right File:Right Margin IndicatorRight Side File:
Rolling back transactionRoot Directory:Root URL:Root URL:  Rule action:Run 'npm init' hereRun Active ProjectRun CppCheckRun Project as UnitTest++ and reportRun SQL command for deleting DatabaseRun SQL command to delete the tableRun SQL command to delete the viewRun SQL commands stored in *.sql fileRun Unit tests...Run XDebug Setup Wizard...Run XDebug TestRun checkRun continuous checkRun project as command lineRun project as unit test project...Run project as web siteRun project...Run qmake...Run spell-checkerRun the following extra checks:Run to cursorRun to hereRun...Running program: S&elect to BraceS&top debuggerSELECT SELECT * FROM '%s' LIMIT 0;SELECT COUNT(*) FROM RDB$RELATIONS WHERE RDB$SYSTEM_FLAG=0 AND RDB$VIEW_BLR IS NOT NULL AND RDB$RELATION_NAME=?;SELECT COUNT(*) FROM RDB$RELATIONS WHERE RDB$SYSTEM_FLAG=0 AND RDB$VIEW_BLR IS NULL AND RDB$RELATION_NAME=?;SELECT COUNT(*) FROM information_schema.tables WHERE table_type='BASE TABLE' AND table_name=?;SELECT COUNT(*) FROM information_schema.tables WHERE table_type='VIEW' AND table_name=?;SELECT COUNT(*) FROM sqlite_master WHERE type='table' AND name=?;SELECT COUNT(*) FROM sqlite_master WHERE type='view' AND name=?;SELECT RDB$FIELD_NAME FROM RDB$RELATION_FIELDS WHERE RDB$RELATION_NAME=?;SELECT RDB$RELATION_NAME FROM RDB$RELATIONS WHERE RDB$SYSTEM_FLAG=0 AND RDB$VIEW_BLR IS NOT NULLSELECT RDB$RELATION_NAME FROM RDB$RELATIONS WHERE RDB$SYSTEM_FLAG=0 AND RDB$VIEW_BLR IS NULLSELECT column_name FROM information_schema.columns WHERE table_name=? ORDER BY ordinal_position;SELECT name FROM sqlite_master WHERE type='table';SELECT name FROM sqlite_master WHERE type='view';SELECT table_name FROM information_schema.tables WHERE table_type='BASE TABLE' AND table_schema='public';SELECT table_name FROM information_schema.tables WHERE table_type='VIEW' AND table_schema='public';SFTPSFTP / SSH SettingsSFTP BrowserSFTP Settings...SFTP Upload FilesSFTP plugin for codelite IDESHOW COLUMNS FROM %s;SHOW TABLE STATUS WHERE Comment != 'VIEW' AND Name=?;SHOW TABLE STATUS WHERE Comment != 'VIEW';SHOW TABLE STATUS WHERE Comment = 'VIEW' AND Name=?;SHOW TABLE STATUS WHERE Comment = 'VIEW';SIGHUPSIGINTSIGKILLSIGTERMSPECIALSQL HistorySQL PreviewSQL command has been copied to the clipboard.SQL exportSQLiteSQLite ERDSQLite connection is not supported.SSH Account ManagerSSH ClientSSH Client arguments:SSH Client:SSHTerminalBaseSTRINGSaveSave AllSave AsSave As Template...Save As...Save Build Log...Save ChangesSave Current Layout As...Save Modified FilesSave OptionsSave Perspective As...Save Project As TemplateSave SQLSave SQL create query...Save a tab groupSave all changes and pull remote changes?Save all changes and rebase?Save all filesSave all files before executing this toolSave any modified files before search startsSave asSave call graph to...Save call graph...Save canvas to file...Save changesSave changes before loading new configuration?Save changes to 'Save diagramSave file failed!Save tabs as groupSave the current layout as:Save...Save...	Ctrl-SSaved build log to file:
ScaleScanScan all included files to locate 'using namespace' statementsScan computer for installed compilersScanning for workspace files...ScopeScript to debug:Script to execute:Scroll on OutputSearchSearch PathsSearch ToolBarSearch a symbolSearch codelite's wiki pagesSearch for a keyboard shortcut either by its keyboard shortcut or by its descriptionSearch for matches and place them in the 'Replace' window as candidates for possible replace operationSearch for selected text in workspaceSearch pathsSearch paths:Search result is no longer validSearch scope:Search the commit list
The search is performed on all columnsSearch the docs for 'Search these file typesSearch...Search::Toggle the Quick-Replace BarSeems like you have all the getters/setters you need...Select &AllSelect AllSelect CodeDesigner executable:Select Executable:Select File for ComparisonSelect File to Include:Select FilesSelect FolderSelect Generated Files Path:Select Local Repository:Select Node.js executableSelect PHP INI file:Select Parent Class:Select Project Path:Select ProjectsSelect SymbolSelect TabSelect Topic:Select ViewSelect Virtual Directory:Select a Directory to View...Select a compiler to downloadSelect a directory to ignore:Select a fileSelect a file to openSelect a file:Select a folderSelect a folder from the tree view and add it as a bookmarkSelect a folder:Select a font to be used with the selected styleSelect a program:Select a tab group, or browse for oneSelect a tab group:Select an icon:Select bookmark type:Select branch (current is Select build order for configuration:Select class:Select core dump:Select dbAdapterSelect debugger executableSelect debugger path. Leave empty to use the default:Select debugger:Select dot...Select each match without de-selectiing the previous matchSelect eclipse XML theme fileSelect executable:Select executale to debugSelect fileSelect file to openSelect file to open:Select file:Select files from the left pane and add them to the project by clicking on the right arrow buttonSelect filetypes to reconcileSelect folderSelect from the list below the functions that you want to override in your classSelect from the list below which symbols type should be coloured by codelite with different colour.
The colour is configurable from the 'Colours and Fonts' dialogSelect git root directorySelect gprof...Select one or more formatting option from the list belowSelect output folderSelect patch fileSelect patch file:Select path for Dot:Select path for Gprof:Select path:Select project:Select projects to insert copyrights block:Select remoteSelect remote branch (current is Select remote to push to.Select target database:Select the 'rename symbol' project scopeSelect the PHP INI file to use with PHP (leave empty for default)Select the PHP command line executable to useSelect the PHP executable to useSelect the PHP executable to use when debugging / running command line scriptsSelect the PHP interperter to use for running this projectSelect the PHP-CS-Fixer phar file locationSelect the QMake to be used for this build configuration as defined in 'Plugins -> QMake -> Settings'Select the active projectSelect the background colour for the selected styleSelect the base folder for importingSelect the bookmark type from the following listSelect the class to test from a list of classesSelect the compiler folderSelect the compiler to use. The compiler controls two aspects of the project:
- If the project is _not_ a custom build, then this compiler is used for compilation
- CodeLite uses the compiler definition for parsing the outputSelect the compiler to use:Select the configurations to build/clean:Select the debugger type to use for this projectSelect the debugging methodSelect the directories to import fromSelect the editor theme from the list belowSelect the file in which to place the function implementation:Select the file you want to addSelect the folding styleSelect the font to use in the build output tabSelect the foreground colour for the selected styleSelect the formatter engine for C/C++
Note that JavaScript, clang-format is always usedSelect the formatter engine for PHP filesSelect the functions to generate from the list belowSelect the functions you want to implementSelect the location of codelite's source treeSelect the location of the installed dictionariesSelect the location of the project. The location must exist.Select the path containing include filesSelect the path to clang-format executable toolSelect the path to the file containing the template header to be prepended to the source filesSelect the plugin project pathSelect the project creation methodSelect the project execution mode:Select the project index fileSelect the project pathSelect the project template from the list belowSelect the project toolchainSelect the project type from the listSelect the remote folder corrseponding to the current workspace fileSelect the remote workspaceSelect the scope of the searchSelect the script to executeSelect the theme from a list.
If the selected theme does not exist for a given language, CodeLite will select the closest one availableSelect the type of the breakpoint:Select the virtual folder in which to place the matching filesSelect the word completion comparison method:
"Starts With" - suggest all words that starts with the partial word that the user typed
"Contains" - suggest all words that contains the partial word that the user typedSelect the workspace build configurationSelect the workspace type:Select valgrind executableSelect when to show the build paneSelect which function to generate by ticking the '?' column
All fields on this table are editableSelect which lexers you wish to exportSelect which tabs you want to be in the groupSelect working directory:Select wxFormBuilder exe:Select...Selected Text Background Colour:Selected Text Foreground Colour:SendSend command to the processSend commands to lldbSend:Server authenticatedServer certificate verification failed. Retrying...
Server:Service Name=Set &0Set &1Set &2Set &3Set &4Set As Active (double click)Set CodeLite frame's titleSet GIT repository pathSet New Key AcceleratorSet PHP execution methodSet PendingSet QTDIR to the directory where you've installed QtSet a description to this templateSet a different background colour for the line containing the caretSet a different image for a every project in the workspaceSet a global font for all the  supported languagesSet a global theme for all the supported languages.
If the theme is not available for a given language, CodeLite will use the next available theme from
the same familySet a list of arguments to pass to the toolSet a list of docsets to use when requesting help while inside a C/C++ files (comma separated list)Set a list of docsets to use when requesting help while inside a CMake files (comma separated list)Set a list of docsets to use when requesting help while inside a Java files (comma separated list)Set a list of docsets to use when requesting help while inside a JavaScript files (comma separated list)Set a list of docsets to use when requesting help while inside a PHP files (comma separated list)Set a list of docsets to use when requesting help while inside an CSS files (comma separated list)Set a list of docsets to use when requesting help while inside an HTML files (comma separated list)Set a list of folders to exclude from the project.
If the last part of the folder path is equal to one of the entries in this exclude list, it will not
be shown in the project viewSet a name to the compilerSet as active projectSet block guard to prevent multiple file inclusion. If left empty, the class name is usedSet custom title to codelite's main frameSet global colours and fontsSet here a string that once found in the source file CodeLite will not prepend the Copyrights block to the fileSet here an additional include paths. Each path should be separated with a semi-colon
Note that usually you don't need to modify this field and it should be left emptySet here an additional library search paths. Each path should be separated with a semi-colon
Note that usually you don't need to modify this field and it should be left emptySet here list of options to pass to PHP-CS-Fixer
Click the Help button to view documentation pageSet here the command to use in order to convert cygwin paths into native Windows paths (use $(File) as a place holder for the file name)Set here the workspace nameSet ignore-countSet la&bel for current stateSet the 'mkdir' for your OS.
Leave it empty to use the default for your OSSet the IDE key between CodeLite and XDebugSet the IP address on which CodeLite is listening.
This IP needs to be visible to the machine where XDebug is running.Set the IP address on which CodeLite is runningSet the PCH flags policy to:
* Append - this means that the flags set in the 'PCH Compile Flags' field will be appended to default flags
* Replace - the 'PCH Compile Flags' will replace any other flagsSet the PHP error reporting level (affects command line only)Set the base theme for this new themeSet the caret line colour transparency value. Where 0 mean complete transparent and 255 means fully opaqueSet the caret width in pixelsSet the commands to run in the post build stageSet the commands to run in the pre build stageSet the current repository emailSet the current repository email
If this field letf empty, the global one is usedSet the current repository user name (this name will tell git who you are).
If this field letf empty, the global one is usedSet the editor's EOL mode (End Of Line)Set the editor's EOL mode (End Of Line). When set to 'Default' CodeLite will set the EOL according to the hosting OSSet the file extensions to include in this project
CodeLite will only display these file types in the project viewSet the file name:Set the folder name:Set the global user name (this name will tell git who you are)Set the home folder for this accountSet the path to Node.js executableSet the path to cscope executableSet the path to npm executableSet the plugin name.
The name should be a valid C++ variable nameSet the port on which CodeLite will be listening for new connections from XDebug. The default port is 9000Set the project nameSet the project name and pathSet the project name. A project name can contains A-Z, 0-9 and _ characters onlySet the project path and nameSet the remote folder pathSet the remote folder to browse and click on the 'Refresh' buttonSet the revision number:Set the template to use when generating documentation for a class (or C/C++ struct).
The following macros are available: $(CurrentFileName), $(CurrentFilePath), $(User), $(Date), $(Name) $(CurrentFileFullPath), $(CurrentFileExt), $(ProjectName), $(WorkspaceName)Set the template to use when generating documentation for a function
The following macros are available: $(CurrentFileName), $(CurrentFilePath), $(User), $(Date), $(Name) $(CurrentFileFullPath), $(CurrentFileExt), $(ProjectName), $(WorkspaceName)Set the theme nameSet the working directory for this toolSets the caret blinking period in milliscondsSets the preview pane zoom factor.
Valid values should be in the range of -10 and 20Sets the type of the projectSetter returns $thisSetter returns a reference to the objectSettin&gsSettingsSettings for CALL graphSettings for workspace configuration '%s' have changed, would you like to save them?Settings have been saved into:
Settings...Setup XDebug INI settingsSetup XDebug port number
CodeLite will listen on this port for new incoming messages from XDebugSetup automatic uploadSetup automatic upload to a remote siteSetup compilersShared Object LinkerShiftShort description goes hereShould CodeLite use TABS or SPACES for indentation?Show &CursorShow &Welcome PageShow &filesShow &symbolsShow 'Debug' tab on starting the debuggerShow AlwaysShow Commit HistoryShow Current LineShow Current the Layout of the current fileShow ERD ThumbnailShow Recent SearchesShow Running Tools...Show SQLShow Status BarShow TerminalShow ToolBarShow WhitespaceShow Word CompletionShow available macrosShow call graphShow call graph for selected projectShow call graph for selected/active projectShow close button on active tabShow codelite's splashscreen when it first startedShow current diffsShow debugger terminalShow diffsShow file diffShow hidden filesShow indentation gudelinesShow indentation guidelinesShow indentation guidelines (vertical lines)Show line numbers marginShow list of available macrosShow locations only from my workspace.Show me whats new !Show previous 100 commitsShow splashscreen on startupShow/hide all plugin toolbarsShow/hide main toolbarsSignalsSimple GIT pluginSimple main with wxWidgets enabledSimple with Background ColourSingle ViewSizeSize:SkipSkip warningsSmart curly bracketsSmart quotesSmart square brackets / ParenthesesSnippet wizardSnippetsSome breakpoints can't be applied before the program is run, or even later. This is especially a problem when trying to debug inside a library that is dynamically loaded (CodeLite itself contains examples of this).

gdb has an option to 'remember' any breakpoints that it can't initially set, and automatically to set them when it becomes possible. It doesn't always work! However, tick this box to tell gdb to try.Some files are modified.
Choose the files you would like to save.Some files were modified outside of the editor.
What would you like to do?Some of the changes made require a restart of CodeLite. Restart now?Some of the changes made requires restart of CodeLiteSome of the compilers referred  by the workspace no longer exist.
Define each missing compiler by cloning an existing compiler.Some of the files are modified, what action should CodeLite take?Sometimes, some breakpoints won't apply cleanly until after main() has been reached. If this box is ticked, CodeLite won't try to apply them earlier.SorrySorry, could not convert selected icon to icns formatSorry, could not copy iconSorry, couldn't find the Build configuration
Sorry, duplication of the tabgroup failed :/Sorry, requested feature isn't implemented yet. Sorry, there is already a tabgroup with this nameSorry, there is no 'Clean' command available
Sorry, you can't change a breakpoint to a watchpoint, or vice versa, while the debugger is runningSort ItemSort ItemsSourceSource Code FormatterSource Code Formatter (Supports C/C++/Obj-C/JavaScript/PHP files)Source Code Formatter OptionsSource Code Formatter Options...Source URL:Source code formatting error!Source folderSourcesSources directory:Space Before Assignment OperatorsSpace Before ParenthesesSpaces In ParenthesesSpecify here a list of types which are to be specially handled while parsing C and C++
source files in the format of TYPE1=TYPE2. So when TYPE1 is found, CodeLite will offer
completion as if it was TYPE2 was foundSpecify here an additional environment variables that will be shared with other people who are using this workspace:Specify the name for the local branchSpecify the name of the new branchSpell CheckerSpellChecker SettingsSplit selection into linesSqliteStack trace is available in the 'Call Stack' tab
Stage 2/2: Parsing matches...Stale FilesStandardStandard ToolBarStart / Continue debuggerStart Reverse Debug RecordingStart continuous checkStart gitkStart new diffStart or Continue debuggerStarting cppcheck: %s
Starts WithStartup CommandsStartup commands:StashStash popStatic LibraryStatic Text LabelStatusStatus:Step &IntoStep &OutStep InStep IntoStep OutSto&pSto&p BuildStopStop AllStop BuildStop Current BuildStop ProcessStop ReasonStop Running ProgramStop current searchStop current svn processStop debuggerStop the current analysisStop the current searchStop the debuggerStringsStrip parameters   StroustrupStructure saved!StyleStyle Font:Style is EOL FilledStylesStyling Within Pre-processor LineSubjectSubversionSubversion OptionsSubversion PreferencesSubversion plugin for codelite2.0 based on the svn command line toolSuccessful!Successfully connected to debugger serverSuccessfully set breakpoint %ld at: Successfully set conditional breakpoint %ld at: Successfully set read watchpoint %ld watching: Successfully set read/write watchpoint %ld watching: Successfully set temporary breakpoint %ld at: Successfully set watchpoint %ld watching: SuggestSuggest completion based on words typed in the editorSuggest completion based on words typed in the editorsSuggest search paths based on the installed compilersSuggest search paths...Suggest...Suggestions:SummarySupport Code Completion for jQuery frameworkSupport CodeLiteSupport WebPackSupport for JavaScript, CSS/SCSS, HTML, XML and other web development toolsSupport for Qt's QML extension for JavaScriptSuppressSuppress allSuppress selectedSuppress warnings about 'system' includesSuppression filesSupressionSvnSvn CheckoutSvn CleanupSvn CommitSvn DiffSvn Diff...Svn Diff: Svn InfoSvn LogSvn Properties...Svn RenameSvn Settings...Svn rename...Swap Header/Implementation file	F12Swap Header/Source ImplementationSwitchSwitch URL...Switch branchSwitch local branchSwitch remote branchSwitch to new branchSwitch to new branch once it is created?Switch to remote branchSwitch to workspace...Switch:SwitchesSymbolSymbol renamedSymbols file loaded into OS file system cache (%ld seconds)Sync Project Files...Sync Workspace to SVNSync project with file system...Sync to Workspace FileSynchronize Signatures...Syntax CheckTABLETABLE_NAMETIMESTAMPTab Colours Per ProjectTab Label Background ColourTab Label Text ColourTab Style:Tab group savedTab groupsTabgroup deletedTabgroup duplicatedTabgroup item CutTabgroup item copiedTabgroup item deletedTabgroup item pastedTabgroup renamedTabgroupsTable %s has no primary key defined!
Table dropped successfullyTable name:Table settingsTabsTagsTags cache clearedTargetTarget '%s' already exist!Target Directory:Target Name:Target URL:Target folderTaskTask Name:TasksTell Cppcheck to use 'n' CPUs. NB this is incompatible with 'unusedFunction', and may give false-positive warnings for e.g. 'Unmatched suppression' .Temp. TemplateTemplate Class WizardTemplate File Path:Template class...Template file contains text which is not comment, continue anyway?Template file contains text which is not comment, continue anyways?Template file name '%s', does not exist!Template for new classTemplate:TemplatesTemporary Temporary 
Temporary output fileTerminalTerminate git processTest ConnectionTest name:Tests failed:Tests passed:TextText Colour:Text ConversionText SelectionThat accelerator already existsThat class doesn't exist!
Try again?That filepath doesn't seem to exist. Are you sure?The 'Find What' field is a regular expressionThe 'git commit --amend' command is a convenient way to fix up the most recent commit. It lets you combine staged changes with the previous commit instead of committing it as an entirely new snapshot. It can also be used to simply edit the previous commit message without changing its snapshotThe C++ compiler path (plus optional flags). This tool is represented in the Makefile as $(CC)The C++ compiler path (plus optional flags). This tool is represented in the Makefile as $(CXX)The C++ name of the testThe CallGraph plugin has suggested node threshold %d to speed-up the call graph creation. You can alter it on the call graph panel.The File 'The Help plugin uses 'Dash' for displaying the offline documentation
Please click the link below to download and install DashThe Help plugin uses 'Zeal' for displaying the offline documentation
Please click the link below to download and install ZealThe ID string that cppchecker will recogniseThe IP address on which the remote proxy server is accepting connectionsThe JavaScript code completion uses the "tern" engine.
Check this option to start tern in verbose modeThe Make tool. on Windows / MinGW this is usually mingw32-make.exe while on other OSs its simply 'make'The SQL script has been saved to '%s'.The SSH client field should contain the command to be
used by the SVN command line client for establishing a secured channel.

For example, on Windows it should contain something like:
/path/to/plink.exe -l <user name> -pw <svn password>

If you don't need SSH channel, leave this field emptyThe SSH port. If you don't know it, leave it as 22 (SSH default port)The XDebug session nameThe assembler tool path. This tool is referred in the Makefile as $(AS)The brace breaking style to use.The breakpoint's line-number is invalid. Please try again.The capture index in the regex that holds the column numberThe capture index in the regex that holds the file pathThe capture index in the regex that holds the line numberThe chart has been saved to '%s'.The checkout directory '%s' already exists
continue with the checkout?The class nameThe column limit
A column limit of 0 means that there is no column limit.
In this case, clang-format will respect the input's line breaking decisions within statements unless they contradict other rulesThe command line arguments to pass to the program when executing or debugging itThe command to executeThe compiler include switchThe compiler preprocess-only switch (e.g. -E)The console titleThe database has been exported to '%s'.The declaration of 'The editor tabs matches to the editor colour themeThe endThe executable to run / debugThe file 'The file does not seem to contain a valid abbreviations entriesThe file full name (includes name+extension)The file full path (includes path+name+extension)The file name (name only)The file's path with UNIX slashes, including terminating separatorThe filepaths of any folders that shouldn't be searched for missing filesThe files listed below are contained in the project, but no longer exist in reality. You can select individual items and delete them from the project, or use the Delete All button.The first errorThe first time you have to select a target database!The first warning or errorThe folder already contains a workspace file
Please close the current workspace before continuingThe following environment variables are used in the project, but are not defined:
The following file:
%s
already exists, overwrite it?
The following files will be updated:The following include paths were detected on your system and will be added to your parser search path.
You may remove a path by unchecking it.

You can always add/remove paths to the parser from the main menu:
Settings > Tags Settings > ParserThe following macros are available:
$(CurrentFileName), $(CurrentFilePath), $(User), $(Date), $(Name)
$(CurrentFileFullPath), $(CurrentFileExt), $(ProjectName), $(WorksapceName)The functions will be placed into this fileThe generated class will be generated as a singleton
classThe getter returns $this objectThe host key for this server was not found but another type of key exists.
The label shown in e.g. a tooltip. You can set it to something descriptive if you wish.The library switch (e.g. -l)The linker options as set in the project settingsThe linker tool. Usually similar to the 'C++ Compiler' tool pathThe list below contains files that exist in the project but not on the file systemThe maximum number of elements to display in arraysThe maximum number of frames that CodeLite will display in the Call Stack tab. This protects against a very long hang while trying to show 100,000 frames in an infinite recursion situation.The nameThe name is used to identify this tool in the 'External Tools' toolbarThe name of the file of which CodeLite will generate the test code.
When left empty, CodeLite will use the first available source file in target projectThe name of the folder used for the generated objects during compilationThe name of the output file (e.g. the executable file name)The new class needs to be put somewhere. Select which of the project's virtual folders to use.The normal choice will be 'GUI application', but choose 'Simple main' for a wx console appThe object name (without the suffix)The output fileThe output switch (e.g. -o)The port number on which the remote proxy server is accepting connectionsThe port on which codelite is accepting debug sessions from XDebug
This value must be the same as the value set in the 'xdebug.remote_port'
directiveThe remote host ip address or its known nameThe resource compiler. (Windows only)The search thread is currently busyThe selected plugin folder does not existThe selected project path 'The server is unknown. Do you trust the host key?
The settings on this page are ignored during buildThe source folder usually points to the location where you develop your codeThe specified database file 'The static archive tool "ar". This tool is referred in the Makefile as $(AR)The tool to create shared objectsThe usual type of watchpoint is 'write-only': that is, it's triggered whenever the target is changed.

Alternatively you can choose for it to trigger when the target is read from, or either written to or read from.The working directory to set before executing or debugging the programThe workspace path. This path must existTheme Name:There are currently no UnitTest project in your workspace
Would you like to create one now?There are no tests to generateThere can be only oneThere is already a file in this folder with a name:
%s
that matches using case-insensitive comparisonThere is already a file with this name. Do you want to overwrite it?There is already a file with this name. Overwrite it?There is already an entry with ID string. Try again?There is already an item with this filepath in the tabgroup. Overwrite it?There is no active editor
There is no qmake defined, please define one from 'Plugins -> Qmake -> Settings'There was a problem while performing a git action.
Last command output:
These are the locales that are available on your system. There won't necessarily be CodeLite translations for all of them.These files have not yet been assigned a Virtual Directory. You can do this yourself by selecting one or more files and clicking the 'Forward' arrow button. A Virtual Directory selector will then appear. After your choice the selection(s) will be moved to the right-hand pane.
Alternatively click the 'Wizard' button for best-guess auto-allocation.This affects the intensity of the colour set in the field above (for words matching the selection). Choose a value between 0 and 256. Higher values give a less-transparent background.This field defines the session name between CodeLite and XDebugThis field is optional. By leaving this field empty, codelite will attempt to connect only using public key authenticationThis file does not seem to contain the declaration for 'This file is located in workspace private folder.
If you don't like this option, you have to add at least one file to list below.This file should be created automatically for you.
If you don't have it, please run a full rebuild of your workspace

This folder already contains a file named 'abbreviations.conf' - would you like to overrite it?This is a regexThis is a singleton classThis is the base-name for the file(s) that will be generated. If the new class is called Foo, by default the files will be Foo.cpp and Foo.h. If you'd prefer different names, type the base-name here.This is what you'll see in the settings dialog. Put whatever you like here; it's not used internallyThis is where you can set the background colour for the Output View panes (where you can see the output from e.g. 'Build' or 'Debug') and terminal (where you see the trace output while debugging)This is where you can set the foreground colour for the Output View panes (where you can see the output from e.g. 'Build' or 'Debug') and terminal (where you see the trace output while debugging)This lets you set the 'Highlight Matching Word' colour (the colour of words that match the selection). To set the colour of the selection itself, see 'Settings > Syntax Highlight and Fonts'.This menu item can only be invoked when right-clicking a project.This operation will delete the selected items.
Continue?This plugin ("requirejs") teaches the server to understand RequireJS-style dependency management. It defines the global functions define and requirejs, and will do its best to resolve dependencies and give them their proper typesThis program is a GUI applicationThis project has no file mapping defined. This may result in breakpoints not applied
This project is disabledThis project uses qmakeThis wizard will help you setup CodeLite to fit your coding style. Click Next to continueThis would terminate the current debug session, continue?ThreadsTick AllTick all the boxesTick this option to enable a verbose logging of gitTimeTitleTitle:To Revision:To break on a memory address, enter the address here.
e.g. 0x0a1b2c3d or 12345678To fix this, set file mapping from Project Settings -> DebugTo revision:Toggle &All FoldsToggle &BookmarkToggle &BreakpointToggle &Every Fold in SelectionToggle All To&pmost Folds in SelectionToggle BookmarkToggle BreakpointToggle C++ pluginsToggle Check AllToggle Current &FoldToggle FilesToggle Line Comment	Ctrl-/Toggle Rewind CommandsToggle TabsToggle case sensitive searchToggle whole word searchTokensToolTool ID:Tool path:Tool&barsToolbar Icon Size:Toolbar icon (16x16):Toolbar icon (24x24):Toolbar:ToolsTotal tests:Total: 0  Filtered: 0  Selected: 0TraceTrack Pre Processor blocks in the code and colour unreachable code with grey text ("disabled text")Track PreProcessor blocksTransparent hintTriggeringTrim T&railing SpacesTrim only modified linesTweak codeliteTweaks PluginTweaks SettingTypeType a command and hit ENTERType a path and hit ENTERType an expression and hit the 'Send' button
This works best when wrapping the command inside a print_r function, e.g.
print_r( $mystr, true )Type any replacement string...Type of watchpoint:Type resource name to open.
You may use a space delimited list of words to narrow down the list of choices
e.g. Typing: 'Open Dialog' will include results that contain both words "Open" _and_ "Dialog"Type the class name or click the buttonType the folder pathType the name of the parent classType the replacement string and hit ENTER to perform the replacementType the resource name (file, variable, class, function, constant or define):Type to filter the optionsType to start a search...Type your commit message hereType:TypesTypes of warnings NOT to display:Typing in selectionURL of repository:URL to Run / Debug:URL:USE UTF-8UnLock fileUnPad ParenthesisUnable to create a project at the selected path
Unable to fetch compilers list from the website
http://codelite.org/compilers.jsonUnable to get current build matrix.Unable to get opened workspace.Unable to start transactionUnassigned files:Unchanged  %s
Uncheck AllUncheck allUndefines to pass:Underline Folded LineUnderscoreUndoUndo Undo/Redo to a pre&viously labelled stateUnitTest++UnitTest++ Project:Unix (LF)Unknown SQL error.Unknown error advancing result setUnknown error!Unknown error.Untick AllUntick all the boxesUntick one or more checkboxes to set any local preferences,UntitledUntrackedUnused functionsUnversioned FilesUpUpdateUpdate Db if staleUpdate WatchUpdate compiler error patternUpdate compiler warning patternUpdate expression:Update the memory in the main display area to apply your changesUpdating cache...Updating workspace...Upload the files to this folder:Uploading file: Use #pragma onceUse $ as placeholder for the selection and @ to set the caret position.
e.g. for($ = 0; $ < @; $++)
NOTE:
If your snippet contains @ or $, you can escape the placeholders with a backslash: \@ OR \$ Use '/**' as doxygen block start (else use '/*!')Use '@' as doxygen keyword prefixUse 'PreDefined types for the 'Locals' viewUse CTRL key to evaluate expressions under the cursorUse CodeLite built in terminal emulatorUse Custom Selection Forground Colour:Use MS Windows resourcesUse Native ToolbarUse POSIX LocaleUse Static wxWidgets librariesUse Unicode Build of wxWidgetsUse Universal wxWidgets librariesUse a block caretUse annotationsUse case sensitive matchUse external diff toolUse file name only for breakpoints (NO full paths)Use global settingUse log file in workspace private folder.Use markersUse precompiled headersUse regular expressionUse selected wxWidgets version.Use separate compilation flags for the PCH fileUse separate debugger argsUse system default browserUse tabs in indentationUse the active file opened in the editorUse the pipe character ("|") as a special separator for applying additional filters. This has the similar effect as using the "grep" command line toolUse this colour to highlight build error messagesUse this colour to highlight build warning messagesUse this file encoding when scanning files for matchesUse this to select a background colour to be used by *all* styles of this lexerUse this to select a font to be used by *all* styles of this lexerUse vertical scrollbar:Use wildcard syntaxUse wildcard syntax (* and ?)Use with Global SettingsUse with global settingsUse workspace specific supp file as default.UserUser name:Username:Uses a static configuration if found.Uses an unicode configuration if found.Uses an universal configuration if found.Using default options file %s
Using the OS native toolbar instead of the generic toolbar
When enabling this option, CodeLite will not be able to display all plugins
ToolsVARCHARVIEWValgrind (memcheck)Valgrind executable:Valid characters for project name are [0-9A-Za-z_]ValueVariableVenetian blinds hintsVerbose LoggingVersion NumberVersion:Vertical ViewViewView CodeLite's strings translated into a different language, if available.  This will also make CodeLite use other aspects of the locale.View TypeView dropped successfullyView name:View settingsVirtualVirtual Directory SelectorVirtual FolderVirtual destructorVirtual folder to add new filesVirtual folder:Virtual name cannot be emptyVisibilityVisible After First IndentVisible after indentationVisible alwaysVisit codelite's forumsWait for connection from XDebug on this hostWarningWarning : applying these changes cannot be undone automaticallyWarnings colourWatchWatch this folderWatchesWatchpointWatchpoint Watchpoint creation unsuccessfulWatchpoint successfully addedWebKitWebPackWebToolsWebTools SettingsWelcome to the setup wizardWelcome!WhatWhat name to you want to give the duplicated tabgroup?When a breakpoint is hit, notify the user raising CodeLiteWhen adding file(s) to project, add it to svn as wellWhen adding new files to a project, place the files in the 'include' / 'src' folders respectivelyWhen build endsWhen build ends scroll to...When build startsWhen checked, CodeLite will create a PHP project that contains all the source files located
under the workspace directoryWhen checked, CodeLite will use the default "C" locale instead of the current locale. This will ensure that svn command line output is parsed properly.When checked, codelite will place the project under a separate directory. The full path of the project file is displayed belowWhen checked, make sure that the last line added
is always visibleWhen checked, the getter function is prefixed with 'get', otherwise, the getter is same as the variable name (without the $ sign)When codelite starts, it will connect to http://codelite.org to check if a new version of codelite was releasedWhen debugging, highlight the current line with a background colourWhen e.g. you compile your project, or use 'Find in Files', the Output Pane opens to show the results. If this box is ticked, it will automatically close as soon as you click in the editor.When enabled (.e.g. set to True) codelite will pass the arguments set in 'Debug Program Arguments'When enabled search paths folders for Code Completion will be synced between the Workspace file and the local search paths database.When enabled, codelite will auto show the code completion box after N chars were typedWhen enabled, codelite will auto show the code completion box for C/C++ keywords after typing 2 charsWhen enabled, codelite will evaluate the expression under the cursor only if the CTRL key is down. 
Otherwise, it will evaluate it automaticallyWhen enabled, create the workspace in a sub directoryWhen enabled, the code completion search engine will use case sensitive searches. 
So 'QString' is NOT equal 'qstring'When enabled, this plugin will gather (short) strings in your code, and completing when inside a string will try to complete to previously seen stringsWhen hitting <ENTER> in a C style comment section,automatically add '*' at the next lineWhen hitting <ENTER> in a C++ style comment section,automatically add '//' at the next lineWhen holding Ctrl/CMD + scrolling with the mouse zoom the textWhen is selected pass -DCMAKE_BUILD_TYPE to cmake.When launched, codelite will restore the last opened workspace + all open editorsWhen renaming a file in the project, rename it in the repository as wellWhen running project with PHP CLI tool, pass the following
include pathsWhen saving a PHP script, run syntax check and report errors in the editorWhen saving a file, automatically format itWhen saving files, trim empty linesWhen scrolling with the mouse, the scrolling can go beyond the end of fileWhen starting the debugger, if the Debug tab is not visible, checking this will make it visibleWhen the option 'Hide Docking Windows captions' is enabled, ensure captions are visible on mouse hover. This is useful so the user can still move around the docking  windowsWhen the user hit ENTER after "/**" generate the proper documentation blockWhen there is only a single match don't show the code completion box but rather insert the matchWhen ticked, extra 'replace' fields will be added. You can also Show/Hide these using a keyboard shortcut.When typing " or ', automatically add another one to the right, unless one already exists (in this case, simply move the caret one position to the right)When typing ' or " on a selection, instead of replacing the selection with the character, wrap it with quotesWhen typing '(' or '[' on a selection, instead of replacing the selection with the character, wrap it with bracketsWhen unchecked, this project will not be built for the current build configurationWhen user clicks inside an editor, hide the output pane -- unless it's one of:When user types '[' or '(' automatically insert the closing bracket.
In addition, if a user types ']' or ')' next to ']' or ')' just move the caret one position to the rightWhen user types '{', automatically insert the closing braceWhen using quick code navigation use this keys in combination with mouse click
To quickly go to implementation/declaration.
Note that at least one box must be ticked, or it would be triggered by every left-click.When using the menu to jump to errors, skip warningsWhereWhere on the filesystem should the new class's files be put? This will normally be the directory corresponding to the Virtual Directory; but you can enter an alternative directory here if you wish.Where:Wherever possible, automatically allocate files to the appropriate virtual directoryWhitespace & IndentationWhitespace Visibility:Whitespace visibilityWhitespace visibility policyWhitespace visibility:WhitespacesWikiWindows & TabsWindows (CRLF)Without this flag, there will be an unnecessary, visible terminal window when your app runs on MSWindowsWizard for creating db structure
Wizards Plugin - a collection of useful utils for C++Wizards Plugin - a collection of useful wizards for C++:
new Class Wizard, new wxWidgets Wizard, new Plugin WizardWor&kspace PaneWordWord Completion SettingsWord W&rapWord WrapWorking DirectoryWorking Directory:Working copyWorking directory (optional):Working directory is set to: Working directory:WorkspaceWorkspace Configuration:Workspace Editor Preferences...Workspace MirroringWorkspace Name:Workspace Pane Tabs Orientation:Workspace Parser PathsWorkspace Path:Workspace SettingsWorkspace Settings...Workspace ViewWorkspace file modified externally. Would you like to reload the workspace?Workspace or project settings have been modified outside of CodeLite
Would you like to reload the workspace?Would you like CodeLite to open this file for you?Would you like CodeLite to try and remove it?Would you like to build the active project
before executing it?Would you like to build the project before debugging it?Would you like to continue without writing the database structure?Would you like to remove the following files from SVN?

Wrap with bracketsWrap with quotesWrapped past end of fileWrite !!Write log:Writing structure ended.
XXDebugXDebug ConsoleXDebug INI SettingsXDebug PortXDebug SetupXDebug did not connect in a timely mannerYesYou already have the latest version of CodeLiteYou are about to beautify You are about to modify %u files. Continue?You are about to remove project 'You are debugging on a remote machine. In order for codelite
to be able to load files into the editor, codelite needs to map the folders on
your local machine to the folders on the remote machineYou can add a condition to any breakpoint or watchpoint. The debugger will then stop only if the condition is met.

The condition can be any simple or complex expression in your programming language,providing it returns a bool. However any variables that you use must be in scope.

If you've previously set a condition and no longer want it, just clear this textctrl.You can add a list of commands to any breakpoint or watchpoint. When the breakpoint is hit and the program interrupted, those commands will be executed.

For example, to print the value of the variable foo and then continue running the program, enter:
print foo
cont

If you've previously entered commands, and no longer want them, just clear this textctrl.You can add folders here for better code completion.
CodeLite will scan these folder for any PHP files for better code complete

There is no need to add the project folders, these are parsed automaticallyYou can always run this setup wizard from the menu:
Help -> Run the Setup WizardYou can choose to override the default selection colouring by enabling this checkboxYou can only drag one folder at a timeYou can specify default generator for all projects (if is not overridden by project settings). If generator is not selected the CMake uses platform's default.You can use the '|' (pipe) character to set the caret position
You may also use any of the known macros to CodeLite (click the 'Help' button)You can use the following macros to construct your own frame title:You don't seem to have entered a name for the function. Please try again.You don't seem to have entered a variable for the watchpoint to watch. Please try again.Your workspace symbols file does not match the current version of CodeLite. CodeLite will perform a full retag of the workspaceZoomZoom 100%Zoom 1:1Zoom NavigatorZoom factor:Zoom inZoom outZoom to allZoomNavigator Settingsaddress asbackticks: evaluates the expression inside the backticks into a stringbegin transaction;breakpoints disabledbreakpoints enabledby Eran Ifrahc++,net,boost,qt 4,qt 5,cvcpp,cocos2dx,c,manpagescascadeclang-formatclang-format help pageclang-format pathclasscmakecodelitecodelite code completion will ignore any files found in one of the paths belowcodelite folder does not existscodelite logs to file various events, this option controls the logging verbositycodelite root dir:codelite will search for include files in these locationscodelite-terminalcolumncommit transaction;cppcheck analysis ended. Found createdcscope results for: files that #include 'cscope results for: find global definition of 'cscope results for: functions called by 'cscope results for: functions calling 'cscope: find symboldata.sqldisableddoxygen */doxygen ///en_CAenumenumeratorerror_reporting:errorsexec sp_tables ?, NULL, NULL, '''TABLE'''exec sp_tables ?, NULL, NULL, '''VIEW'''failed to rename virtual folder: falsefor building project 'for writefunctiongitgit URL to clonegit apply additional flags to use:git clone..git errorhas the read-only attribute sethtml,svg,css,bootstrap,less,foundation,awesome,statamic,javascript,jquery,jqueryui,jquerym,angularjs,backbone,marionette,meteor,moo,prototype,ember,lodash,underscore,sencha,extjs,knockout,zepto,cordova,phonegap,yuhttp://forums.codelite.orghttp://www.codelite.orghttp://www.fai.utb.czin the second step.jQueryjava,javafx,grails,groovy,playjava,spring,cvj,processinglocalhostm_toolKillmacromacros ("defines") to pass to the compiler (provided as semi-colon delimited list)membermkdirnamespacenewcolno actionnodejs path:npm path:ofon ERD diagram base.

php,wordpress,drupal,zend,laravel,yii,joomla,ee,codeigniter,cakephp,phpunit,symfony,typo3,twig,smarty,phpp,html,statamic,mysql,sqlite,mongodb,psql,redis,zend framework 1,zend framework 2privateprotectedprototypepublicqmake executable:qmake execution line:qmake settings:read onlyread-writerestrictrollback transaction;secondsselect a folderset nullsp_columns %s;sp_tables NULL, NULL, NULL, '''TABLE'''sp_tables NULL, NULL, NULL, '''VIEW'''stringstructstructure.sqlswitch(...)switch{...}the current file fullpaththe current file namethe current user name inside square bracketsthe current workspace name inside square bracketsthe database, will be deleted during
this process, but you can do a backup
tooltotal timetruetypedefuncheck all pluginsunionv1.1.1variablewarningswith remote server
write onlywxCrafterwxDbExplorerwxFormBuilder Settings...wxFormBuilder integration with CodeLitewxFormBuilder path:wxMiniAppwxProcess::GetInputStream() can't be opened, abortingwxWidgets settingsProject-Id-Version: CodeLite-zh_CN
Report-Msgid-Bugs-To: 
PO-Revision-Date: 2016-02-24 10:36+0800
Last-Translator: CharlW <huan5765@gmail.com>
Language-Team: Chinese (simplified)
Language: zh_CN
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: Poedit 1.7.5


无论如何都添加文件?
(这可能需要几秒钟)
-- 内存检测进程已完成

艺术风格已终止
以“#”开头的命令,将不会被执行
消息: 另一个进程已经正在运行。
消息: 正在忽略最后的命令。

在 Linux 平台上这并不会成为一个问题,但这并不代表在其他不区分大小写的平台上也是如此 %s 已格式化   %s 未改变    (已禁用)
 - 应用程序/字节流 --------------- 日志开始于: ;匹配整字: ;正则表达式: 已访问  函数名 发现匹配:  项目设置 自拍定时 [s] 总时间 [%] 及其所有内容将从项目被移除。 不存在 不存在! 文件
是否继续? 从该工作区,点击“是”继续或“否”中止。 已经被修改,是否重新载入文件? 在文件视图。 在文件: 匹配 项目  可能的错误 秒 秒    开关:#$%d$(CMD)$(TITLE)$(WXFB) $(WXFB_PRJ)$filename$fullpath$user$workspace%CLASS%%d 分 %d 秒   %i 已删除%i 文件已成功删除%s 行
%u 文件没有被添加,可能是由于命名出现冲突关于(&A)...添加(&A)添加新项到此标签组(&A)添加已有项目(&A)添加(&A)...添加(&A)...应用(&A)连接(&A)连接到进程(&A)...构建(&B)构建项目(&B)构建设置(&B)...取消(&C)全选(&A)检查更新(&C)...清理(&C)清理(&C)清理全部(&C)清除结果(&C)关闭(&C)关闭工作区(&C)代码补全(&C)...编译当前文件(&C)复制此项以便粘贴到其它标签组(&C)剪切(&C)调试器(&D)调试器面板(&D)默认(&D)删除(&D)删除全部断点(&D)删除行(&D)删除此标签组(&D)删除(&D)...禁用(&D)显示 EOL(&D)编辑(&E)编辑(&E)...导出(&E)文件(&F)查找(&F)在文件中查找(&F)...查找此 C 符号(&F)GDB 设置(&G)...生成(&G)跳转到行(&G)...导入其他 IDE 解决方案/工作区文件(&I)...插入(&I)登陆(&L)管理插件(&M)...匹配大小写(&M)导航栏(&N)新建(&N)新建类(&N)...新建空白文件(&N)新建设置(&N)...新建工作区(&N)...新建(&N)...下一个书签(&N)确定(&O)确定(&O)打开(&O)打开活动项目设置(&O)...打开文件(&O)...打开文件夹(&O)...打开工作区(&O)...输出面板(&O)粘贴项到此标签组(&P)暂停调试器(&P)插件(&P)快速调试(&Q)...快速概述(&Q)...推出(&Q)重做(&R)刷新(&R)重新载入文件(&R)重新载入工作区(&R)从此标签组中移除此项(&R)重命名(&R)替换(&R)替换已标记(&R)替换(&R)...重置(&R)重置配色(&R)重启调试器(&R)运行(&R)运行设置向导(&R)...保存(&S)保存文件(&S)搜索前保存修改的文件(&S)搜索(&S)设置(&S)...显示函数(&S)...开始/继续调试器(&S)停止(&S)切换全部面板(&T)上下行交换(&T)取消全部(&U)全否(&U)撤销(&U)取消标记全部(&U)更新数据库(&U)视图(&V)工作区(&W)“”
包含一些无效字符
是否继续?”
包含一些无效字符
是否继续?”
到:
““?”已存在于目标目录“”已经拥有实体”和它的内容吗?”不存在。”来自光盘?”是一个文件夹。你确定要移除它以及它里面文件吗?”已经是项目的一部分“”位于“”已经定位到此路径下”不是有效的 C++ 限定词”属于模板项目 [”没有在结果集中发现”这是必要的
'%s' 是一个文件夹。
此操作将删除该文件夹及其内容。
是否继续?“%s”已分配给:“%s”“%s”不是一个有效行数“%s”不是一个有效的正则表达式”。
你想要从依赖列表中移除它吗?”:调试器无法加载
”:目录不存在”;区分大小写:“添加函数实现”仅在有效的范围内工作, 得到 (“查找内容”为空“高亮匹配词”透明度:“高亮匹配词”颜色:“else” 不打断行(构建已取消)**** 计算表达式时出错:*.hpp;*.h;*.hxx;*.inl;*.h++,经过时间:,过程终止,退出代码: 0,原因: 无法定位项目 -- 无 ------------构建结束----------
----------构建开始----------
----------正在构建项目:[ ----------正在清理项目:[ ............ 出现错误!!!
......... 成功生成文件!
.cpp 文件名:.h 文件名:.supp.supp:总计:0  已过滤:0  已选择:0127.0.0.115212011 - 2015 (C) Tomas Bata University, Zlin, Czech Republic2012 - 2015 (C) Tomas Bata University, Zlin, Czech Republic44-字符签名80::/:内存:;<编辑...><新建...><没有仓库路径被选中><打开配置管理...><使用活动设置><使用默认><b>断点# <没有发现><没有合适的>===== 应用补丁 - 试运行 =====
===== 正在查找引用“%s”=====
===== 共发现 %u 个匹配 =====
===== 输出结束=====
====== 正在搜索:“?同名的调试器类型已经存在同名的文件已经存在!有新的版本可用!一个为 Node express Web 应用框架提供支持的插件。 http://expressjs.com一个基于 UnitTest++ 框架的单元测试插件逗号分隔的接口列表逗号分隔的父类列表同名的编译器已存在一个调试会话正在运行中
取消调试会话并继续构建吗?一个可停靠的窗格,其中显示你的代码缩略图。同名的文件已存在,请选择一个不同的名称文件:“%s”已存在,是否继续?一个基于 CodeLite 工作区的 makefile 文件生成器已从 XRC 文件中加载一个最小的框架

该 XRC 文件由 wxCrafter 生成,
它的“源代码”在 gui.wxcp 文件中。一个新版本的 CodeLite 可用于下载一个允许用户在 CodeLite 中启动外部工具的插件工作区中已经存在具有相同名称的项目扩展名使用分号分隔列表如 cpp;h;xrc
如果你确实想要找到所有可能的文件,请添加 *setter 函数将返回一个引用的对象,例如:
Foo& SetFoo(const Obj& foo) {this->m_foo = foo; return *this;}一个用于添加可扩展代码片段和模板类的小工具在项目文件的相对路径中以空格分隔所有包含项目文件的字符串在项目文件的绝对路径中以空格分隔所有包含项目文件的字符串一个临时断点(或监视点)只工作一次。除了触发后被删除外,它表现的和其它断点(或监视点)一样。一个用于 CodeLite 的终端模拟器应用到全部(&P)ANSIASCII 视图AStyle仅 AStyle:AStyle 选项AStyle 帮助页面缩略语名称:缩略语插件缩略语表设置...成功导入缩略语表!缩略语表导出到 ”中止。
关于关于 CodeLite关于...接受服务器身份验证?接受服务器的身份验证...接受这项建议,你旧的搜索路径将会被这些路径替换
是否继续?访问账户账户名:账户:动作:是否激活?添加附加 -mwindows 标记以避免在 MSWin GUI 程序中启用终端添加/修改 qmake 配置:添加账户添加书签添加断点添加编译器添加现有项添加文件:添加前置声明为 "添加函数实现添加函数实现...添加头文件添加头文件为 "新建监视点添加搜索路径到代码补全分析器中添加监视点添加监视...添加条件断点..添加已禁用的断点添加新的文件...添加临时断点添加丢失的头文件添加新的断点或监视点添加附加的库搜索路径并使用分号分隔添加附加的链接选项并使用分号分隔添加现有文件...添加现有项目添加现有的编译器添加现有项目...添加一个额外的检查抑制。你需要知道它的ID...添加类添加列添加编译器错误模式添加编译器警告模式添加 ctags 分析器排除路径:添加 ctags 分析器搜索路径:添加数据库添加 删除表 语句吗?添加文件添加文件到排除文件列表添加外键约束添加函数实现在这里添加要检查的代码分支定义,例如:“FOO”或“BAR=2”。每一个都将以“-DFOO”或者 -D'BAR=2' 传递给 Cppcheck(因此不要自己写 -D)。当生成 PCH 文件时在此处添加宏命令并传递给 clang
每行一个宏命令在此处添加 clang / ctags 定位头文件的搜索路径在此处添加 clang 定位头文件的搜索路径添加 PHP 包含路径添加搜索路径到代码补全:添加到包含路径:添加 include 路径到代码补全分析器添加新的 ERD 表格添加新的 ERD 视图添加新的帐户添加新列添加新的错误类型添加新的外键约束添加新的警告类型把修订编号作为预处理器定义添加到编译行添加搜索路径添加已选择的文件添加模板类为 #includes 添加完整的路径来进行搜索添加到排除路径添加到包含路径添加...将项目添加到构建矩阵 被空项目调用已添加的文件正在添加文件:正在添加文件...添加模板类失败传递给编译器的附加 C 编译选项以分号分隔列表(仅用于 C 文件)传递给编译器的附加 C 编译选项以分号分隔列表,这些设置将被所有构建配置使用(例如 Release 和 Debug)附加包含路径附加搜索路径传递给汇编器的附加选项以分号分隔列表
(仅用于 .s 文件)传递给编译器的附加编译选项以分号分隔列表传递给编译器的附加编译选项以分号分隔列表,这些设置将被所有构建配置使用(例如 Release 和 Debug)附加环境变量:PHP 附加包含路径(只影响命令行)附加的库搜索路径以分号分隔列表,这些设置将被所有构建配置使用(例如 Release 和 Debug)附加的链接选项以分号分隔列表,这些设置将被所有构建配置使用(例如 Release 和 Debug)附加的预处理定义以分号分隔列表,这些设置将被所有构建配置使用(例如 Release 和 Debug)地址查看地址或指针地址:将 angular 对象添加到顶层环境中,并试图从这个库连接一些奇特的依赖管理方案,这样依赖注入可以得到正确的类型高级高级设置:构建完成后,如果显示构建面板就滚动到...安装完成后,单击“扫描”按钮在程序运行结束后,显示一个控制台消息 "按任意键继续..."
当你希望在控制台终止之后看到标准输出,这是非常有用的向左对齐溢出的新行对齐末端注释对齐到圆形对齐到水平树对齐到网格对齐到垂直树删除所有断点所有文件所有文件已经更新!所有 $(IncludeSwitch) 前缀开头的包含路径真的存在于所有表中
你所有的功能似乎已经实现!Allman通过正则表达式分配允许在下一行声明所有参数单行模式允许短块单行模式允许短函数单行模式允许短 If 语句单行模式允许短循环允许将插入符号放在一行的末尾允许光标滚动到文件底部仅允许运行一个实例允许用户使用鼠标将插入符号放在一行的末尾允许你指定父项目。当项目为子目录 (见 add_subdirectory)并且是与父项目一起建立时。当被选中时允许启用/禁用高亮显示折叠块。(即包含插入符号块)总在全部包含的文件中查找“正在使用命名空间”声明同时显示查找栏的“替换”部分Alt其他调试器可执行文件:总是在多行字符串前打断总是打断模板声明修改前一次提交同名缩略语已存在!一个活动的调试会话已在运行一个 $(IntermediateDirectory) 的别名入侵者可能改变默认服务器密钥来迷惑你的客户端认为密钥不存在
文件移动时出现错误。可能它已经被删除或者你没有足够的权限未捕获的异常抛出!角度另一个调试会话已在进程中。请先终止它另一个实例正在运行中。请在执行另一个实例之前停止它另一个进程已在运行追加追加到全局设置应用程序类型:应用程序入口点应用应用补丁应用补丁 - 试运行...应用补丁...当命中主函数后应用断点应用变更正在应用断点...正在应用断点... 完成正在应用更改...正在应用你的选择并重新启动 CodeLite正在应用你的选择,这可能需要几秒钟归档工具存档开关,通常不需要(VC 的编译器将其设置为 /输出:你确定要放弃所有本地变更?你确定要移除“你确定要继续连接你确定要删除“%s”你确定你要删除编译器吗
'你是否要删除文件夹“你确定要删除透视图“%s”吗?你确定要删除 qmake 设置“%s”吗?你确定要删除已选择的账号吗?你确定要删除已选择项吗?你确定要删除这个编译器选项吗?你确定要删除这个条目吗?你确定要删除这个文件类型吗?你确定要删除这个链接器选项吗?你确定要删除这个工具吗?你是否确定要移除项目“你是否需要将颜色还原到默认值? 
如果选择“是”,你将失去你所有的本地修改你确定吗?CMake 调用时使用的参数列表。每个参数必须用新行分隔。在同一行上使用空格分隔多个参数也是可以的。 
不要使用参数 -DCMAKE_BUILD_TYPE,-G 和“path”,它们都可以被插件传递。

例如:
-DCMAKE_CXX_FLAGS=-g
-DCMAKE_C_FLAGS=-g参数传递给调试器参数:带背景色的箭头ASCII 视图每个文件都询问我汇编器名称汇编器选项声明失败!
在“调用栈”标签中堆栈跟踪是可用的
指定文件:关联此语法分析器到这些扩展名的文件在此时(2014 年 1 季度)只有 valgrind 在支持-开发状态。连接连接调试器到进程:在 Windows 下使用 LLDB 连接到进程是不支持的正在试图调试没有活动项目的工作区?正在忽略。服务器身份验证...身份验证错误:身份验证失败,正在重试...
作者作者:自动修正:自动滚动到底部自动调整水平滚动条宽度以适配页面内容自动转换“char[]”为“char*”自动检测 Node.js & npm 二进制文件输入时自动显示代码补全框自动展开光标下的项自动隐藏构建面板自动插入单个匹配项自动显示构建面板自动调整水平滚动条宽度自动递增自动代码补全:当没有错误或者警告时,自动隐藏构建面板自动在 main 函数处设置断点可用的构建系统:可用的宏命令:可用的主题:可用的环境设置:可用的项目配置:可用的设置:BEGINBLOBBOOL背景背景色:背景色:在改变数据库结构前备份数据库数据是个不错的主意。你确定什么也不做就继续?回溯帧备份备份数据文件备份数据库结构备份修改的文件备份结构文件备份!向后基于主题:基本批量构建批量构建...批量插入版权批量插入版权块工作区打开后才能批量插入在运行该工具前,保存全部文件开始搜索正在处理行为:行为以下是在你的电脑上发现的编译器列表。
点击“确定”就使用该列表替换当前的编译器列表。点击“取消”就退出。以下为“讨厌”对话框回答列表,你可以修改
这些对话框的答案,通过勾选/取消勾选那些已保存的回答本组参数二进制归咎于归咎于...块向导:块书签形状:书签类型书签标签:书签括号折断风格使用括号风格选项来定义括号风格括号分支名称中断在二元运算符前打断在三元运算符前打断中断块中断所有块在构造函数初始化停顿之前打断垂直打断 PHP 数组“heredoc”语句后打断字符串连接运算符(".")后打断声明失败时中断(仅 MinGW )在“foreach”之前打断行在“while”之前打断行在类之前中断函数前打断函数或内存地址使用行中断:中断关闭中断 else-if 语句当 C++ 抛出异常时中断断点断点断点 %d 的条件已清除断点和监视点属性断点创建失败删除断点失败没有删除断点添加断点成功删除断点成功断点浏览浏览文件夹浏览提交历史记录浏览代码补全文件夹...浏览文件夹浏览文件夹...浏览虚拟文件夹浏览当前工作目录浏览虚拟文件夹浏览...浏览器Bug 编号:Bug 消息模式:错误 URL 模式:构建构建活动项目构建已取消!构建顺序构建顺序...构建顺序:构建输出的外观构建设置构建系统构建目标构建工具栏构建类型:构建工作区构建并调试构建并执行构建并运行项目(&J)无论如何都构建?构建被取消。找不到下面该工作区中使用的编译器: 
构建目录:构建错误,已结束。单击可查看遇到错误构建结束。是否继续?构建结束,但出现警告。单击可查看构建错误指示器正在构建进程中
单击查看生成的日志配置“%s”的构建顺序已修改,你要保存吗?构建正在开始...构建内建字段Bundle 标识默认情况下,CodeLite 配备了很多插件。你可以在这里禁用一些不必要的插件默认每个文件配置检查数量是 12 个。如果你觉得数量不够,请勾选方框。在默认情况下当输入 ";" 后紧接着输入 ")" 时,CodeLite 将移动该 ";" 到括号的右侧
该选项可以启用或禁用此行为默认情况下,“查找”,查找下一个 和 查找前一个 将清除当前的所有“高亮显示匹配词”的匹配项。去掉这个复选框,可以防止这种情况发生。默认情况下,CodeLite 使用当前活动环境变量设置(定义在 设置 > 环境变量...。
不过,你可以在此工作区加载时选择其它设置变成活动设置。默认情况下,所有“搜索”结果的第一条会被自动折叠;你需要点击每个后续的文件来查看它所包含的匹配。你可以勾选方框来避免这种情况。
在输出面板工具栏中你仍然可以通过这个按钮来折叠再还原结果。默认情况下,CodeLite 使用“git apply --whitespace=nowarn --ignore-whitespace”命令来应用补丁文件。
设置一个临时的标志来使用这条命令,例如:

--reverse

查看 Git 用户手册可以得到更多选项默认情况下,CodeLite 会预先考虑通过相关目录以及文件名称来构成一个目标文件名称(例如 src/a.cpp 将生成目标:src_a.o)。
取消这个选项会省略目标文件名称的前缀来与文件名称保持一致默认情况下,此组标签将被添加到当前标签组,勾选它以替换当前标签组通过标记项目为一个 GUI 项目,在程序启动时CodeLite 将会避免任何控制台终端来包装流程执行CC 编译器C 编译器选项C 注释清理全部(&L)C++C++ 编译器C++ 编译器选项:C++ 插件C++ 工作区C++ 格式化器:C++11 标准C/C++C/C++ 文件C99 标准CC=codelitegcc gcc

CMakeCMake 帮助CMake 应用程序路径是无效的!CMake 参数(用于配置)CodeLite 集成的 CMake 工具CodeLite 集成的 CMake 工具CMake 程序:CMake 插件设置COLUMN_NAMECOMMITCPP 注释CSSCScopeCodeLite 集成的 CScope 工具Cscope 设置Cscope 可执行文件:找不到 CscopeCscope 设置CTagsCXX=codelitegcc g++
缓存文件:调用图调用栈调用图未能通过 DOT 语言保存,请重新构建该项目。无法在根目录中创建工作区找不到字符串“使用 PHP-CS-Fixer 时无法格式化文件:
未能写入临时文件使用 PHP-CS-Fixer 时无法格式化文件:
未能读取临时文件内容使用 PHP-CS-Fixer 时无法格式化文件:丢失 phar 文件使用 PHP-CS-Fixer 时无法格式化文件:丢失 PHP 可执行文件路径只能在一次导入一个文件夹未能创建 PHP 项目。首先请关闭你当前的工作区无法创建新数据库在该数据库引擎中!找不到 CodeDesigner 模板文件“%s”找不到 wxFormBuilder 模板文件“%s”工作区没有项目时无法导入文件无法中断被调试程序进程:不知道它的 PID!无法启动 PuTTY ,不知道程序在哪里...无法打开文件无法写入数据到文件:取消无法访问或创建文件!不能访问项目设置,无法继续。无法打开文件夹无法打开配置文件无法处理 UTF-32 字符集无法处理输入数据流无法恢复活动项目,无法继续。无法连接!无法找到构建配置为项目“项目不存在:项目编译器不存在“无法打开项目“不能严格处理范围。发现 <画布比例必须为十进制值。标题捕获进程输出光标和滚动光标闪烁周期(毫秒):光标在字段间跳跃光标在用大写字母(驼峰格式)或下划线标记的字段间跳跃插入符号所在行插入符号行背景颜色插入符号所在行透明度光标宽度(像素):匹配大小写区分大小写区分大小写匹配情况:行居中Chai更改更改活跃的书签类型...更改日志...更改类更改补丁行结尾(EOL):更改为 UNIX 风格(LF)更改为 Windows 风格(CRLF)更改值...全选(&A)全选检查以下项目:全选选中所有的插件检查配置(关闭其它检查)连续检查启动时检查更新正在进行拼写检查...检查你需要的命令行选项检查你希望导入文件的文件夹
从检查这个选项以便 CodeLite 能够在 ctags 中使用 clang 的代码完成功能。
clang 是非常准确的,尽管 ctags 更快检查你的项目设置 -> 调试来定义文件夹映射检查...检查文件检验目录:校验为该模板选择一个类别选择一个提交单击选择一个目录选择一个文件选择一个文件...选择一个文件:选择一个文件夹:选择一个组名:为项目选择一个名称选择编译器选择调试器:选择目录选择要使用的抑制文件。从一个已知的格式样式中选择一种选择图标文件选择对象类型从下面的列表中为该文件夹选择视图选择哪些目标到“bundle-ize”选择。选择一个文件Chromium清除项目(&E)ClangClang 格式化选项ClangFormat 选项类类名称:类文档模板类存在!
是否覆盖?类类名称:类后缀:类前缀:类:类名称清除清理活动项目清除工作区清理 git 数据库(垃圾回收)清除清理全部清理构建输出清理已缓存的路径清除 Clang 缓存清除历史记录清除日志清除 SVN 输出标签清除视图	Ctrl-L清理 clang 翻译组件缓存:清除过滤规则清除忽略列表清除最近工作区/文件历史记录清理报告...清除 CppCheck 报告视图清除排除文件列表清除该忽略列表清除键盘快捷键点击这里打开 打开资源 对话框单击以添加一个派生类单击清除全部项单击以创建一个新的项目。 
如果没有工作区被打开,它将自动在创建该项目之前创建一个工作区单击下载 MinGW 编译器点击打开浏览器浏览 CodeLite 论坛点击打开浏览器浏览 CodeLite's wiki 文档主页单击来扫描电脑中已安装的编译器点击查询其它组单击选择全部项单击此按钮时将删除所有 clang 已生成的 PCH 文件。
使用此按钮为解决代码补全问题的第一步克隆 URL:克隆一个编译器克隆一个 git 仓库克隆资源到这个目标目录关闭全部关闭关闭文件关闭其它标签右键单击关闭标签关闭视图关闭工作区关闭调用图关闭连接?关闭已选择连接关闭此对话框关闭工作区正在关闭 CodeLite
保存透视图并退出吗?关闭 diff 查看器,将会丢失你所有的变更。
是否继续?复制(&P)代码代码补全代码补全是区分大小写的(提升性能)代码生成代码生成/重构代码导航加速器:代码导航键:CodeDesignerCodeDesigner 应用程序快速开发设置...CodeLite 集成的 CodeDesigner RAD  工具CodeDesigner 路径:CodeDesigner 项目设置:CodeLiteCodeLiteCodeLite - 替换CodeLite 比较插件CodeLite 论坛:CodeLite IP 地址CodeLite 无法找到项目“CodeLite 能够通过分析以下头文件来提供将要被添加到“令牌”表中的“令牌”列表建议
(使用空格来分隔列表)CodeLite 包含内建 doxygen 文档生成器,它将会添加 doxygen 注释到你的代码。
在此设置动态内容注释顶部的前缀:CodeLite 设置:CodeLite 拼写检查CodeLite spell-checkerCodeLite 升级CodeLite 将把以下文字放在自动生成段后面(所以你可以覆盖此生成的变量)CodeLite 日志文件信息显示:代码风格折叠折叠全部颜色主题着色局部变量在工作区视图中着色已修改项在工作区视图树中着色已修改项着色工作区符号着色着色已修改的 git 文件...着色跟踪的 git 文件...颜色和字体(&F)...颜色和字体列索引模式:列限制列索引列名称列:每层缩进所占列数:文档内制表符所占列数:列:命令命令行命令列表:在此添加任何命令命令行命令行参数:命令行为空,构建中止。命令行选项命令行定义命令:命令:
<code>%s</code>
注释注释行注释所选注释所选	Ctrl-Shift-/注释:注释注释:提交提交 ERD历史提交记录提交列表提交本地变更提交信息:正在提交事务通信端口:对比...比较方法编译行编译行:编译编译单个文件编译器编译器错误模式:编译器名称编译器名称/科:编译器选项编译器警告模式:该项目不需要编译器编译器选项编译器选项编译器正则表达式编译器搜索头文件的路径。这些设置会被所有构建配置使用(例如 Release 和 Debug)编译器:编译器编译器已成功更新!
你现在可以构建你的工作区了编译编译文件:代码补全(&W)条件 %s 已设置,针对断点 %d条件:
<code>%s</code>
条件条件断点:在此处添加任何条件配置配置管理器(&M)配置管理配置名称为空配置名称:配置编辑选项卡颜色配置项目图片配置 cscope配置外部工具...确认合并时发现冲突已冲突的文件连接...已连接!已连接。单击此处断开连接连接到连接到:连接名称:连接设置控制台限制 1:N包含继续继续...继续...
用于编译已保存文件和报告错误的可持续构建插件将缩进转换为空格将缩进转换为制表符转换为 Unix 格式转换为 Windows 格式复制将所有内容从左边复制到右边将所有内容从右边复制到左边复制回溯到剪贴板复制构建输出到剪贴板复制整个构建输出到剪贴板复制文件名复制文件名到剪贴板复制完整路径到剪贴板向左复制复制当前行复制工作区关联路径复制路径到剪贴板向右复制复制已选择行复制设置来自:复制值仅复制值复制值到剪贴板复制值来自:复制回溯复制提交散列到剪贴板复制 SQL 图表到剪贴板复制项复制设置来自:复制 SQL 表格到剪贴板复制下面的文本,并将其粘贴在你的 php.ini 文件中:复制下面的图标到项目复制值到剪贴板全部复制版权插件 - 将版权块放到你源文件的顶部版权插件 - 允许你在源文件头部插入版权信息的小插件版权版权设置核心转储被打开:对应的可执行文件:无法连接到 codelite-lldb 在“不能转换文件为所请求的编码无法创建 Info.plist 文件
无法创建目标文件“%s”无法创建工作区目录:
%s无法找到账户:找不到 aff 文件!找不到任何 PHP 二进制文件来执行。请从:“PHP | 设置”设置一个没有找到文件"%s"的默认打开程序
是否使用 CodeLite 打开?找不到字典文件!无法发现已知的主机文件。
找不到类匹配“无法找到项目配置!
找不到选定的编译器...找不到目标项目不能初始化拼写引擎!无法启动调试器的终端无法定位账户:在你计算机上找不到任意一个已安装的 MinGW 编译器,你现在想要安装一个吗?无法定位编译器数据库或数据库版本不是最新的:找不到 pro 文件。 
你是否记得运行过 qmake 吗?(右键单击该项目无法定位项目:无法定位请求的构建配置无法打开文件:无法打开文件:无法为调试器启动 TTY 控制台无法统计文件:无法统计:无法写入三个一套的项目文件:CppCheckCodeLite 集成的 CppChecker 工具CppCheck 设置CppCheckPlugin: CppCheck 当前正忙,请等待它完成当前检查CppChecker 添加警告限制CodeLite 集成的 CppChecker 工具创建创建 .hpp 文件替代 .h 文件创建分支从数据库创建 C++ 类为表创建c++类创建 cscope 数据库(&D)创建 cscope 数据库创建条件断点创建 Diff创建 Diff...创建 cscope 数据库从表中创建 ERD 表创建 Diff从表中创建 ERD创建文件创建新项目创建 SVN 标签创建标签为类创建单元测试..创建一个断点或监视点创建新的“预定义”类型集合...新建缩略语...创建一个新的编译器名为“创建一个新项目...创建一个新的工作区从已存在的原始文件创建项目从工作区路径下的源文件创建一个项目创建一个空的 PHP 项目从 gprof 工具提供的分析信息中创建应用程序调用图从 gprof 工具提供的分析信息中创建应用程序调用图。

从数据库创建类创建类表创建紧凑日志为每个命名空间创建文件夹为表格创建外部约束为表创建外部约束创建本地分支创建新测试(&T)创建新建“预定义”设置创建新目录...创建新的文件...创建基于 qmake 的新项目创建新的 qmake 设置创建新的虚拟文件夹...创建新工作区...创建反向索引创建反向索引数据库为类创建测试(&C)在文件系统中创建文件夹在独立的目录下创建项目在独立的目录下创建项目在一个单独的目录中创建工作区在单独目录下创建工作区为表创建视图创建/重新创建 cscope 数据库创建文件列表...荣誉用于管理数据、ERD以及代码生成的跨平台数据库插件。

CscopeCtrl剪切此项以便粘贴到其它标签组(&T)当前当前差别当前画布比例当前活动:目前范围设置为:“%s”,深度: %d
当前工作目录:自定义构建自定义 Makefile 规则自定义构建自定义用户设置自定义自定义颜色为每种语言自定义颜色和字体针对全局或每个项目自定义你的编辑选项卡颜色剪切剪切当前行剪切项Cygwin 路径转换命令:复制选择内容/行(&U)DATEDATETIME数据库错误DBE 表DOUBLE拖放一个文件夹
到这里数据已保存!数据结构成功写入!要监视的数据:数据已被保存到资源管理器数据库创建成功数据库成功删除数据库文件:数据库句柄为空无打开的数据库无打开的数据库数据库密码无打开的数据库数据库用户名无打开的数据库资源管理器DatabaseExplorer for CodeLite日期日期:DbExplorer调试调试/输出面板调试程序参数调试工具栏调试核心转储(&U)...调试核心转储在 Windows 下使用 LLDB 调试核心文件是不支持的调试脚本 调试会话结束
成功启动调试会话!
调试...调试器使用的调试器“预定义类型”:调试器命令调试器标志调试器代理调试器搜索路径:调试器设置调试器提示:调试器类型调试器命令:调试器退出错误:
%s调试器行背景颜色调试器路径:调试器端口:要使用的调试器:调试器:调试中调试远程目标调试一个正在运行的 Node.js 进程,这仅在 Linux / OSX 上是可用的使用 LLDB 进行调试总是通过一个代理进程来工作的(即 CodeLite-LLDB)
在这里你可以选择使用的代理类型(本地或远程):
* 默认本地代理来调试本地进程(这是默认的)
* 远程代理:此方法是通过 TCP/IP 来连接到远程 CodeLite-LLDB 代理服务器调试中:十进制声明此类不可复制默认默认生成器:默认数据库:默认文件夹必须设置为完整路径(即它应以“/”开始)默认文件夹:在此定义构建前步骤中运行的自定义 makefile 规则。
查看 wiki 获取更多信息这里设置环境变量,CodeLite 将会在运行进程前应用这些环境变量

变量定义格式 NAME=VALUE定义CodeLite如何合并编译器的全局设置以及本页中的设置定义CodeLite如何合并链接器的全局设置以及本页中的设置定义传送,例如:FOO 或 FOO=1:删除删除全部(&A)删除全部删除全部断点删除编译器删除已选择断点删除设置删除监视删除全部断点删除全部断点和监视点删除标签组 %s?从文件系统中删除 %i 个已选择的文件?删除当前已选择缩略语删除当前已选择设置删除所选的帐户删除所有已选的断点删除已选择错误类型从文件系统中删除已选择的文件?删除所选项删除选定的警告模式删除到行尾(&E)删除到行首(&S)删除...已删除的文件依赖:依赖文件扩展名:描述描述显示在对话框中描述:设计工具目标虚拟目录:分离分离编辑器检测到内存管理问题。使用 Valgrind - memcheck 皮肤。图名不能为空图名:词典基本名称:词典路径:你打算引用这个文件名吗你打算使用参数 --recursive 吗DiffDiff 工具Diff:Diffs目录 %s
构建该项目的目录,路径与 $(WorkspacePath) 是相对应的。禁用全部断点(&L)禁用禁用断点禁用智能缩进禁用分号的转变已禁用已禁用反汇编反汇编放弃全部文件的变更已断开连接。单击此处重新连接显示显示函数调用提示(&F)显示断点/书签页边将 Clang 错误作为文本注释显示在编辑器中 (即作为一条内联消息)显示折叠页边显示折叠页边显示格式显示和行为为语言关键字显示代码补全框在输入左括号“(”后显示函数参数列表显示函数调用提示显示水平匹配指南 "{"显示覆盖文本的信息显示行号显示行号页边当用颜色标记被修改行时显示页边显示页边以便“折叠”单独的函数或者函数中一段,从而隐藏其内容显示匹配的类和函数名称显示类型信息提示显示:显示:不更改 EOL,依照原样应用补丁文件保存后不进行文件分析文件保存后不触发文件分析不删除光标所在行你还想要删除这个文件“你是否要替换现有编辑器?(选择“否”会在旁边加载一个新的)你想开始导入新的/更新了的文件吗?停靠停靠风格:文档设置 无法创建无法覆盖当调试面板显示时,点击编辑器不要自动关闭调试器面板。例如,你可能不想在设置断点时关闭面板。当输出面板显示时,点击编辑器区域时不要自动关闭输出面板。例如,你可能不想在修正许多构建错误中的一个时关闭面板。当输出面板显示时,点击编辑器区域时不要自动关闭输出面板。不要自动折叠搜索结果不要自动显示当编辑器获得焦点时,不要关闭此面板不知道如何开始启动 MSYSGit ...不加载任何外部修改的文件无法理解的类型: %d
完成完成!双击一个编译器来让它成为当前编译程序的默认选项双击一项进行修改:在当前编辑器中双击进行插入双击选择组中一个向下下载下载 Zeal下载并打开所在文件夹...正在下载文件:程序生成器程序生成器:删除数据库删除表删除视图复制此标签组(&P)从数据库中转储数据到 .sql 文件导入文件...转储数据到文件复制标签组动态链接库启用全部断点(&N)退出(&X)行尾模式EOL 模式:ERDERD 类型无法匹配当前数据库适配器。错误:未能设置断点: "%s"每个文件已经被分配一个虚拟目录。如果你能愉快的接受这个建议,请选择这个文件并点击“应用”。否则,请选择文件并使用“后退”按钮返回到指定的文件部分。Ecma5Ecma6边缘阈值(0 - 100)[%]:边缘阈值 [%]:编辑编辑断点编辑类继承编辑类接口编辑配置编辑项编辑词法分析程序关键字设置:编辑片段编辑任务编辑文本编辑工作区配置编辑内容编辑表达式在一个小的文本编辑器中进行编辑...编辑添加行:编辑所选的帐户编辑已选择的错误模式编辑已选项编辑已选择的警告模式编辑...编辑::分割选择到多个插入符号编辑器编辑器设置编辑器选项卡编辑框文件名为空环境变量(&V)...启用断点启用 C++11 标准启用 C++14 标准为该项目启用 CMake启用 clang启用 clang 代码补全为选定的库启用代码补全启用 GDB 整齐打印启用 HTML 代码补全启用 JavaScript 代码完成对 codelite IDE 启用 PHP 支持启用调整工具为 Vista / Windows 7 启用 Windows(R) 主题是否启用单词补全插件?启用 XML 代码补全启用缩放导航器启用自动上传启用 clang 代码补全启用代码完成功能的浏览器模式(DOM、文档、窗口等)启用下划线库的代码补全为链式断言库启用代码完成启用可持续构建启用自定义构建启用完整的调试记录启用扩展模式。在扩展模式中,远程服务器是持续的。
即:它不会在调试会话结束后停止启用调试完整日志记录启用本地化启用鼠标缩放启用多重选择启用待定断点正在使用范围过滤启用插件启用该选项会将插入符号从一条垂直线插入符号改变为块状插入符号已启用编码和语言环境:用于搜索的编码引擎:确保鼠标悬停时标题可见输入新配置名称:输入新名称:输入一个大于 0 的用于忽略断点(或监视点)次数的数字。然后,除了每次触发时计数的递减,它就像被禁用了。
当计数到达零时,断点将再次变为活动状态。输入任意附加 lib 库名称,并使用“;”分隔,例如 Foo 或 Foo;Bar在此输入连接远程目标后需要传递给调试器的命令:在此输入传递给调试器启动时的命令:在这里输入 BUG 的 URL。
例如:http://mytracker.com?bug_id=$(BUGID)在这里输入特性需求的 URL。
例如:http://mytracker.com?fr_id=$(FRID)在这里输入启用控制台的命令:在这里输入添加到提交日志的信息。你可以使用 $(BUG_URL) 和 $(BUGID) 宏。
例如:“实现了BUG#$(BUGID),参考 $(BUG_URL) 获得更多细节”在这里输入添加到提交日志的信息。你可以使用 $(FR_URL) 和 $(FRID) 宏。
例如:“实现了FR#$(FRID),参考 $(FR_URL) 获得更多细节“在此处输入 cppchecker 能识别的唯一 ID 字符串。例如:"operatorEqVarError" 和 "uninitMemberVar"。你能够在检索 cppchecker 资源时发现这些,或者通过在终端你的应用程序上运行 cppchecker 并传递附加参数“--xml“。输入标识名称输入新 URL:输入新表达式:输入新名称:输入情况数目输入其它选项输入 URL 来调试输入条件语句输入你想要调试程序的文件路径。
或者,如果你输入的是下列路径,只需要填写文件名就可以了。输入核心转储的完整文件路径进行检查。
或者,如果你输入的是下列正确的工作目录,只需要填写文件名就可以了。输入运行崩溃导致核心转储的可执行文件的完整路径。
或者,如果你输入的是下列正确的工作目录,只需要填写文件名就可以了。输入你要中断的行号,默认指当前文件。如果不是,请在下面输入正确的文件路径。输入新的目录名称:请输入新的文件名:输入正则表达式:输入符号来搜索:环境环境变量成功导出环境到 “%s”环境设置:环境变量设置为使用:错误错误 (%d): %s分配缓冲区错误分配空间到未知参数类型错误
错误调用isc_dsql_free_statement错误颜色创建数据库连接错误删除未知参数类型错误
计算表达式时出错获取项目错误创建虚拟文件夹遇到错误:
获取下一个记录错误
运行结果查询出现错误
错误页面上的错误:取值取值评估表达 在 "Address" 字段中对表达式求值每次调试器运行时,你可以在 mian() 函数处设置一个断点。然后你可能想要停止它;但你想要设置断点又不想过早起作用时,这是非常有用的(无论如何,尝试一下使用断点等待,或者“在命中 main 函数后应用断点”)排除排除 %s
排除(未匹配的)%s
排除路径排除二进制(应用程序/八位字节流)文件排除文件夹从构建中排除排除路径排除这些文件扩展名:可执行文件:运行/调试可执行文件可执行文件:执行执行 SQL执行脚本执行 cscope ...正在执行 SQL...正在执行:执行退出	Alt-X全部展开展开为 CodeLite 启动时所在的目录(例如,Unix 下是 ~/.codelite/)扩展到项目设置中前缀有 $(PreprocessorSwitch) 条目的所有预处理设置展开为现在的日期展开当前文件的全称(名称和扩展名)展开为当前文件的完整路径展开为当前文件名(不包括扩展名)展开为当前文件的路径展开为登陆的用户名展开为项目的路径展开为工具标签设置的归档工具(如 ar)的名称展开为在工具标签那里设置编译器的名称展开为项目设置中的编译器选项展开为当前项目的过渡目录路径展开为当前项目的名称,如”文件视图“那里显示的一样展开为当前项目选择的配置给连接器的名称可以扩大在工具选项卡设置展开为项目的二进制输出文件展开为项目的构建工作目录展开为项目的运行工作目录展开为资源编译器的名称在活动的编辑器中展开选择的文本展开为选择的文本的范围的一组数值,例如 150:200展开为工具标签设置的共享库链接器名称展开为源文件的编译参数展开为工作区的路径明确包含 PCH在命令行中使用编译器开关可以明确地将 PCH 文件包含在内(例如 -include /path/to/pch)资源管理器导出导出全部导出 CMakeLists.txt导出 ERD 到图片…导出词法分析器导出 Makefile 文件导出缩略表到文件系统...导出画布背景导出画布到图片导出数据库中 CREATE SQL 语句到 *.sql 文件导出图片导出图片导出图片导出特定的词法分析器导出语法高亮设置到 zip 归档文件导出当前设置到一个平台
特定环境设置文件导出...表达式表达式监视点:表达式:Ext已扩展协议扩展:扩展当查找丢失的文件时考虑文件扩展名:外部比较外部比较视图:外部工具外部工具附加功能FFLOAT失败!已失败的文件:未能修改标签组:/未能连接到 Node.js 调速器:
'%s'未能复制模板文件到“%s”未能创建项目文件“%s”未能创建目录:未能创建路径:%s
可能是权限问题未能创建工作区
工作区已存在未能创建工作区“未能创建工作区: 
未能执行命令: %s未能运行命令:%s
工作目录:%s
未能找到事件 ID 对应的自定义构建目标未能找到文件:未能初始化调试器:未能插入断点未能启动 CodeDesigner ,没有指定路径
请在 插件 -> CodeDesigner -> 设置... 中设置 CodeDesigner 的路径未能运行 Subversion 客户端。
未能启动 codelite_cppcheck 进程!未能启动调试器“未能启动工具
“未能列出目录:未能加载图片未能从该路径载入 package.json 文件:
未能加载目标标签组:/未能加载向导文件“plugin.cpp.wizard”未能加载向导文件“plugin.h.wizard”未能定位 Codelite 已配置的默认终端程序,请安装它或者检查你的配置!未能映射远程文件:未能打开文件未能打开文件 CallGraph.png 。 请检查该项目设置,重新构建该项目并再次尝试。未能打开文件:
未能打开文件:“%s”为写操作未能打开远程文件:未能打开临时文件未能打开以下扫描文件:未能打开工作区“未能打开工作区:工作区文件已损坏未能覆盖只读文件未能读取文件“%s”未能读取模板文件“%s”未能移除目录未能移除目录:未能重命名文件:未能重命名路径。未能重命名工作区文件:
“未能保存文件未能保存文件:
未能保存工作区到硬盘,请检查你是否有权限保存未能启动 NodeJS 应用程序未能启动构建进程,命令:未能启动清理进程,命令:未能启动调试器:权限不够未能为调试器启动终端未能同步文件“未能分离路径:未能分离路径:未能写入 Info.plist 文件!未能写入文件“%s”失败:特性消息模式:特性需求 ID:特性 URL 模式:获取后 100 个提交正在获取目录列表...查找调用此函数的函数(&N)查找(&N)...字段“文件文件浏览器文件扩展名:模式中的文件索引:正在进行文件映射文件掩码:文件掩码:文件类型文件类型设置文件类型文件类型:文件视图文件已存在!

 覆盖?文件和行:文件包含忽略字符串? 跳过它文件包含忽略字符串,跳过它:文件比较文件存在文件字体编码文件字体编码:数据恢复文件:已成功导入的文件!正在映射文件文件名文件名索引文件名称:文件路径文件删除失败文本文件转换失败!
请检查你的文件字型编码在
设置 | 全局编辑器首选项 | 其他 | 语言环境 中运行/调试文件:文件类型:文件完整路径:文件:文件:文件文件编码:导入文件的扩展名(用分号分隔):文件已经被外部编辑器修改。
选择你想要重新载入的文件。文件成功创建。从 CppCheck 测试中排除文件:忽略的文件:文件在编辑器外已被修改填补空行过滤器:查找查找下一个(&N)查找上一个(&P)查找资源(&R)...查找符号(&S)查找...查找/在文件中查找查找/替换查找全部查找释义在文件中查找查找已安装的编译器查找下一个查找上一个查找上一个查找引用...在工作区搜索资源查找符号查找内容:查找内容...查找光标处的词语查找光标后的词语查找和替换查找并选择所有查找书签在网络上查找字典...查找包含此文件名的文件(&I)查找包含此文件名的文件查找此函数调用的函数(&C)寻找此函数调用的函数查找调用此函数的函数在文件中查找查找选定的文本查找这个全局定义(&G)查找此 C 全局定义查找此 C 符号查找这个全局定义查找内容查找/查找下一个清除高亮匹配词添加文件已完成...FirebirdPreparesStatement::InterpretErrorCodes()
FirebirdPreparesStatementWrapper::InterpretErrorCodes()
FirebirdResultSet::InterpretErrorCodes()
第一个结果页面。修复 include 语句启动时修正构建工具路径固定(可选项):固定名称(可选):折叠全部结果在 Else 处折叠折叠紧凑折叠预处理器折叠文件夹映射文件夹名称不能为空文件夹名称:文件夹:文件夹折叠字体字体:获取帮助请输入“astyle -h”选项没有限制时,设置为0强制检查文件拥有“太多”的配置前景色:前景色:按任意键组合:外部约束格式化当前源文件格式格式选项格式源文件格式源文件文件保存时格式化编辑器插入后格式化完成格式化文件格式化 %s
格式化格式化文件...论坛向前已找到编译器查找并替换找到并选择找到断点 ID!框架标题框架标题:从修订版本:从修订版本:全称全屏...函数函数”函数文档模板函数实现(你可以编辑下面的代码):函数名函数名称以大写字母开始函数名:函数前缀:函数以小写的字母开头函数测试:GDB 窗口GIT 插件Git 插件设置GNUGPL v2 or later仅 GTK:将 stdout/stderr 输出重定向到日志文件中包含主要框架的 GUI 程序基于对话框的 GUI 程序(wxformbuilder)基于框架的 GUI 程序(wxFormBuilder)收集所需的信息...Gdb常规常规项目设置常规:生成生成 info.plist 文件生成 Setters / Getters生成 Setters/Getters 类为类生成 Setters / Getters“生成 Setters/Getters...生成类文件生成 consturctor生成依赖文件(*.o.d)生成 desctructor在 "/**" 后生成 Doxygen 注释生成 Doxygen 注释吗?源文件格式化器 (AStyle)在这个文件名中生成函数生成的文件路径:生成的文件:生成以小写字母开头的函数正在生成 compile_commands.json 文件...生成器将被用于 CMake 配置。如果没有生成器被选中,插件将在插件设置中使用全局默认的生成器。生成器:获取版本信息字符串GitGit 应用补丁Git Diff:Git 提交Git 需要一个提交消息Git 设置...设置模板的名字给这个帐户一个惟一名称全局编辑器参数(&E)...全局字体:全局标签分析器路径全局路径全局设置全局标签颜色全局背景色:全局邮箱:全局字体:全局前景色:全局主题:全局用户名称:跳转到转到前一个位置(&W)跳转到行转到前一个位置(&V)转到 Dash 网站转至声明转至实现转到“文件中查找”下一个匹配转到“文件中查找”上一个匹配转到 Zeal 网站跳转到行号(1 - %d):转到:Google转到活动项目转到当前函数开始转到下一个函数开始转到函数声明转到文件夹:转到函数实现转到定义在当前文件中查询选择在工作区中查找选择向导HEAD 版本HTML处理为:Hd 文件夹添加新文件帮助(&L)头文件帮助帮助插件帮助插件错误帮助...帮助:帮助插件在这里你可以添加任何你想忽略的文件的名称。标准通配符是可用的如 moc_*在此你可以添加取消定义(你不想检查的代码分支),例如“FOO”或“BAR=2”。每一个都将以“-UFOO”或 -U'BAR=2' 传递给 Cppcheck(因此你无需自己添加 -U )。在这里,你可以传送“configurations”到 cppcheck 
例如:"只测试 FOO 定义处的代码分支" 或
"不要测试 FOO 值为 2 的代码分支"十六进制隐藏隐藏对接窗口标题隐藏更改标记页边隐藏名称空间隐藏的参数隐藏编辑页边空白隐藏编辑页边空白(红色/绿色标志在已改动的行时)高亮显示折叠块高亮匹配词高亮匹配项高亮字高亮光标所在行突出显示插入符号行的背景颜色高亮颜色:高亮调试器行高亮匹配的括号高亮此修订版本历史记录按 ENTER 进行搜索,或 Shift + ENTER 向后搜索敲击任意按键。不要在这里使用修改键 (例如“Shift”键),请使用下面的复选框当在 C 风格注释里面敲击<回车键>时, 将自动添加“*”到新行当在 C++ 风格注释里面敲击<回车键>时,将自动添加“//”到新行主页:水平视图主机主机 / IP:主机 / 终端:现在:主机服务器密钥已更改:
托管在MySQL服务器中的服务器主机名称/IP地址主机=我找不到“cscope”,请检查它是否安装。标签组项恐怕不再存在:/标签组恐怕不存在:/IDIDE KeyIDE Key:信息:重建工作区标签文件完成,用时 %ld 秒(扫描了 %lu 个文件)信息:重建工作区标签文件完成,用时 0 秒(无文件被重建标签文件)INTINTEGERIP 地址:图标文件图标设置:图标更改后需要重新载入工作区指定要查看的数据。它可以是以下情况之一:
1) 任意的变量名称,例如:“foo”
2) 一个内存地址, 合适的例子:从 *(int*)0x12345678 开始,将查看一个整型大小的字节块。
表达式中不要包含空格:gdb 无法理解它们的。
3) 一个复杂的表达式,例如:“a*b + c/d”。 在程序的本机语言中表达式能够使用任意有效的计算符。

NB. 当变量失去范围后,设置在局部变量中的监视点将自动被移除。从已给出的列表中使用一个 ID 来标记该工具如果某行使用此样式的字符/单词结尾,此行剩余部分将配色为此样式背景色如果勾选此项,错误或警告将被显示在编辑器中失败代码的旁边。如果勾选此项,在执行命令之前 CScope 将寻找已变更的文件,如果找到,将会试着更新数据库。在实践中这似乎是不可靠的。如果选中此选项,将传递 -std=c++11 到 clang 代码补全引擎以确保所有 c++11 特性能够被正确识别如果选中此选项,将传递 -std=c++14 到 clang 代码补全引擎以确保所有 c++14 特性能够被正确识别如果勾选此项,将按字母顺序排序。否则将以相同的顺序显示在编辑器中。如果勾选此项,生成的头文件将用 foo.hpp 代替 foo.h如果清除,将只使用空格来缩进
如果设置,将会使用制表符和空格的混合体如果文件尾不存在 EOL 时,添加之如果设置,生成的代码将放置在此命名空间内如果“缺失头文件”检查被启用,你可以在这里添加任意额外的
Cppcheck 能够搜索到 #includes 的目录如果此按钮可见,表示调试器拒绝了你要设置的断点。这通常因为断点位于调试器启动时没有加载的库里面。
点击将重新提交断点到调试器。如果这是一个自定义的构建项目(即,项目使用一个自定义的 makefile),
请像这样设置 CXX 和 CC 的环境变量:
如果勾选此项,所有例如 cout 或 wxLogDebug 的输出将被重定向到 .codelite/codelite-stdout-stderr.log 文件如果勾选此项,检查如 std::string, wxString, wxArrayString 等字符串的内容将会更加容易如果勾选此项,“missingIncludeSystem”抑制将被传递给 Cppcheck。这将停止其警告缺少的 #include <foo> ,同时还将检测缺失的 #include "bar"如果勾选此项,这些设置将被保存并在将来使用。否则当你重启 CodeLite 时该警告将会重新出现,哪一个可能是你想要的。如果勾选此项,这些设置将被保存并在将来使用。否则当你重启 CodeLite 时该警告将会重新出现,这可能是你想要的。如果你接受主机密钥,该文件将被自动创建。
如你勾选它,断点(或监视点)将依旧存在,但不会被触发。如你在以后取消勾选它,此断点将重新工作。如你不想被此信息再次骚扰,勾选它。你可以改变你的决定通过设置 > 全局编辑器首选项 > 对话框如果你想在进入特定函数时中断,在此输入它的名称。在 C 里面的名称形如 'main' 或者 'myFoo',而 C++ 类的方法,你需要用 'MyClass::myFoo'

或者,你可以输入正则表达式,并且勾选下面的复选框,这将为所有匹配的函数添加断点。如果你希望导入不带扩展名的文件,勾选此选项如果你想在多个函数插入断点,勾选此复选框,并输入合适的正则表达式。如果你输入一个行编号,它会假定参考当前文件。如果不是,请在这里输入正确的文件名称。

对于一个函数,文件通常不是必需的。然而,如果你有有多个名称相同的函数位于几个不同的文件中(人们真的这样做吗?),并且你只想要找到其中的一个,请在这里输入正确的文件名称。如果你的 CodeLite 已经按你喜欢的方式配置,请单击以跳过向导忽略忽略断点忽略字符串:忽略数目:忽略以下文件模式:忽略此文件忽略此文件模式忽略空白忽略数目 = %u
忽略。已忽略图片路径不能为空。图片直接插入初始微程序装载?实现父虚函数实现全部未实现函数...实现全部纯虚函数实现全部虚函数实现函数实现继承的纯虚函数...实现继承的虚函数...实现继承的虚函数实现文件实现:导入导入 - 环境变量导入 Eclipse 主题导入文件从目录导入文件从文件系统中导入缩略语表...从 SQL 文件中导入数据库……从文件中导入数据库导入文件导入文件到项目不带扩展名的文件也导入从 zip 归档文件中导入设置正在导入 IDE 解决方案/工作区...导入文件...在文件:Include 目录头文件包含路径:Include 路径包含路径传递给编译器的包含路径(以分号分隔的列表)包含文件来自:缩进实例标签缩进类型后的函数声明根据选定的缩进文本片段来缩进行注释(C++ 风格注释)使用空格缩进使用制表符缩进缩进仅缩进缩进行注释索引文件:指示颜色:指示列继承访问:继承:初始化 CodeLite内联错误将类内联化插入注释块插入版权块插入版权块插入 DELETE SQL 语句模板到编辑器。插入 DELETE SQL 模板插入 Doxygen 注释插入 Doxygen 注释	Ctrl-Shift-D插入扩展字段插入 INSERT SQL 语句模板到编辑器。插入 INSERT SQL 模板插入新变量名:插入 SQL SELECT 语句模板到编辑器。插入 SQL SELECT 模板插入 UPDATE SQL 语句模板到编辑器。插入 UPDATE SQL 模板插入要 Diff 的 BASE 版本:将生成的文件插入...插入“%s”的新值:插入模板在此处插入程序参数
每行设置一个参数插入注释到文件:安装安装路径集成中间文件夹内部断点(id=%d)被触发,应用用户断点并继续无效的 C++ 类名称无效的C/C++符号名称无效日期无效的预先声明参数无效的命令行选项:无效的字段类型无效的内存值:%s无效选项文件选项:无效路径:无效的插件名称无效的项目名称“无效的项目路径选择:无效的项目路径!无效的版本号反选不可见它是在这个插件内部使用的。Valgrind 输出到此文件之后插件将会处理文件并显示结果。它是在这个插件内部使用的。Valgrind 输出到此文件之后插件将会处理文件并显示结果。看来在你的计算机中 NodeJS 并没有安装
(找不到文件“/usr/bin/nodejs”或“/usr/bin/node”)
已暂时禁用 JavaScript 代码补全功能
请安装 NodeJS 后,再试一次JavaJavaScript跳转到光标处跳转到已修改文件跳转到下一个错误跳转到上一个错误K&R保持函数签名未格式化保持打开保持面板打开Key 名称Key:键盘快捷键(&S)...键盘快捷键快捷键:快捷键类型CodeLite LLDB 调试器LLDB 设置LLDB 设置...LLDB 已崩溃!正在终止调试对话LLDB具有数据格式化子系统,允许用户为自己的变量进行自定义显示选项
你可以在这里设置传递给 LLDB 的类型定义LLVMLONG标签标签语言编程语言:正在启动内存检测...
了解更多关于 LLDB 的类型左侧文件:左侧文件:
让 CodeLite 配置你已安装的编译器或帮助你安装一个让我选择重新加载哪一个文件或哪些文件级别库库路径:库搜索路径库路径链接库开关(如 -L)许可证行模式中的行号:行号行号索引将被添加的行:行:行:链接编辑器链接器链接器选项此项目不需要链接器链接器选项链接器选项Linux列出合并列出需要 codelite-indexer 进行预处理的符号列表,你可以在这里添加
那些会混淆解析器的宏命令列出需要 codelite-indexer 进行预处理的符号列表。
通常,你可以在这里添加那些会混淆解析器的宏命令
点击以下链接阅读关于该特性和语法的更多信息。
列出已修改文件与库列表连接,每个库需要添加前缀 $(LibrarySwitch)与库路径列表连接,每个库需要添加前缀 $(LibraryPathSwitch)侦听主机:从文件中加载 MemCheck 日志。启动时加载欢迎页面(&S)加载一组标签加载标签组加载文件...载入 Eclipse 主题网址启动时载入上次会话加载标签组载入……正在加载错误对话框...
载入工作区视图...加载文件...加载...本地目录本地目录:本地偏好局部变量本地列:本地目录:本地代理进程(默认)本地仓库邮箱:本地仓库用户名:函数内的本地变量将使用它们自己的颜色来与其它代码区分
颜色可以从“颜色和字体”菜单中选择要使用的语言环境:在 Windows 中使用 LLDB 进行本地调试是不被 LLDB 所支持的局部变量位置位置:锁住文件已锁住的文件日志日志:正在登录...登陆登录用户名 界面外观:启动时在这个目录查找文件:查找范围:消息:正在进入目录“%s”
Mac (CR)Mac Bundler 配置MacBundler宏宏命令(仅 clang)宏命令(clang):宏处理当密码提示不是通过 UI 来输出时
这对 Windows 是有用的Make转为小写(&L)设定为只读转为大写(&C)使活动项目输出 bundle弄脏设为单体(仅类可用)请确定你项目设置中的所有设置项都是设置正确的请确认你已打开工作区,并且活动项目的类型是”可执行“请确保该文件用行尾结束符设为临时使此“预定义类型”设置为活动使活动项目输出 bundle为该语言使用此主题无效的项目名称管理书签管理 OS X 应用 bundles视图管理...管理插件管理书签...强制性:页边标记全部(&A)在左边空白处为包含构建错误的行作一个红色标记标记项目为 UnitTest++ 项目标记 CMake 输出文件是脏的并强制再次调用 CMake 配置。这是非常方便的,在你不改变 CMakeLists.txt 文件而做出一些更改时匹配括号(&B)匹配整字(&W)匹配整字仅整个单词最大的连续声明缩进查找/替换会话中最多结果项:数组元素的最大数量在调用堆栈中允许的最大值帧数在调用堆栈窗口显示框架的最大数量编辑器中打开的最大标签数目:MemCheckMemCheck 设置MemCheck 插件检测内存泄漏。后端使用 Valgrind (memcheck 工具)。内存内存地址:查看内存大小菜单菜单项:菜单项不唯一!拉取后合并,并重新定义版本库状态?消息消息:最小化连续声明缩进MinGW / Cygwin至少键入的字符数:其他缺少文件名缺失文件名在 %s 
缺失头文件缺失位置发现拼写错误!拼写错误:已修改的文件已修改修改的文件修改的路径:发现修改的文件!提交之前请先切换分支...已修改的文件:修改:更多监视点更多选项:更多...大部分的时间你会发现自动添加文件到合适的虚拟目录。如果你不想这么做,在这里你可以添加一个或多个正则表达式来适用于你的情况。它们将会被这个项目记录。鼠标左键单击 +下移移动函数实现预览移动函数实现到...行下移行上移上移列下移列上移选定列下移选定列上移#include 声明行下移#include 声明行上移跳转到下一个错误跳转到上一个错误Mozilla已发现多个候选项。选择一个文件来打开:多个任务(-j)我的对话框我的框架我的主机我的标签MySQLMySQL ERDMySQL 连接是不支持的。MySqlN : MN :1名称命名该连接头文件名称新类名称源文件名称名称:命名空间:命名空间自然的单步跳过(&X)下一个构建错误(&X)新建新建项目(&P)新建工作区(&W)新建断点新建类新建类图新建类向导...从模板新建类...新建类...新建 CodeDesigner 项目新建 CodeLite 插件向导...新键编译器新编译器名称新建配置新配置名称:新的 Diff ...新建目录新建文件新建文件名称:新建文件...新建文件新建文件夹新建文件夹名称:新建文件夹...新建分层状态表新建继承新建项新名称:新建 PHP 项目新建 PHP 工作区新建插件向导新建项目新建项目向导新建 Qmake 项目新建简单状态表新建符号名称:新建任务新主题新主题...新建单元测试新建虚拟文件夹新的虚拟文件夹名称:新建工作区新建缩略语...新的断点新建类图...已找到新编译器!新编译器名称:新建文件名称:新建分层状态表...新名称:新建基于 qmake 的项目...新建 qmake 设置新建 qmake 设置的名称新建简单状态表...新建目标新的视图新建虚拟文件夹名称:新建监视点新的工作区名称:新建 wxWidgets 对话框新建使用默认按钮的 wxWidgets 对话框新建包含默认按钮的 wxWidgets 对话框...新建 wxWidgets 对话框...新建 wxWidgets 框架新建 wxWidgets 框架...新建 wxWidgets 面板新建 wxWidgets 面板...新建 wxWidgets 项目新建 wxWidgets 项目向导...新建...新建继承对话框下一个下一个书签下一个 Diff下一条指示下一条不没有文件可以显示没有找到 SQL 语句没有设置活动的项目?
请设置活动项目并重试此行无断点没有给出提交信息,正在中止。没有文件来处理 %s
没有找到文件。没有需要检查的文件未发现匹配项没有发现符合条件的文件,你想创建一个?没有找到相匹配的内容!没有发现新的或过期的文件。该项目是最新的没有发现其他本地分支。无活动项目,无法继续。没有发现远程分支。没有发现远程端,无法推送!未发现拼写错误!无此项目无建议没有找到工作区。Node Express节点阈值(0 - 100)[%]:节点阈值 [%]:Node.jsNode.js 调试器Node.js 意外断开连接
你可以检查一下控制台是否有有用的消息Node.js 可执行文件:无普通书签普通断点
通常情况下,到达一个断点时,你会希望前置 CodeLite 窗口,以便你可以检查变量的值等。
然而你可能不会总是希望这样的事情发生;尤其是,当断点有指令的时候。因此取消勾选可以阻止这种情况发生。无法执行
稍后重启不能为空不可能现在不需要了!这儿什么也不需要做没有文件来拉取,仓库已经是最新的。显示代码补全框前输入的字符数目使用每一行的列数列数:负载级别颜色数量限值(最大值 10):显示数组/字符串中的元素数目:扫描的文件数:显示代码补全框前输入的字符数目:尝试要并行运行的任务数量负载级别颜色数量节点(最大值 10)确定OK,继续调试对象对象名称与文件名称是一样的对象扩展名:对象文件后缀(一般设为 .o)对象后缀(通常设置为 .o.d)对象后缀(通常设置为 .o.i)八进制OdbcDatabaseLayer::InterpretErrorCodes()
OdbcPreparedStatement::InterpretErrorCodes()
正在删除正在更新在不同的平台上(如 Cygwin)它们通常推荐使用自己专用的 gdb 可执行程序而不是全局设置中的
你可以在这里指定一个,或留空来使用默认设置删除更新维持一行里面的块维持一行里的多条语句不变仅使用 clang 代码补全功能哎呦打开打开工作区(&W)...打开“%s”打开活动项目设置...在空的编辑器中打开构建输出打开 CMakeLists.txt打开包含的文件夹打开文件打开文件在这里打开文件浏览器打开文件...打开文件夹打开文件夹...打开 IDE 解决方案/工作区文件打开头文件“打开 MSYS Git在当前文件位置打开 MSYS Git打开项目打开资源为该数据库打开 SQL 命令面板为该表打开 SQL 命令面板为该视图打开 SQL 命令面板打开工作区打开 SSH 账户管理打开 SSH 账户管理...打开 Shell 在这里打开 Shell打开终端用默认程序打开(&D)打开工作区从最近打开文件列表中打开文件打开一个最近使用的文件打开一个最近使用的工作区从最近打开工作区列表中打开工作区打开账户管理...打开现有的工作空间打开打开图表打开 git bash用编辑器打开(&E)在 CodeLite 中打开打开打开 package.json在编辑器中打开构建输出打开资源...打开选定的项目设置。如果未选择任何项目,将在树中打开所选项的父项目打开 QMakeSettings 配置对话框在编辑器中打开日志文件用默认应用打开(&D)用 CodeDesigner 打开...用默认应用打开用默认应用打开...用默认应用打开用 wxFormBuilder 打开...打开工作区打开..打开...已打开的文件:可选项,输入你想要调试的程序的路径选项选项...选项:或者告诉我哪里可用找到它, 从菜单:“插件 | CScope | 设置”其它设置:其它:大纲Outline 插件输出输出文件输出面板标签定位:输出视图输出文件(可选项):输出文件名(可选):输出文件:输出有用的消息覆盖它?覆盖覆盖全局设置覆盖?PHP(&H)PCH 编译标志PCH 编译标志规则PHPPHP 可执行文件:执行 PHPPHP 常规设置Codelite 的 PHP 插件PHP 运行/调试PHP 可执行文件:PHP 格式化器:PHP 关联设置PHP-CS-FixerPHP-CS-Fixer 帮助页面PHP-CS-Fixer phar 文件:PHP:已解析 PHP 格式化选项进程号包名称不能为空包名称:运算符前后加空格在括号内外都加上空格在圆括号内填补空格在括号外加上空格页面页面设置...参数类型与 double 类型参数不兼容
父目录父项目:分析工作区分析工作区 - 增量仅分析已修改的文件分析工作区分析!正在分析表达式正在解析政策:分析结果...分析工作区...分析工作区:已完成 %d%%分析:传送 --check-config 给 Cppchecker。在你得到“Cppcheck 无法找到所有头文件”警告时这是很有用的:它可以让你看到哪一个 #include 没有被找到。然而它将关闭其他检查。传递命令行参数到 Node.js
每行请设置一个参数通过文件传递对象类表到链接器通过:密码:粘贴(&E)粘贴将构建输出粘贴到一个空的编辑器粘贴缓冲区粘贴项目应用补丁文件路径路径“wxWidgets 安装路径(可选)。cmake 可执行文件路径:CMakeLists.txt 所在的目录路径。git 可执行文件路径:gitk 可执行文件路径:路由到运行的可执行文件路径:在此处添加的路径仅用于代码补全,并不在程序运行时起作用。
如果你想要为运行时添加搜索路径(仅适用于 CLI 模式),请使用“PHP CLI”选项卡要忽略的路径:模式模式:模式暂停调试器执行结束时暂停视图(&R)待定断点已重新应用载入工作区时重建标签文件立即执行数据库更新在保存文件时执行语法检查性能没有权限。视图...将每个父类放在单独的行把查找栏置底把这个类放进命名空间内请检查外部工具的路径设置。请定义以下变量的值:请不要再使用这些选项并且不要改变它们的值! 
插件将不会工作。请输入标签组的名称请输入新忽略数目请填写全部字段请选择一个有效的编译器来修复你的项目设置请输入范围 (1 - %ld) 内的行号请在重建标签文件前保存文件将文件标记为只读之前,请保存你的更改请选择一个“cdp”(构建项目) 文件请仅选择一个“fbp”(表单设计器项目) 文件请重新选择项目路径
请从列表中选择一个模板请选择虚拟目录请选择一个帐户连接请设置索引文件来执行项目中的设置插件名称:插件名字:插件插件::缩略语表::显示缩写补全框指针和引用已向右对齐端口端口号:端口:端口=可移植性位置Posix 标准名称可能冲突构建后PostgreSQLPostgreSQL ERDPostgreSQL 连接是不支持的。构建前/后命令预构建预编译头文件预编译头文件预定义风格首选项...getter 前缀使用“get”或“is”前缀:预处理语句没有通过数据库层析构函数关闭以及清理优先考虑全局设置预处理预处理文件预处理扩展名:预处理文件:预处理器名称:预处理器开关(如 -D)预处理器按任意键继续...预览:预览:上一个书签(&U)上一个上一个书签当前修订版本 上一条主关键约束PRINT打印图表预览:打印...进程:处理文件...程序参数程序收到信号程序参数程序参数:程序正常退出.程序退出码:项目项目“项目创建项目详细资料项目编辑器偏好...项目名称:仅项目项目路径:项目设置项目类型:项目 URL:项目级别:项目包含 0 个测试。什么也不做启用项目项目文件类型项目类型:项目名称:项目名称只能包含下列字符 [a-z0-9_-]项目新名称:项目路径:项目设置...项目的这个单元测试应该被添加到:项目树文件夹:项目类型:项目项目:断点属性监视点属性属性...提供一个其他的调试器可执行文件来使用。
目前仅支持 GDB提供基于所选关键字的帮助插件提供了一个简短的描述提供 node 环境中的部分变量,如 process 和 require,并挂钩 require 到正在载入的依赖库,然后分配正确的类型。它还包括内置模块的类型,如 node.js 提供的 ("fs"、"http",等等)代理类型公钥错误:公钥 hash:拉取拉取远程变更推送推送所有本地提交吗?推送本地变更推送本地提交把声明和实现都放在头文件PythonQMAKESPEC:QMLQMake 设置使用 QMake:QTDIR:CodeLite 集成的 Qt's QMake 工具描述快速添加下一个快速调试快速查找全部退出ROLLBACK当到达断点时前置 CodeLite当到达断点时前置 CodeLite到达“在文件中查找”搜索结果的列表末尾到达“在文件中查找”搜索结果的列表开头准备真的要删除此警告的抑制,而不是仅仅不选中它?重建项目(&U)重新定义版本库状态重新定义版本库状态为重新定义哪一个分支的版本库状态?重建重建工作区最近打开文件(&F)最近打开工作区(&W)最近的文件最近工作区最近使用的路径:协调项目重建 CScope 数据库重建反向的 CScope 数据库矩形提示递归选项没有通配符重做重复参考栏:引用表:重构引擎仍在缓存工作区信息。几秒后再重试重构局部变量已引用的表格:引用正在引用的表:刷新刷新视图刷新文件列表刷新 git 文件列表刷新视图将会丢失你所有的更改
你想要继续吗?正则表达式正则表达式:使用的正则表达式(可选):寄存器正则表达式(&E)正则表达式正则表达式:规律:关系重新载入重新载入文件重新载入已修改的文件重新载入工作区重新加载所有外部修改的文件重新加载默认值重新载入工作区重新加载。从 CMake 重新载入帮助记住我的回答记住我的回答并应用到所有文件记住我的回答,不要再打扰我了!记住我的回答,不要再骚扰我!记住我的回答,不要再询问我记得我的回答并不再显示此消息记住这些设置远程连接命令远程目录远程目录:远程目录:在 TCP/IP 上的远程代理进程远程代理设置移除移除全部书签(&A)移除所有当前活动的书签(&C)移除所有书签移除所有当前活动的书签移除书签移除断点移除编译器?移除目录移除项目移除虚拟文件夹移除列移除配置”移除数据库 '%s'?删除重复的记录。只有抑制规则未作任何更改时删除错误。移除外部约束从 %s 移除项目 %s 吗?移除路径移除路径移除项目移除已选择的列移除选定文件移除已选择的外部约束消除抑制错误。移除表格 '%s' ?从排除文件列表中移除选择的文件移除选定的路径从列表中移除已选择的限制移除视图 '%s' ?移除工作区配置“重命名重命名 ...重命名编译器重命名文件重命名局部变量...	Ctrl-Shift-L重命名项目重命名符号重命名符号范围重命名符号...重命名符号...	Ctrl-Shift-H重命名文件重命名文件:重命名文件夹重命名透视图重命名项目重命名虚拟文件夹:重命名工作区重命名...重新分析工作区重复替换全部替换替换为:替换当前标签替换当前所选内容替换为RequireJS重置重置文件重置讨厌的对话框回答:重置配色重置当前仓库重置文件重置仓库调整配置栏解决:解决歧义资源资源编译器资源编译器选项资源编译器包括了在项目设置中设置包含路径资源编译器选项以分号分隔列表资源编译器搜索选项,以分号分隔列表资源立即重启!重启调试器恢复全部语法分析器为默认值恢复默认布局恢复日志:结果字符串:'%s'
结果:结果在: %i 行结果集没有通过数据库层析构函数关闭以及清理构造函数声明无法关闭并清除接口在 svn update, revert 或者应用 patch 后重建工作区标签文件加载工作区时重建标签文件重建标签文件...恢复变更恢复这次合并还原到默认设置恢复到版次版次:右侧文件:右边距指示符右侧文件:
正在回滚事务根目录:根 URL:根 URL:规则操作:在这里运行“npm 初始化”运行活动项目运行 CppCheck项目作为 UnitTest++ 运行并报告为正在删除的数据库运行 SQL 命令运行 SQL 命令以删除该表运行 SQL 命令以删除该视图运行储存在 *.sql 文件中的 SQL 命令运行单元测试...运行 XDebug 设置向导...运行 XDebug 测试运行检查运行连续检查作为命令行运行项目项目作为单元测试项目运行...项目作为网站运行运行项目...运行 qmake...运行 spell-checker运行以下附加检查:运行到光标处运行到这里运行...正在运行的程序:选择括号内(&E)停止调试器(&T)SELECTSELECT * FROM '%s' LIMIT 0;SELECT COUNT(*) FROM RDB$RELATIONS WHERE RDB$SYSTEM_FLAG=0 AND RDB$VIEW_BLR IS NOT NULL AND RDB$RELATION_NAME=?;SELECT COUNT(*) FROM RDB$RELATIONS WHERE RDB$SYSTEM_FLAG=0 AND RDB$VIEW_BLR IS NULL AND RDB$RELATION_NAME=?;SELECT COUNT(*) FROM information_schema.tables WHERE table_type='BASE TABLE' AND table_name=?;SELECT COUNT(*) FROM information_schema.tables WHERE table_type='VIEW' AND table_name=?;SELECT COUNT(*) FROM sqlite_master WHERE type='table' AND name=?;SELECT COUNT(*) FROM sqlite_master WHERE type='view' AND name=?;SELECT RDB$FIELD_NAME FROM RDB$RELATION_FIELDS WHERE RDB$RELATION_NAME=?;SELECT RDB$RELATION_NAME FROM RDB$RELATIONS WHERE RDB$SYSTEM_FLAG=0 AND RDB$VIEW_BLR IS NOT NULLSELECT RDB$RELATION_NAME FROM RDB$RELATIONS WHERE RDB$SYSTEM_FLAG=0 AND RDB$VIEW_BLR IS NULLSELECT column_name FROM information_schema.columns WHERE table_name=? ORDER BY ordinal_position;SELECT name FROM sqlite_master WHERE type='table';SELECT name FROM sqlite_master WHERE type='view';SELECT table_name FROM information_schema.tables WHERE table_type='BASE TABLE' AND table_schema='public';SELECT table_name FROM information_schema.tables WHERE table_type='VIEW' AND table_schema='public';SFTPSFTP / SSH 设置SFTP 浏览器SFTP 设置...SFTP 上传文件SFTP 插件SHOW COLUMNS FROM %s;SHOW TABLE STATUS WHERE Comment != 'VIEW' AND Name=?;SHOW TABLE STATUS WHERE Comment != 'VIEW';SHOW TABLE STATUS WHERE Comment = 'VIEW' AND Name=?;SHOW TABLE STATUS WHERE Comment = 'VIEW';挂断信号中断信号终止进程终止信号 SPECIALSQL 历史记录预览:SQL 命令已经复制到剪贴板。导出 SQLSQLiteSQLite ERDSQLite 连接是不支持的。SSH 账户管理SSH 客户端SSH 客户端参数:SSH 客户端:SSH 终端基础STRING保存保存全部另存为另存为模板...另存为...保存构建日志...保存变更保存当前布局为...保存修改的文件保存选项保存视角为...另存为项目模板另存为另存为模板...保存标签组保存所有变更并拉取远程变更吗?保存所有变更并重新定义版本库状态吗?保存全部文件在运行外部工具前保存全部文件搜索前保存修改的文件另存为保存调用图到……保存调用图……保存更改到“保存变更加载新配置前保存变更?保存变更到“保存图表保存文件失败!标签另存为组保存当前布局为:保存为……保存...	Ctrl-O保存构建日志到文件:
比例扫描在全部包含的文件中查找“using namespace”声明扫描电脑中已安装编译器正在扫描工作区文件...范围脚本调试脚本执行:滚动输出搜索搜索路径搜索工具栏搜索符号搜索 CodeLite 的百科页面通过键盘快捷键或描述来搜索一个键盘快捷命令搜索匹配并将它们作为“替换”窗口的候选进行可能的替换操作在工作区中搜索已选择的文本搜索路径搜索路径:搜索结果不再有效搜索范围:搜索提交列表
在所有列上执行搜索从文档搜索“搜索这些文件类型搜索...搜索::开关快速替换栏似乎有你所有需要的 getters/setters ...选择全部(&A)选择全部选择 CodeDesigner 可执行文件:选择可执行文件:选择文件进行比较选择包含文件:选择文件选择文件夹选择生成的文件路径:选择本地仓库:选择 Node.js 可执行文件选择 PHP 初始化配置文件:选择父类:请选择项目路径:选择项目选择符号选择标签选择主题:选择视图选择虚拟目录:选择一个目录来查看...选择一个编译器下载选择一个忽略的目录:选择文件选择一个要打开的文件选择一个文件:选择文件夹从树视图中选择一个文件夹并将其添加为书签选择文件夹:为所选风格选择字体选择程序:选择一个标签组, 或浏览一个选择标签组:选择图标:选择书签类型:选择分支(当前是为配置选择构建顺序:选择类:选择核心转储:选择调试器:选择调试器可执行文件选择调试器路径。填空使用默认值:选择调试器:选择 dot...选择任何匹配而无需取消选择前一次匹配选择 eclipse XML 主题文件选择可执行文件:选择要调试的可执行文件选择文件选择要打开的文件选择要打开的文件:选择文件:从左侧面板选择文件并通过右箭头按钮将它们添加到该项目中选择文件类型来调解一致选择文件夹从以下列表中选择你想要在类中覆盖的函数从以下列表中选择哪些符号类型需要 Codelite 使用不同的颜色来标记。
颜色可以在“颜色和字体”对话框中配置选择 git 的根目录选择 gprof...从下面的列表中选择一个或多个格式化选项选择输出文件夹选择补丁文件选择补丁文件:Dot 路径选择:Gprof 路径选择:路径选择:选择项目:选择要插入版权块的项目:选择远程选择远程分支(当前是选择远程推送。请选择项目路径:选择“重命名符号”项目范围选择 PHP 要使用的 INI 文件(默认为留空) 选择要使用的 PHP 命令行可执行文件选择要使用的 PHP 可执行文件选择 PHP 可执行文件,用来调试/运行命令行脚本选择 PHP 解释器来运行该项目选择 PHP-CS-Fixer phar 文件位置为此构建配置在“插件 -> QMake -> 设置”中选择定义要使用的 QMake选择活动项目为所选风格选择背景色选择基本文件夹来导入从下面的列表中选择书签类型从类列表中选择要测试的类选择编译器文件夹选择要使用的编译器。编译器将控制该项目的两个方面:
- 如果该项目不属于自定义构建,那么这个编译器将被用来编译
- CodeLite 使用编译器定义来解析输出选择要使用的编译器:选择要构建/清理的配置:选择用于这个项目的调试器类型选择调试方法选择要导入的目录从下面的列表中选择编辑器主题选择放置函数实现的文件:选择你想要添加的文件选择折叠样式选择要在生成输出选项卡中使用的字体为所选风格选择前景色为 C/C++ 选择格式化程序引擎
注意这条 JavaScript 脚本,clang-format 默认总是使用的为 PHP 文件选择格式化引擎从下面的列表中选择功能来生成选择你想要实现的功能选择 CodeLite 源代码树的位置选择安装的词典的位置选择该项目的位置,该路径必须存在。选择包含头文件的路径选择 clang-format 可执行工具的路径选择包含模板标题文件的路径并添加到源文件头选择插件项目路径选择该项目创建向导选择该项目的执行模式:选择该项目索引文件选择该项目路径请从下面的列表中选择项目模板选择项目工具链从列表中选择项目类型选择在当前工作区生成的远程文件夹选择远程工作区选择搜索范围选择要执行的脚本从列表中选择一个主题。 
如果对于所选语言的主题不存在,CodeLite 将选择最接近的一个选择断点类型:选择匹配文件位置的虚拟文件夹选择单词补全比较方法:
"以此开头" - 提示以用户键入的部分字词开头的单词
"包含" - 提示所有包含用户键入部分字词的单词选择工作区构建配置选择该工作区类型:选择 valgrind 可执行文件选择什么时候显示构建面板选择标记有“?”的函数生成的列
在此表中所有字段都是可编辑的选择要导出的词法分析器选择哪些标签要在组选择工作目录:选择 wxFormBuilder exe:选择...选择文本背景色:已选定的文本前景色:发送发送命令到进程发送命令 LLDB发送:通过服务器的身份验证服务器身份验证失败,请重试...
服务器:服务器名=设置 &0设置 &1设置 &2设置 &3设置 &4设置为活动(双击)设置 CodeLite 框架标题设置 Git 仓库路径设置新的密钥加速器设置 PHP 执行方法设置待定设置 QTDIR 到你已经安装Qt的目录为该模板设置一个描述为包含插入行设置不同的颜色在工作区中为每个项目设置不同的图像为所有已支持的语言设置全局字体为所有已支持的语言设置全局主题。
如果主题对给定的语言不可用,CodeLite 将使用下一个可用的主题从
同一个类型中设置传递给该工具的参数列表设置文件列表,在 C/C++ 文件中请求帮助时使用(以逗号分隔的列表)设置文件列表,在 CMake 文件中请求帮助时使用(以逗号分隔的列表)设置文件列表,在 Java 文件中请求帮助时使用(以逗号分隔的列表)设置文件列表,在 JavaScript 文件中请求帮助时使用(以逗号分隔的列表)设置文件列表,在 PHP 文件中请求帮助时使用(以逗号分隔的列表)设置文件列表,在 CSS 文件中请求帮助时使用(以逗号分隔的列表)设置文件列表,在 HTML 文件中请求帮助时使用(以逗号分隔的列表)设置从项目中排除的文件夹列表。
如果文件夹路径的最后一部分等于此排除列表中的一项,
它将不会在项目视图中显示设置编译器的名字设置为活动项目设置保护段落以防止被多次包含。如果留空,类名会使用。在 CodeLite 主框架中设置自定义标题设置全局颜色和字体在此设置一个字符串,当 CodeLite 找到包含这个字符串文件时,不会在文件插入版权信息在这里设置一个附加的 include 路径。每个路径应该用分号分隔
注意,通常你不需要修改这个字段并且它应该是空的在这里设置一个附加的 library 搜索路径。每个路径应该用分号分隔
注意,通常你不需要修改这个字段并且它应该是空的在这里设置传递给 PHP-CS-Fixer 的选项列表
点击帮助按钮来查看文档页面在此设置把 cygwin 路径转换为 Windows 本地路径的命令(使用 $(File) 作为文件名的占位符)在这里设置工作区名称设置忽略数目为当前状态设置标签(&B)为你的系统设置“mkdir”。
留空就表示在你的系统中使用默认设置设置 CodeLite 和 Xdebug 之间的 IDE keyCodeLite 侦听时设置 IP 地址。
对于运行 XDebug 的机器,此 IP 必须是可见的。CodeLite 运行时设置 IP 地址设置 PCH 标志规则为:
* 追加 - 这意味着设置在“PCH 编译标志”字段的标志将被追加到默认标志
* 替换 - “PCH 编译标志”将取代任意其它标志设置 PHP 的错误报告的级别(仅影响命令行)为新的主题设置基本主题设置插入符号的颜色透明度。0 意味着完全透明而 255 意味着完全不透明设置光标宽度(像素):设置构建阶段后运行的命令设置构建阶段前运行的命令设置当前仓库邮箱设置当前仓库邮箱
如果此项留空,将启用全局设置项设置当前仓库用户名(这个名称将告诉 git 你是谁)。
如果这个字段留空,全局设置将被启用设置编辑器的 EOL 模式(End Of Line)设置编辑器的 EOL 模式(End Of Line)。当设置为”默认“时,CodeLite 将依据主机系统进行设置EOL模式设置要在此项目中包含的文件扩展名
CodeLite 在项目视图中只会显示这些类型的文件设置文件名:设置文件夹名称:设置当前仓库用户名(这个名称将告诉 git 你是谁)设置此帐户的主文件夹设置 Node.js 可执行文件的路径设置 Cscope 可执行文件的路径设置 npm 可执行文件的路径设置插件名称。
该名称应该是一个有效的 C++ 变量名设置 CodeLite 能够侦听来自 XDebug 的新连接的端口。默认端口号为 9000设置该项目名称设置该项目路径及名称设置项目名称。项目名称仅可以包含 A-Z,0-9 和 _ 字符设置项目的路径和名称设置远程文件夹路径设置远程文件夹浏览并点击“刷新”按钮设置修订号:设置生成类 (或 C/C++ 结构)文档的模版为可用时。
以下为可用的宏定义:$(CurrentFileName), $(CurrentFilePath), $(User), $(Date), $(Name) $(CurrentFileFullPath), $(CurrentFileExt), $(ProjectName), $(WorkspaceName)设置生成函数文档的模版为可用时
以下为可用的宏定义:$(CurrentFileName), $(CurrentFilePath), $(User), $(Date), $(Name) $(CurrentFileFullPath), $(CurrentFileExt), $(ProjectName), $(WorkspaceName)设置主题名称为该工具设置工作目录设置插入符号闪烁周期(毫秒):设置预览窗格缩放系数。
有效值的范围应该在 -10~20 之间选择项目类型Setter 返回 $thisSetter 返回一个对象的引用设置(&G)设置调用图设置工作区“%s”的设置已改变,是否保存修改?设置已经保存到:
设置...配置 XDebug INI 设置设置 XDebug 端口号
CodeLite 将会在此端口上侦听来自 XDebug 的新传入消息设置自动上传设置自动上传到一个远程站点设置编译器已共享对象链接Shift简短描述CodeLite 需要使用制表符或空格来缩进吗?显示光标(&C)显示欢迎信息(&W)显示文件(&F)显示符号(&S)启动调试器时显示“调试”标签总是可见显示历史提交记录显示当前行显示当前文件的当前布局显示 ERD 缩略图显示最近的搜索显示正在运行的工具...显示 SQL显示状态栏显示终端显示工具栏显示空白显示单词补全显示可用的宏显示调用图为已选择的项目显示调用图为已选择/活动的项目显示调用图在活动选项卡上显示关闭按钮启动 CodeLite 时显示启动画面显示当前差别显示调试器终端显示差别显示文件差别显示隐藏文件显示缩进标记显示缩进标记显示缩进标记(垂直线条)显示行号页边显示可用的宏命令列表只从我的工作区中显示位置。显示更新内容!显示前 100 个提交启动时显示画面显示/隐藏所有插件工具栏显示/隐藏主工具栏信号简单的 GIT 插件启用wxWidgets 的简单 main 函数带背景色的简单标记单视图尺寸大小:跳过跳过警告智能大括号智能引号智能方括号/括号片断向导Snippets一些断点不能应用在程序运行之前,或者更晚的时候。尤其是调试一个位于动态加载库中的问题时(CodeLite 本身就包含这样的例子)。

gdb 有一个选项可以“记住”不能初始设置的任意断点,并在可能的时候自动设置它们。它并不总是起作用!然而,勾选此选项来告诉 gdb 尝试一下。部分文件已修改。
选中你要保存的文件。文件已经被外部编辑器修改。
你想要做些什么?部分变更需要重新启动 CodeLite,重新启动吗?部分变更需要重新启动 CodeLite该工作区查阅到一些编译器是不存在的。
可以通过克隆现有的编译器来定义各个丢失的编译器。部分文件已修改,CodeLite 将进行什么操作?有时候,一些断点在 main() 函数执行完成之后并不会完全应用。如果勾选此项,CodeLite 在早期不会试着应用它们。抱歉抱歉,无法转换选定的图标到icns格式抱歉,无法复制图标对不起, 找不到构建配置
对不起,复制此标签组失败:/抱歉,请求的特性没有执行。对不起,已存在此名称标签组对不起,“清理”命令不可用
对不起,你不能在调试器运行时把断点改为监视点,反之亦然排序项目排序项目源文件源文件格式化器源代码格式化程序(支持 C/C++/Obj-C/JavaScript/PHP 文件)源代码格式化选项源文件格式化器选项...源 URL:源文件格式化错误!源目录源文件源目录:赋值运算符之前使用空格括号前加空格括号内加空格在这里指定类型的列表将会在分析 C 和 C++ 源文件时
对 格式1=格式2进行特别处理。
因此,当发现 类型1 时,CodeLite 就会像发现 类型2 一样提供代码补全在这里指定一个将与其他使用该工作区的人共享的附加环境变量:指定本地分支名称指定新分支的名称拼写检查拼写检查设置多行尾部插入Sqlite堆栈跟踪可用于”调用栈“标签
阶段 2/2:分析匹配...过期文件标准标准工具栏开始/继续调试开始逆向调试记录开始连续检查启动 gitk启动一个新的 diff开始或继续调试启动 cppcheck: %s
以此开头启动命令启动命令:存放Stash pop静态库静态文本标签状态状态:单步跳入(&I)单步跳出(&O)跟进跟进跟出停止(&P)停止构建(&P)停止全部停止停止构建停止当前构建停止进程停止原因停止正在运行的程序停止当前搜索停止当前 SVN 进程停止调试器停止当前分析停止当前搜索停止调试字符串带参数Stroustrup数据库结构已保存!样式风格字体:风格使用EOL填充样式预处理程序行样式主题SubversionSubversion 选项Subversion 首选项基于 svn 命令行工具的 codelite 2.0 Subversion 插件操作成功!成功连接到调试服务器成功设置断点 %ld 于:成功设置条件断点 %ld 于:成功设置读取监视点 %ld :成功设置读/写监视点 %ld :成功设置临时断点 %ld 于:成功设置监视点 %ld :建议以编辑器中键入的单词为基础提供补全以编辑器中键入的单词为基础提供补全基于已安装编译器的建议搜索路径建议搜索路径...建议...建议:摘要对 JQuery 框架的代码补全支持支持 CodeLite支持 WebPACK对 JavScript, CSS/SCSS,HTML, XML 及其他 web 开发工具提供支持对 JavaScript 的 Qt 的 QML 扩展支持 抑制抑制全部抑制所选禁止有关“system” includes 的警告抑制文件抑制SvnSVN 检出SVN 清除Svn 提交Svn 比较工具SVN 比较SVN 比较:SVN 信息SVN 日志SVN 属性...Svn 重命名SVN 设置...SVN 重命名...切换头/源文件	F12交换头/源的实现文件开关切换 URL...切换分支切换本地分支开关远程分支切换到新的分支一旦创建就切换到新的分支吗?切换到远程分支切换到工作区...开关:开关符号符号已重命名符号文件加载到系统文件系统缓存(%ld 秒)同步项目文件...同步工作区到 SVN从文件系统同步项目...同步到工作区文件同步签名...语法检查TABLETABLE_NAMETIMESTAMP标记每个项目的颜色选项卡标签背景颜色选项卡标签文本颜色选项卡控件风格:标签组已保存标签组标签组已删除标签组已复制剪切标签组项标签组项已复制标签组项已删除标签组项已粘贴标签主已重命名标签组表格 %s 主关键字未定义!
构建结束,没有异常。表格名称:设置...标签标签文件标签文件缓存已清除目标目标“%s”已存在!目标目录:目标名称:目标 URL:目标目录任务任务名称:任务告诉 Cppcheck 使用“n”个 CPU 。注,这与“unusedFunction”是不兼容的,并且可能给出误报的警告,例如:“Unmatched suppression”。临时。模板类模板向导模板文件路径:类模板...模板文件包含非注释文本, 是否继续?模板文件包含非注释文本,是否继续?模板文件名“%s”,不存在!新类的模板模板:模板临时临时 
临时输出文件终端终止 git 进程尝试连接测试名称:测试失败:测试通过:文本文本颜色:文本转换选择文本此快捷键已存在该类不存在!
是否重试?此文件路径不存在。请确认?“查找内容”字段是一个正则表达式“git commit --amend”命令是一种能够方便的来修复最近提交的方法。它能让你结合前一次提交进行更改而不必重新提交新的快照。它也可以用来简单地编辑以前的提交消息而不是改变它的快照C++ 的编译器路径(加上可选的标记),该工具在 Makefile 中被书写为 $(CC)C++ 的编译器路径(加上可选的标记),该工具在 Makefile 中被书写为 $(CXX)测试的 C++ 名称CallGraph 插件建议调节节点阈值 %d 来加速创建调用图。你可以在调用图面板调节它。文件“帮助插件使用“Dash”显示脱机文档
点击下面的链接下载并安装“Dash”帮助插件使用“Zeal”显示脱机文档
点击下面的链接下载并安装“Zeal”cppchecker 将会识别该 ID 字符串远程代理服务器上的 IP 地址正在接受连接JavaScript 代码补全使用 "tern" 引擎。
设置此选项将在详细模式下启动 tern 引擎Make 工具,在 Windows / MinGW 中它通常是 mingw32-make.exe,但在其他操作系统中它只是简单的“make”该 SQL 脚本已被保存到 '%s'。SSH 客户端字段应当包含
SVN 命令行客户端用来建立一个加密管道的命令。

例如,在 Windows 上,它应该类似:
/path/to/plink.exe-l <user name="">-pw <svn password="">

如果你不需要 SSH 通道,请将此字段留空</svn></user>SSH 端口号,如果你不知道端口号,请填写 22 (SSH 默认端口)XDebug 会话名称汇编器路径,该工具在 Makefile 中被书写为 $(AS)使用括号折断风格。无效的断点行号。请再试一次。正则表达式中的捕捉索引可以保存列数正则表达式中的捕捉索引可以保存文件路径正则表达式中的捕捉索引可以保存行号该图表已被保存到 '%s'。检出目录“%s”已存在
继续检出?类名称列限制
列限制为 0 意味着没有列限制。
在这种情况下,clang-format 将会尊重语句内折断线的决定,除非该决定与其他规则相矛盾当执行或调试时传递命令行参数给程序要执行的命令编译器包含开关编译器预处理专用开关(如-控制台标题该数据库已被导出到 “%s”。声明“编辑器选项卡匹配到编辑器颜色主题结尾运行/调试可执行文件文件“文件似乎并没有包含一个有效的缩略语条目该文件的全名(包括扩展名)该文件的完整路径(包括路径扩展名)文件名(仅名称)该文件的路径使用UNIX斜线,包含结束分隔符丢失文件时不应搜索任意目录的文件路径以下列出的文件都包含在该项目中,但实际上它们是不存在的。你可以选择个别项并将它们从项目中删除,或者使用“删除全部”按钮。第一个错误首先你需要选择一个目标数据库!第一次警告或错误文件夹已经包含一个工作区文件
在继续之前,请关闭当前工作区以下环境变量已在项目中使用,但没有被定义:
以下文件:
%s
已存在,是否覆盖?
以下文件将被更新:在你的系统发现以下包含路径,这些路径将会添加到分析器的搜索路径。
你可以通过取消勾选来移除它。

你也可以在主菜单中为分析器添加/移除路径:
设置 > 标签设置 > 包含文件以下为可用的宏:
$(CurrentFileName),$(CurrentFilePath),$(User),$(Date),$(Name)
$(CurrentFileFullPath),$(CurrentFileExt),$(ProjectName),$(WorksapceName)函数将被放置到这个文件该类将被生成为
一个单独类getter 返回 $this 对象没有发现该服务器主机密钥,但存在一个其他类型的密钥。
所示的标签如工具提示。如果你愿意,你可以将它设置为描述性的东西。链接库开关(如 -l)链接器选项设置在项目设置链接器工具,通常与“C++ 编译器”的工具路径是相似的下面列表中包含的文件存在于该项目中,但在文件系统中并不存在在数组中显示元素的最大数量CodeLite 将在调用堆栈选项卡中显示帧数的最大值。这可以防止在无限递归的情况下试图显示 100,000 帧时的程序挂起。该名称该名称通常用来在“外部工具”工具栏中标识该工具CodeLite 生成测试代码得文件名。
当留空时,CodeLite 将使用目标项目中首个可用源文件在编译过程中文件夹的名称将会用于生成的对象输出文件的名称(如可执行文件名)新建类需要存放在某个地方。请选择项目所使用的虚拟文件夹。一般选择为“GUI 程序”,wx 控制台程序请选择“简单 main”对象名称(不带后缀名)输出文件输出选项开关(如 -o)远程代理服务器上的端口号正在接受连接codelite 上的该端口正在接受来自 XDebug 调试会话
这个值必须与“xdebug.remote_port”指令中的值
相同远程主机 IP 地址或已知的名称资源编译器。(仅 Windows)搜索线程正忙已选择插件目录不存在已选择项目路径“服务器是未知的,你是否信任此主机密钥?
这个页面的该项设置在构建时将被忽略源文件夹通常指向你开发代码的位置这个指定的数据库文件“静态归档工具 "ar",该工具在 Makefile 中被书写为 $(AR)该工具可以创建共享对象监视点的通常类型为“只写”:即,它会在目标被改变时触发。

或者你可在目标读取、或写入、读取时选择触发类型。工作目录需要在执行或调试程序前设置该工作区路径必须存在主题名称:你的工作区当前无单元测试项目
你要现在创建一个吗?没有测试产生只能有一个该文件夹中已经有一个文件,名称是:
%s
该匹配使用的对比是不区分大小写同名文件已存在,是否覆盖?同名文件已存在。覆盖?同名字符串已存在。再试一次?标签组已存在同文件路径项,覆盖?无活动的编辑器
没有定义 qmake,请通过“插件 --> Qmake --> 设置”来定义它执行 git 动作出现问题。
最后一个命令输出:
在你的系统上这些区域设置都是可用的。但它们不一定都有 CodeLite 翻译文件。这些文件还没有被分配一个虚拟目录。你可以通过选择一个或多个文件,单击“向前”箭头按钮。然后将显示一个虚拟目录选择器。你之后的选择将会被转移到右侧面板中。
或者点击“向导”按钮将自动按猜测进行分配。设置颜色强度将会影响上述的字段(匹配选择的单词)。选择一个在 0 到 256 之间的数值。不那么透明的背景应该有一个较大的数值。此字段定义 CodeLite 和 XDebug 之间的会话名称该字段是可选的。把这个字段是留空,CodeLite 就会在尝试连接时只使用公共密钥身份验证此文件似乎不包含的声明“此文件位于工作区私有文件夹中。
如果你不喜欢这个选项,你至少需要把一个文件添加到下面的列表中。将自动为你创建该文件。
如果你没有看到它,请为你的工作区重新运行一次完整的构建
该文件夹已包含一个名为“abbreviations.conf”的文件 - 你想要覆盖它吗?这是个正则表达式这是一个单体类这是将要生成的文件的基本名称。如果新的类被称作 Foo ,在默认情况下文件将被命名为 foo.cpp 和 foo.h。如果你喜欢不同的名称,请在这里输入基本名称。这就是你将在设置对话框中看到。你可以把任何你喜欢的放在这里;这不是在内部使用在这里,你可以设置输出视图面板的背景颜色(在这里你可以看到如“构建”或“调试”的输出)和终端(在这里你可以看到调试时的跟踪输出)在这里,你可以设置输出视图面板的前景颜色(在这里你可以看到如“构建”或“调试”的输出)和终端(在这里你可以看到调试时的跟踪输出)在这里,你可以设置“高亮匹配词”的颜色(匹配选择词的颜色)。设置选择本身和颜色,请到“设置”> “语法高亮显示与字体”中设置。该菜单项仅在右键单击一个项时调用。此操作将删除所选的项目。
是否继续?这个插件 ("requirejs") 教导服务器理解 RequireJS-style 依赖关系管理。它定义了全局函数定义和 requirejs ,并将尽可能地解决依赖关系及给他们适当的类型这个程序是一个 GUI 应用程序该项目没有定义文件映射。这可能会导致断点无法使用
此项目已禁用此项目采用 qmake此向导将帮助你设置 CodeLite 以适合你的编码风格。单击下一步继续这将结束当前的调试会话,继续?线程勾选全部勾选所有方框勾选这个选项来启用一个详细的 git 日志时间标题标题:到修订版本:要在某内存地址中断,在此输入地址。
例如 0x0a1b2c3d 或 12345678若要解决此问题,请在 项目设置 -> 调试 设置文件映射到修订版本:切换全部折叠(&A)切换书签(&B)切换断点(&B)切换选择的每个折叠(&E)切换选择的所有折叠(&P)切换书签切换断点切换 C++ 插件切换所有检查切换当前折叠(&F)切换文件切换行注释	Ctrl-/倒带切换命令切换选项卡切换大小写敏感切换整字搜索Tokens工具工具 ID:工具路径:工具栏(&B)工具栏图标尺寸:工具栏图标(16x16):工具栏图标(24x24):工具栏:工具共测试了:总计:0  已过滤:0  已选择:0跟踪跟踪代码中的预处理块并用灰色显示无法达到的代码 ("失效文本")跟踪预处理块透明提示触发修整行尾空格(&R)只删除已修改行调整 codeliteTweaks 插件Tweaks 设置类型键入命令并按下<回车键>键入一个路径,然后按下 Enter 键键入表达式并点击“发送”按钮
该工作最好包裹在 print_r 函数中,如:
print_r( $mystr, true )输入任意替换字符串...监视点类型输入要打开的资源名称。
你可以使用空格来分隔单词列表来缩小选择列表的范围
例如输入:“打开对话框”将在结果中包含 "打开" 和 "对话框" 这两个词语输入该类名称或点击该按钮输入文件夹路径输入父类的名称输入替换字符串并按下<回车键>来执行更换输入资源的名称(文件、变量、类、函数、常量或定义):输入过滤选项输入并开始搜索...在此输入提交信息:类型:类型不显示类型的警告:在选择中输入仓库 URL:运行/调试 URL :URL:启用UTF-8解锁文件移除括号内外的空格无法在所选路径创建项目
无法获取编译器列表从网址
http://codelite.org/compilers.json无法获得当前构建模型。无法获取已打开工作区。无法开始事务未指定文件:%s 未变更
取消所有取消所有取消定义传递:下划线折叠行下划线撤销撤销撤消/重复一个过去标记的状态(&V)UnitTest++UnitTest++ 项目:Unix (LF)未知 SQL 错误。超出结果集的未知错误未知错误!未知错误。取消勾选全部取消勾选所有方框取消勾选一个或多个复选框即可设置任意局部首选项无标题无路径未使用的函数为进行版本管理的文件向上更新如果数据库过期,更新数据库更新监视点更新编译器错误模式更新编译器警告模式更新表达式:在主显示区域更新内存来应用你的更改更新缓存...正在更新工作区...上传文件到这个文件夹中:正在上传文件:使用一次 #pragma 指令使用 $ 作为选择的占位符并使用 @ 来设置插入符号的位置。
例如:for($ = 0; $ < @; $++)
注意:
如果你的片段包含 @ 或 $,你可以通过反斜杠符号来避免使用占位符: \@ 或者 \$使用“/**”作为 doxygen 块开始 (否则使用“/*!”)使用“@”作为 doxygen 关键字前缀为本地视图使用预定义类型用 CTRL 键对光标下面的表达式求值在终端模拟器使用 CodeLite 构建使用自定义选择设置前景颜色:使用 MS Windows资源使用自带工具栏使用 POSIX 语言环境使用静态 wxWidgets 库使用 wxWidgets 的 Unicode 构建版本使用通用的 wxWidgets 库使用块插入使用注释语法启用区分大小写匹配使用外部比较工具文件名称仅用于断点(没有完整路径)使用全局设置使用工作区私有文件夹中的日志文件。使用标记使用预编译的头文件启用正则表达式使用选定的 wxWidgets 版本。为 PCH 文件使用单独的编译标志启用单独的调试器参数使用系统默认浏览器在缩进中使用标签使用编辑器中打开的活动文件使用管道字符 ("|") 作为一个特殊的分隔符来应用到附加的过滤规则中。这与使用 "grep" 命令行工具有类似的效果。使用这种颜色来高亮显示生成的错误消息使用这种颜色来高亮显示生成的警告消息扫描文件时要匹配此文件编码为此语法分析器的全部风格选择背景色为此语法分析器的全部风格选择字体使用垂直滚动条:使用通配字符语法使用统配字符(* 和 ?)启用全局设置启用全局设置使用工作区指定 supp 文件为默认值。用户用户名:用户名:如果存在,使用现有的静态配置。如果存在,使用现有的 Unicode 配置。如果存在,使用现有的通用配置.使用默认选项文件 %s
正在使用操作系统自带的工具栏替代通用的工具栏
当启用此选项,CodeLite 将不能显示所有的插件
工具VARCHAR视图Valgrind (内存检测)Valgrind 可执行文件:项目名称有效字符为 [0-9A-Za-z_]值变量百叶窗提示冗长的日志记录版本号版本:垂直视图视图如果可用的话,查看 CodeLite 已被翻译成另一种语言的字符串。这将让 CodeLite 使用其他的语言。视图类型构建结束,没有异常。显示名称:Cscope 设置虚拟虚拟目录选择器虚拟文件夹虚拟析构函数虚拟文件夹添加新文件虚拟文件夹:虚拟名称不能为空可见度首次缩进后可见缩进后可见总是可见浏览 CodeLite 论坛在该主机上等待来自 XDebug 的连接警告警告:自动应用这些变更将无法撤消警告颜色监视点查看该文件夹监视点监视点监视点监视点创建失败监视点成功添加WebKitWebPackWebToolsWebTools 设置欢迎来到设置向导欢迎你!什么复制标签组为?当到达一个断点时,通过前置 Codelite 来通知用户当添加文件到项目时,同时添加到 svn当添加新的文件到项目时,请把该文件放到 “include”或“src”文件夹当构建结束时当构建结束滚动到...当构建开始时当勾选时,CodeLite 将创建一个包含所有源文件的 PHP 项目
在该工作区目录下当勾选时,CodeLite 将使用默认“C”语言环境,而非当前语言环境选中时,codelite 将把项目放置在一个单独的目录下。项目文件的完整路径将显示在下面。当检查时,请确保最后一行的添加
总是可见的勾选时,getter 函数前缀带有“get”, 否则与该变量同名(不带 $ 符号)当 CodeLite 启动时,它将连接到 http://codelite.org 来检查 CodeLite 是否有新的版本更新调试时,使用背景色高亮当前行比如当你编译项目或者使用”在文件中查询“时,输出面板显示结果。当你在编辑器内点击的时候,如果此面板被标记, 它将会尽快自动关闭。当启用(如设置为 True)CodeLite时将会在“调试程序参数”中传递参数设置当为代码补全启用搜索路径文件夹时,搜索路径文件夹将会在工作区文件和本地搜索路径数据库之间同步。当使用时,CodeLite 将在输入 N 字符后显示代码补全框当启用时,CodeLite 将在输入两个字符后 为 C/C++ 关键字显示代码补全框当启用时,codelite 仅在按下 CTRL 键时对光标下的表达式求值。
否则自动对它求值。当选项启用时,在一个单独的目录中创建工作区当启用时,代码补全搜索引擎将会使用区分大小写的搜索。
因此“QString”不等于“qstring”当启用时,这个插件将从你的代码中收集(短)字符串,并在再次输入时对之前出现的字符串启用自动补全当在 C 风格注释里面按<回车>时, 自动添加“*”到新行当在 C++ 风格注释里面按<回车>时, 自动添加”//“到新行当按住 Ctrl/CMD 并滚动鼠标滚轮可缩放文本当被选中传递 -DCMAKE_BUILD_TYPE 给 CMake 时。启动时,CodeLite 将恢复最后打开的工作区和所有打开的编辑器当在项目中重命名了一个文件,同时也在仓库中重命名它当使用 PHP 命令行工具运行项目时,将传递以下
include 路径当保存一个 PHP 脚本时,在编辑器中运行语法检查并报告错误当保存文件时,自动格式化保存文件时,删除空行当使用鼠标滚动时,滚动可以超出文件底部当开始调试时,如果调试面板不可见,选择此项可以使之可见当启用“隐藏停靠窗口标题”选项时,确保鼠标悬停时标题可见。如此一来用户仍旧可以移动停靠窗口当用户按下<回车键>后的"/ *"生成适当的文件块当只有一个匹配项时,直接插入此匹配项而不显示代码补全框一旦勾选,临时“替换”字段将被添加。你也可以使用键盘快捷键来显示/隐藏这些字段。当输入 " 或 ' 时,将自动添加另一半引号,除非另一个已经存在(在这种情况下,只会移动插入符号的位置到右侧)当在一个选择中输入 ' 或 " 时,不是使用字符替换选择,而是使用引号包裹它当在一个选择中输入“(”或“[”时,不是使用字符替换选择,而是使用括号包裹它未选中时,对于当前构建配置该项目将不会被构建当用户编辑器内点击时,隐藏输出面板当用户输入“[”或“(”,自动插入反括号“]”或“)”。
此外,如果用户紧挨着“]”或“)”输入“]”或“)”时仅移动插入符号的位置到右侧当用户输入“{”时,自动插入大括号“}”当使用这个按键并结合鼠标单击来使用快速代码导航时
可以快速进行实现 / 声明。
注意到至少有一个框被选中,否则每次使用左键单击时都会触发它当使用菜单跳转到错误时,忽略警告哪里在文件系统中新建类的文件应该放在哪里?通常是该目录对应到虚拟文件夹;但是如果你愿意的话,你可以在这里输入另一个目录。哪里:只要有可能,将自动分配文件到适当的虚拟文件夹中空白 & 缩进空白可见性:空白可见性空白的可见性规则空白可见性空白Wiki窗口与选项卡Windows (回车换行符)如果无此标志,你将会在运行MSWindows程序时,出现一个不必要的可视终端窗口数据库结构创建向导
向导插件 - 有用的C++工具集向导插件 - 实用的 C++ 向导合集:
新建类向导,新建 wxWidgets 向导,新建插件向导工作区面板(&K)匹配整字单词补全设置自动换行(&R)自动换行工作目录工作目录:工作副本工作目录(可选):工作目录设置为:工作目录:工作区工作区配置:工作区编辑器参数...正在镜像工作区工作区名称:工作区面板标签定位:工作区标签分析器路径工作区路径:工作区设置工作区设置...工作区视图工作区文件已被外部程序修改,你要重新加载该工作区吗?工作区或项目已被修改,你想要重新载入工作区吗?你希望用CodeLite打开此文件吗?你希望 CodeLite 尝试移除它?你想构建这个活动项目
在执行之前吗?你想在调试它前构建项目吗?你是否确认不编辑数据库结构就继续?你想从 SVN 移除以下文件吗?

使用括号包裹使用引号包裹覆盖超出文件末尾写入!!写入日志:编写结构结束。
XXDebugXDebug 控制台XDebug INI 设置XDebug 端口XDebug 设置XDebug 没有及时连接是你已经拥有最新版本的 CodeLite你是要美化你要修改 %u 文件,是否继续?你将要移除项目“你正在远程机器上进行调试。为了让 CodeLite
能够将文件载入到编辑器中,CodeLite 需要在你的本地机器上映射
远程机器上的文件夹你可以添加一个条件断点或监视点。调试器将只有在条件满足时停止。

该条件可以是任何在你的编程语言中简单的或复杂的表达式,它将返回一个 bool 值。当然,使用任何变量都必须在范围之内。

如果你之前已经设置了一个条件但现在又不再想要了,就可以清除掉它们。你可以给任何断点或监视点添加命令列表。当断点到达时程序将中断,这些命令将被执行。

比如,打印输出变量 foo 的值并继续运行程序,输入:
print foo
cont

如果你之前已经输入了命令但现在又不再想要了,就可以清除掉它们。为使代码补全更好工作你可以在这里添加文件夹
Codelite 将会扫描这些文件夹以使 PHP 文件的代码补全能够更好的工作

不需要在这里添加项目文件夹,因为它们都是自动解析的你将可以从菜单中运行此设置向导: 
帮助 -> 运行设置向导启用此选框你就可以覆盖默认选定的颜色你一次只能拖动一个文件夹你可以为所有项目指定默认的生成器(如果没有被项目设置覆盖的话)。如果没有生成器,那么 CMake 将使用平台默认的生成器。你可以使用“|”字符设置插入符号的位置
你也可以使用任意已知的 Codelite 宏命令(点击“帮助”按钮)你可以使用下面的宏命令来构建自己的框架标题:你没有为函数输入名称,请重试。你没有为此监视点输入要监视的变量,请重试。你工作区的符号表与当前版本的 CodeLite 不匹配。CodeLite 会重建完整的工作区标签文件。缩放缩放 100%缩放比例 1:1Zoom Navigator缩放因子:放大缩小应用到全部Zoom Navigator 设置地址为反引号:将反引号中的表达式赋值给一个字符串开始处理;禁用断点启用断点by Eran Ifrahc++,net,boost,qt 4,qt 5,cvcpp,cocos2dx,c,manpages层叠clang-formatclang-format 帮助页面clang-format 路径类cmakecodelitecodelite 代码补全将会忽略在以下路径中发现的文件CodeLite 文件夹不存在codelite 日志记录各种事件,这个选项控制着日志记录的详细程度CodeLite 根目录:CodeLite 将会在这些位置搜索头文件CodeLite 终端列提交事务:cppcheck 分析结束。发现已创建cscope 结果:函数调用者为“cscope 结果:找到全局定义“cscope 结果:函数调用者为”cscope 结果:函数调用了“cscope: 查找符号data.sql已禁用程序生成 */程序生成 ///en_CA枚举枚举器错误报告:错误exec sp_tables ?, NULL, NULL, '''TABLE'''exec sp_tables ?, NULL, NULL, '''VIEW'''未能重命名虚拟文件夹:假为构建项目“为写入函数gitgit URL克隆git 可用的附加参数:git 克隆...git 错误拥有只读属性html,svg,css,bootstrap,less,foundation,awesome,statamic,javascript,jquery,jqueryui,jquerym,angularjs,backbone,marionette,meteor,moo,prototype,ember,lodash,underscore,sencha,extjs,knockout,zepto,cordova,phonegap,yuhttp://forums.codelite.orghttp://www.codelite.orghttp://www.codelite.org编辑所选项jQueryjava,javafx,grails,groovy,playjava,spring,cvj,processing本地主机m_toolKill宏传递给编译器的宏定义(以分号分隔的列表)成员mkdir命名空间newcol无动作nodejs 路径:npm 路径:共位于 ERD 图表底部。

php,wordpress,drupal,zend,laravel,yii,joomla,ee,codeigniter,cakephp,phpunit,symfony,typo3,twig,smarty,phpp,html,statamic,mysql,sqlite,mongodb,psql,redis,zend framework 1,zend framework 2私有受保护的原型公共qmake 可执行文件:qmake 执行行:qmake 设置:只读读写限制回滚事务;秒选择一个文件夹设为空sp_columns %s;sp_tables NULL, NULL, NULL, '''TABLE'''sp_tables NULL, NULL, NULL, '''VIEW'''字符串结构结构转换(...)转换{...}当前文件完整路径当前文件名称当前用户名在方括号内当前工作区在方括号内数据库将被删除时
在此过程中,你可以做一个备份
工具总时间真类型定义取消选中所有的插件联合v1.1.1变量警告与远程服务器
只写wxCrafterwxDbExplorerwxFormBuilder 设置...CodeLite 集成的 wxFormBuilder 工具wxFormBuilder 路径:wxMiniAppwxProcess::GetInputStream() 无法被打开,正在中止wxWidgets 设置