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
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
|
"###############################################################################################
"
" Filename: c.vim
"
" Description: C/C++-IDE. Write programs by inserting complete statements,
" comments, idioms, code snippets, templates and comments.
" Compile, link and run one-file-programs without a makefile.
" See also help file csupport.txt .
"
" GVIM Version: 7.0+
"
" Configuration: There are some personal details which should be configured
" (see the files README.csupport and csupport.txt).
"
" Author: Dr.-Ing. Fritz Mehner, FH Südwestfalen, 58644 Iserlohn, Germany
" Email: mehner@fh-swf.de
"
" Version: see variable g:C_Version below
" Created: 04.11.2000
" License: Copyright (c) 2000-2007, Fritz Mehner
" This program is free software; you can redistribute it and/or
" modify it under the terms of the GNU General Public License as
" published by the Free Software Foundation, version 2 of the
" License.
" This program is distributed in the hope that it will be
" useful, but WITHOUT ANY WARRANTY; without even the implied
" warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
" PURPOSE.
" See the GNU General Public License version 2 for more details.
" Revision: $Id: c.vim,v 1.35 2007/11/21 09:14:16 mehner Exp $
"
"------------------------------------------------------------------------------
"
if v:version < 700
echohl WarningMsg | echo 'The plugin c-support.vim needs Vim version >= 7 .'| echohl None
finish
endif
"
" Prevent duplicate loading:
"
if exists("g:C_Version") || &cp
finish
endif
let g:C_Version= "5.0.5" " version number of this script; do not change
"
"###############################################################################################
"
" Global variables (with default values) which can be overridden.
"
" Platform specific items: {{{1
" - root directory
" - characters that must be escaped for filenames
"
let s:MSWIN = has("win16") || has("win32") || has("win64") ||
\ has("win95") || has("win32unix")
"
if s:MSWIN
"
let s:escfilename = ''
let s:plugin_dir = $VIM.'\vimfiles\'
let s:C_CodeSnippets = s:plugin_dir.'c-support/codesnippets/'
let s:C_IndentErrorLog = $HOME.'.indent.errorlog'
let s:installation = 'system'
"
let s:C_Display = ''
"
else
"
let s:escfilename = ' \%#[]'
let s:installation = 'local'
"
" user / system wide installation (Linux/Unix)
"
if match( expand("<sfile>"), $VIM ) >= 0
" system wide installation
let s:plugin_dir = $VIM.'/vimfiles/'
let s:installation = 'system'
else
" user installation assumed
let s:plugin_dir = $HOME.'/.vim/'
endif
"
let s:C_CodeSnippets = $HOME.'/.vim/c-support/codesnippets/'
let s:C_IndentErrorLog = $HOME.'/.indent.errorlog'
"
let s:C_Display = system("echo -n $DISPLAY")
"
endif
" Use of dictionaries {{{1
" Key word completion is enabled by the filetype plugin 'c.vim'
" g:C_Dictionary_File must be global
"
if !exists("g:C_Dictionary_File")
let g:C_Dictionary_File = s:plugin_dir.'c-support/wordlists/c-c++-keywords.list,'.
\ s:plugin_dir.'c-support/wordlists/k+r.list,'.
\ s:plugin_dir.'c-support/wordlists/stl_index.list'
endif
"
" Modul global variables (with default values) which can be overridden. {{{1
"
if s:MSWIN
let s:C_CCompiler = 'gcc.exe' " the C compiler
let s:C_CplusCompiler = 'g++.exe' " the C++ compiler
let s:C_ExeExtension = '.exe' " file extension for executables (leading point required)
let s:C_ObjExtension = '.obj' " file extension for objects (leading point required)
else
let s:C_CCompiler = 'gcc' " the C compiler
let s:C_CplusCompiler = 'g++' " the C++ compiler
let s:C_ExeExtension = '' " file extension for executables (leading point required)
let s:C_ObjExtension = '.o' " file extension for objects (leading point required)
endif
"
let s:C_CExtension = 'c' " C file extension; everything else is C++
let s:C_CFlags = '-Wall -g -O0 -c' " compiler flags: compile, don't optimize
let s:C_CodeCheckExeName = 'check'
let s:C_CodeCheckOptions = '-K13'
let s:C_LFlags = '-Wall -g -O0' " compiler flags: link , don't optimize
let s:C_Libs = '-lm' " libraries to use
let s:C_LineEndCommColDefault = 49
let s:C_LoadMenus = 'yes'
let s:C_MenuHeader = 'yes'
let s:C_OutputGvim = 'vim'
let s:C_Printheader = "%<%f%h%m%< %=%{strftime('%x %X')} Page %N"
let s:C_Root = '&C\/C\+\+.' " the name of the root menu of this plugin
let s:C_TypeOfH = 'cpp'
let s:C_Wrapper = s:plugin_dir.'c-support/scripts/wrapper.sh'
let s:C_XtermDefaults = '-fa courier -fs 12 -geometry 80x24'
"
let s:C_GlobalTemplateFile = s:plugin_dir.'c-support/templates/Templates'
let s:C_GlobalTemplateDir = fnamemodify( s:C_GlobalTemplateFile, ":p:h" ).'/'
let s:C_LocalTemplateFile = $HOME.'/.vim/c-support/templates/Templates'
let s:C_LocalTemplateDir = fnamemodify( s:C_LocalTemplateFile, ":p:h" ).'/'
let s:C_TemplateOverwrittenMsg= 'yes'
"
let s:C_FormatDate = '%x'
let s:C_FormatTime = '%X'
let s:C_FormatYear = '%Y'
"
"------------------------------------------------------------------------------
"
" Look for global variables (if any), to override the defaults.
"
function! C_CheckGlobal ( name )
if exists('g:'.a:name)
exe 'let s:'.a:name.' = g:'.a:name
endif
endfunction " ---------- end of function C_CheckGlobal ----------
"
call C_CheckGlobal('C_CCompiler ')
call C_CheckGlobal('C_CExtension ')
call C_CheckGlobal('C_CFlags ')
call C_CheckGlobal('C_CodeCheckExeName ')
call C_CheckGlobal('C_CodeCheckOptions ')
call C_CheckGlobal('C_CodeSnippets ')
call C_CheckGlobal('C_CplusCompiler ')
call C_CheckGlobal('C_ExeExtension ')
call C_CheckGlobal('C_FormatDate ')
call C_CheckGlobal('C_FormatTime ')
call C_CheckGlobal('C_FormatYear ')
call C_CheckGlobal('C_GlobalTemplateFile ')
call C_CheckGlobal('C_IndentErrorLog ')
call C_CheckGlobal('C_LFlags ')
call C_CheckGlobal('C_Libs ')
call C_CheckGlobal('C_LineEndCommColDefault ')
call C_CheckGlobal('C_LoadMenus ')
call C_CheckGlobal('C_LocalTemplateFile ')
call C_CheckGlobal('C_MenuHeader ')
call C_CheckGlobal('C_ObjExtension ')
call C_CheckGlobal('C_OutputGvim ')
call C_CheckGlobal('C_Printheader ')
call C_CheckGlobal('C_Root ')
call C_CheckGlobal('C_TemplateOverwrittenMsg ')
call C_CheckGlobal('C_TypeOfH ')
call C_CheckGlobal('C_XtermDefaults ')
"
"----- some variables for internal use only -----------------------------------
"
"
" set default geometry if not specified
"
if match( s:C_XtermDefaults, "-geometry\\s\\+\\d\\+x\\d\\+" ) < 0
let s:C_XtermDefaults = s:C_XtermDefaults." -geometry 80x24"
endif
"
" escape the printheader
"
let s:C_Printheader = escape( s:C_Printheader, ' %' )
"
let s:C_HlMessage = ""
"
" characters that must be escaped for filenames
"
let s:C_If0_Counter = 0
let s:C_If0_Txt = "If0Label_"
"
let s:C_SplintIsExecutable = 0
if executable( "splint" )
let s:C_SplintIsExecutable = 1
endif
"
let s:C_CodeCheckIsExecutable = 0
if executable( s:C_CodeCheckExeName )
let s:C_CodeCheckIsExecutable = 1
endif
"
"------------------------------------------------------------------------------
" Control variables (not user configurable)
"------------------------------------------------------------------------------
let s:Attribute = { 'below':'', 'above':'', 'start':'', 'append':'', 'insert':'' }
let s:C_Attribute = {}
let s:C_ExpansionLimit = 10
let s:C_FileVisited = []
"
let s:C_MacroNameRegex = '\([a-zA-Z][a-zA-Z0-9_]*\)'
let s:C_MacroLineRegex = '^\s*|'.s:C_MacroNameRegex.'|\s*=\s*\(.*\)'
let s:C_ExpansionRegex = '|?'.s:C_MacroNameRegex.'\(:\a\)\?|'
let s:C_NonExpansionRegex = '|'.s:C_MacroNameRegex.'\(:\a\)\?|'
"
let s:C_TemplateNameDelimiter = '-+_,\. '
let s:C_TemplateLineRegex = '^==\s*\([a-zA-Z][0-9a-zA-Z'.s:C_TemplateNameDelimiter
let s:C_TemplateLineRegex .= ']\+\)\s*==\s*\([a-z]\+\s*==\)\?'
"
let s:C_ExpansionCounter = {}
let s:C_Template = {}
let s:C_Macro = {'|AUTHOR|' : 'first name surname',
\ '|AUTHORREF|' : '',
\ '|EMAIL|' : '',
\ '|COMPANY|' : '',
\ '|PROJECT|' : '',
\ '|COPYRIGHTHOLDER|': ''
\ }
let s:C_MacroFlag = { ':l' : 'lowercase' ,
\ ':u' : 'uppercase' ,
\ ':c' : 'capitalize' ,
\ ':L' : 'legalize name' ,
\ }
"------------------------------------------------------------------------------
" C : C_InitMenus {{{1
" Initialization of C support menus
"------------------------------------------------------------------------------
"
function! C_InitMenus ()
"
"===============================================================================================
"----- Menu : C main menu entry ------------------------------------------- {{{2
"===============================================================================================
"
if s:C_Root != ""
if s:C_MenuHeader == 'yes'
exe "amenu ".s:C_Root.'C\/C\+\+ <Esc>'
exe "amenu ".s:C_Root.'-Sep00- :'
endif
endif
"
"===============================================================================================
"----- Menu : C-Comments -------------------------------------------------- {{{2
"===============================================================================================
"
if s:C_MenuHeader == 'yes'
exe "amenu ".s:C_Root.'&Comments.&Comments<Tab>C\/C\+\+ <Esc>'
exe "amenu ".s:C_Root.'&Comments.-Sep00- :'
endif
exe "amenu <silent> ".s:C_Root.'&Comments.end-of-&line\ comment <Esc><Esc><Esc>:call C_LineEndComment( )<CR>'
exe "vmenu <silent> ".s:C_Root.'&Comments.end-of-&line\ comment <Esc><Esc><Esc>:call C_MultiLineEndComments( )<CR>'
exe "amenu <silent> ".s:C_Root.'&Comments.ad&just\ end-of-line\ com\. <Esc><Esc>:call C_AdjustLineEndComm("a")<CR>'
exe "vmenu <silent> ".s:C_Root.'&Comments.ad&just\ end-of-line\ com\. <Esc><Esc>:call C_AdjustLineEndComm("v")<CR>'
exe "amenu <silent> ".s:C_Root.'&Comments.&set\ end-of-line\ com\.\ col\. <Esc><Esc>:call C_GetLineEndCommCol()<CR>'
exe "amenu ".s:C_Root.'&Comments.-SEP10- :'
exe "amenu <silent> ".s:C_Root.'&Comments.code\ ->\ comment\ \/&*\ *\/ <Esc><Esc>:call C_CodeComment("a","yes")<CR><Esc>:nohlsearch<CR>j'
exe "vmenu <silent> ".s:C_Root.'&Comments.code\ ->\ comment\ \/&*\ *\/ <Esc><Esc>:call C_CodeComment("v","yes")<CR><Esc>:nohlsearch<CR>j'
exe "amenu <silent> ".s:C_Root.'&Comments.code\ ->\ comment\ &\/\/ <Esc><Esc>:call C_CodeComment("a","no")<CR><Esc>:nohlsearch<CR>j'
exe "vmenu <silent> ".s:C_Root.'&Comments.code\ ->\ comment\ &\/\/ <Esc><Esc>:call C_CodeComment("v","no")<CR><Esc>:nohlsearch<CR>j'
exe "amenu <silent> ".s:C_Root.'&Comments.c&omment\ ->\ code <Esc><Esc>:call C_CommentCode("a")<CR><Esc>:nohlsearch<CR>'
exe "vmenu <silent> ".s:C_Root.'&Comments.c&omment\ ->\ code <Esc><Esc>:call C_CommentCode("v")<CR><Esc>:nohlsearch<CR>'
exe "amenu ".s:C_Root.'&Comments.-SEP0- :'
exe "amenu <silent> ".s:C_Root.'&Comments.&frame\ comment <Esc><Esc>:call C_InsertTemplate("comment.frame")<CR>'
exe "amenu <silent> ".s:C_Root.'&Comments.f&unction\ description <Esc><Esc>:call C_InsertTemplate("comment.function")<CR>'
exe "amenu ".s:C_Root.'&Comments.-SEP1- :'
exe "amenu <silent> ".s:C_Root.'&Comments.&method\ description <Esc><Esc>:call C_InsertTemplate("comment.method")<CR>'
exe "amenu <silent> ".s:C_Root.'&Comments.cl&ass\ description <Esc><Esc>:call C_InsertTemplate("comment.class")<CR>'
exe "amenu ".s:C_Root.'&Comments.-SEP2- :'
exe "amenu <silent> ".s:C_Root.'&Comments.file\ description <Esc><Esc>:call C_InsertTemplate("comment.file-description")<CR>'
exe "amenu ".s:C_Root.'&Comments.-SEP3- :'
"
"----- Submenu : C-Comments : file sections -------------------------------------------------------------
"
exe "amenu ".s:C_Root.'&Comments.&C\/C\+\+-file\ sections.file\ sections<Tab>C\/C\+\+ <Esc>'
exe "amenu ".s:C_Root.'&Comments.&C\/C\+\+-file\ sections.-Sep0- :'
"
exe "amenu ".s:C_Root.'&Comments.&C\/C\+\+-file\ sections.&Header\ File\ Includes <Esc><Esc>:call C_InsertTemplate("comment.file-section-cpp-header-includes")<CR>'
exe "amenu ".s:C_Root.'&Comments.&C\/C\+\+-file\ sections.Local\ &Macros <Esc><Esc>:call C_InsertTemplate("comment.file-section-cpp-macros")<CR>'
exe "amenu ".s:C_Root.'&Comments.&C\/C\+\+-file\ sections.Local\ &Type\ Def\. <Esc><Esc>:call C_InsertTemplate("comment.file-section-cpp-typedefs")<CR>'
exe "amenu ".s:C_Root.'&Comments.&C\/C\+\+-file\ sections.Local\ &Data\ Types <Esc><Esc>:call C_InsertTemplate("comment.file-section-cpp-data-types")<CR>'
exe "amenu ".s:C_Root.'&Comments.&C\/C\+\+-file\ sections.Local\ &Variables <Esc><Esc>:call C_InsertTemplate("comment.file-section-cpp-class-defs")<CR>'
exe "amenu ".s:C_Root.'&Comments.&C\/C\+\+-file\ sections.Local\ &Prototypes <Esc><Esc>:call C_InsertTemplate("comment.file-section-cpp-local-variables")<CR>'
exe "amenu ".s:C_Root.'&Comments.&C\/C\+\+-file\ sections.&Exp\.\ Function\ Def\. <Esc><Esc>:call C_InsertTemplate("comment.file-section-cpp-prototypes")<CR>'
exe "amenu ".s:C_Root.'&Comments.&C\/C\+\+-file\ sections.&Local\ Function\ Def\. <Esc><Esc>:call C_InsertTemplate("comment.file-section-cpp-function-defs-exported")<CR>'
exe "amenu ".s:C_Root.'&Comments.&C\/C\+\+-file\ sections.-SEP6- :'
exe "amenu ".s:C_Root.'&Comments.&C\/C\+\+-file\ sections.Local\ &Class\ Def\. <Esc><Esc>:call C_InsertTemplate("comment.file-section-cpp-function-defs-local")<CR>'
exe "amenu ".s:C_Root.'&Comments.&C\/C\+\+-file\ sections.E&xp\.\ Class\ Impl\. <Esc><Esc>:call C_InsertTemplate("comment.file-section-cpp-class-implementations-exported")<CR>'
exe "amenu ".s:C_Root.'&Comments.&C\/C\+\+-file\ sections.L&ocal\ Class\ Impl\. <Esc><Esc>:call C_InsertTemplate("comment.file-section-cpp-class-implementations-local")<CR>'
exe "amenu ".s:C_Root.'&Comments.&C\/C\+\+-file\ sections.-SEP7- :'
exe "amenu ".s:C_Root.'&Comments.&C\/C\+\+-file\ sections.&All\ sections,\ C '
\'<Esc><Esc>:call C_Comment_C_SectionAll("c")<CR>'
exe "amenu ".s:C_Root.'&Comments.&C\/C\+\+-file\ sections.All\ §ions,\ C++ '
\'<Esc><Esc>:call C_Comment_C_SectionAll("cpp")<CR>'
"
"
"----- Submenu : H-Comments : file sections -------------------------------------------------------------
"
exe "amenu ".s:C_Root.'&Comments.&H-file\ sections.H-file\ sections<Tab>C\/C\+\+ <Esc>'
exe "amenu ".s:C_Root.'&Comments.&H-file\ sections.-Sep0- :'
"'
exe "amenu ".s:C_Root.'&Comments.&H-file\ sections.&Header\ File\ Includes <Esc><Esc>:call C_InsertTemplate("comment.file-section-hpp-header-includes")<CR>'
exe "amenu ".s:C_Root.'&Comments.&H-file\ sections.Exported\ &Macros <Esc><Esc>:call C_InsertTemplate("comment.file-section-hpp-macros")<CR>'
exe "amenu ".s:C_Root.'&Comments.&H-file\ sections.Exported\ &Type\ Def\. <Esc><Esc>:call C_InsertTemplate("comment.file-section-hpp-exported-typedefs")<CR>'
exe "amenu ".s:C_Root.'&Comments.&H-file\ sections.Exported\ &Data\ Types <Esc><Esc>:call C_InsertTemplate("comment.file-section-hpp-exported-data-types")<CR>'
exe "amenu ".s:C_Root.'&Comments.&H-file\ sections.Exported\ &Variables <Esc><Esc>:call C_InsertTemplate("comment.file-section-hpp-exported-class-defs")<CR>'
exe "amenu ".s:C_Root.'&Comments.&H-file\ sections.Exported\ &Funct\.\ Decl\. <Esc><Esc>:call C_InsertTemplate("comment.file-section-hpp-exported-variables")<CR>'
exe "amenu ".s:C_Root.'&Comments.&H-file\ sections.-SEP4- :'
exe "amenu ".s:C_Root.'&Comments.&H-file\ sections.E&xported\ Class\ Def\. <Esc><Esc>:call C_InsertTemplate("comment.file-section-hpp-exported-function-declarations")<CR>'
exe "amenu ".s:C_Root.'&Comments.&H-file\ sections.-SEP5- :'
exe "amenu ".s:C_Root.'&Comments.&H-file\ sections.&All\ sections,\ C '
\'<Esc><Esc>:call C_Comment_H_SectionAll("c")<CR>'
exe "amenu ".s:C_Root.'&Comments.&H-file\ sections.All\ §ions,\ C++ '
\'<Esc><Esc>:call C_Comment_H_SectionAll("cpp")<CR>'
"
exe "amenu ".s:C_Root.'&Comments.-SEP8- :'
"
"----- Submenu : C-Comments : keyword comments ----------------------------------------------------------
"
exe "amenu ".s:C_Root.'&Comments.&KEYWORD+comm\..keyw\.+comm\.<Tab>C\/C\+\+ <Esc>'
exe "amenu ".s:C_Root.'&Comments.&KEYWORD+comm\..-Sep0- :'
"
exe "amenu ".s:C_Root.'&Comments.&KEYWORD+comm\..\:&BUG\: <Esc><Esc>$<Esc>:call C_InsertTemplate("comment.keyword-bug")<CR>'
exe "amenu ".s:C_Root.'&Comments.&KEYWORD+comm\..\:&COMPILER\: <Esc><Esc>$<Esc>:call C_InsertTemplate("comment.keyword-compiler")<CR>'
exe "amenu ".s:C_Root.'&Comments.&KEYWORD+comm\..\:&TODO\: <Esc><Esc>$<Esc>:call C_InsertTemplate("comment.keyword-todo")<CR>'
exe "amenu ".s:C_Root.'&Comments.&KEYWORD+comm\..\:T&RICKY\: <Esc><Esc>$<Esc>:call C_InsertTemplate("comment.keyword-tricky")<CR>'
exe "amenu ".s:C_Root.'&Comments.&KEYWORD+comm\..\:&WARNING\: <Esc><Esc>$<Esc>:call C_InsertTemplate("comment.keyword-warning")<CR>'
exe "amenu ".s:C_Root.'&Comments.&KEYWORD+comm\..\:W&ORKAROUND\: <Esc><Esc>$<Esc>:call C_InsertTemplate("comment.keyword-workaround")<CR>'
exe "amenu ".s:C_Root.'&Comments.&KEYWORD+comm\..\:&new\ keyword\: <Esc><Esc>$<Esc>:call C_InsertTemplate("comment.keyword-keyword")<CR>'
"
"----- Submenu : C-Comments : special comments ----------------------------------------------------------
"
exe "amenu ".s:C_Root.'&Comments.&special\ comm\..special\ comm\.<Tab>C\/C\+\+ <Esc>'
exe "amenu ".s:C_Root.'&Comments.&special\ comm\..-Sep0- :'
exe "amenu ".s:C_Root.'&Comments.&special\ comm\..&EMPTY <Esc><Esc>$<Esc>:call C_CommentSpecial("EMPTY") <CR>kgJA'
exe "amenu ".s:C_Root.'&Comments.&special\ comm\..&FALL\ THROUGH <Esc><Esc>$<Esc>:call C_CommentSpecial("FALL THROUGH") <CR>kgJA'
exe "amenu ".s:C_Root.'&Comments.&special\ comm\..&IMPL\.\ TYPE\ CONV <Esc><Esc>$<Esc>:call C_CommentSpecial("IMPLICIT TYPE CONVERSION") <CR>kgJA'
exe "amenu ".s:C_Root.'&Comments.&special\ comm\..&NO\ RETURN <Esc><Esc>$<Esc>:call C_CommentSpecial("NO RETURN") <CR>kgJA'
exe "amenu ".s:C_Root.'&Comments.&special\ comm\..NOT\ &REACHED <Esc><Esc>$<Esc>:call C_CommentSpecial("NOT REACHED") <CR>kgJA'
exe "amenu ".s:C_Root.'&Comments.&special\ comm\..&TO\ BE\ IMPL\. <Esc><Esc>$<Esc>:call C_CommentSpecial("REMAINS TO BE IMPLEMENTED")<CR>kgJA'
exe "amenu ".s:C_Root.'&Comments.&special\ comm\..-SEP81- :'
exe "amenu ".s:C_Root.'&Comments.&special\ comm\..constant\ type\ is\ &long\ (L) <Esc><Esc>$<Esc>:call C_CommentSpecial("constant type is long")<CR>kgJA'
exe "amenu ".s:C_Root.'&Comments.&special\ comm\..constant\ type\ is\ &unsigned\ (U) <Esc><Esc>$<Esc>:call C_CommentSpecial("constant type is unsigned")<CR>kgJA'
exe "amenu ".s:C_Root.'&Comments.&special\ comm\..constant\ type\ is\ unsigned\ l&ong\ (UL) <Esc><Esc>$<Esc>:call C_CommentSpecial("constant type is unsigned long")<CR>kgJA'
"
"----- Submenu : C-Comments : Tags ----------------------------------------------------------
"
exe "amenu ".s:C_Root.'&Comments.ta&gs\ (plugin).tags\ (plugin)<Tab>C\/C\+\+ <Esc>'
exe "amenu ".s:C_Root.'&Comments.ta&gs\ (plugin).-Sep0- :'
"
exe "amenu ".s:C_Root.'&Comments.ta&gs\ (plugin).&AUTHOR <Esc><Esc>:call C_InsertMacroValue("AUTHOR")<CR>'
exe "amenu ".s:C_Root.'&Comments.ta&gs\ (plugin).AUTHOR&REF <Esc><Esc>:call C_InsertMacroValue("AUTHORREF")<CR>'
exe "amenu ".s:C_Root.'&Comments.ta&gs\ (plugin).&COMPANY <Esc><Esc>:call C_InsertMacroValue("COMPANY")<CR>'
exe "amenu ".s:C_Root.'&Comments.ta&gs\ (plugin).C&OPYRIGHTHOLDER <Esc><Esc>:call C_InsertMacroValue("COPYRIGHTHOLDER")<CR>'
exe "amenu ".s:C_Root.'&Comments.ta&gs\ (plugin).&EMAIL <Esc><Esc>:call C_InsertMacroValue("EMAIL")<CR>'
exe "amenu ".s:C_Root.'&Comments.ta&gs\ (plugin).&PROJECT <Esc><Esc>:call C_InsertMacroValue("PROJECT")<CR>'
exe "imenu ".s:C_Root.'&Comments.ta&gs\ (plugin).&AUTHOR <Esc><Esc>:call C_InsertMacroValue("AUTHOR")<CR>a'
exe "imenu ".s:C_Root.'&Comments.ta&gs\ (plugin).AUTHOR&REF <Esc><Esc>:call C_InsertMacroValue("AUTHORREF")<CR>a'
exe "imenu ".s:C_Root.'&Comments.ta&gs\ (plugin).&COMPANY <Esc><Esc>:call C_InsertMacroValue("COMPANY")<CR>a'
exe "imenu ".s:C_Root.'&Comments.ta&gs\ (plugin).C&OPYRIGHTHOLDER <Esc><Esc>:call C_InsertMacroValue("COPYRIGHTHOLDER")<CR>a'
exe "imenu ".s:C_Root.'&Comments.ta&gs\ (plugin).&EMAIL <Esc><Esc>:call C_InsertMacroValue("EMAIL")<CR>a'
exe "imenu ".s:C_Root.'&Comments.ta&gs\ (plugin).&PROJECT <Esc><Esc>:call C_InsertMacroValue("PROJECT")<CR>a'
"
"
exe "amenu ".s:C_Root.'&Comments.-SEP9- :'
"
exe " menu ".s:C_Root.'&Comments.&date a<C-R>=C_InsertDateAndTime("d")<CR>'
exe "imenu ".s:C_Root.'&Comments.&date <C-R>=C_InsertDateAndTime("d")<CR>'
exe " menu ".s:C_Root.'&Comments.date\ &time a<C-R>=C_InsertDateAndTime("dt")<CR>'
exe "imenu ".s:C_Root.'&Comments.date\ &time <C-R>=C_InsertDateAndTime("dt")<CR>'
exe "amenu ".s:C_Root.'&Comments.-SEP12- :'
exe "amenu <silent> ".s:C_Root.'&Comments.\/\/\ xxx\ \ \ \ \ &->\ \ \/*\ xxx\ *\/ <Esc><Esc>:call C_CommentCppToC()<CR>'
exe "vmenu <silent> ".s:C_Root.'&Comments.\/\/\ xxx\ \ \ \ \ &->\ \ \/*\ xxx\ *\/ <Esc><Esc>:'."'<,'>".'call C_CommentCppToC()<CR>'
exe "amenu <silent> ".s:C_Root.'&Comments.\/*\ xxx\ *\/\ \ -&>\ \ \/\/\ xxx <Esc><Esc>:call C_CommentCToCpp()<CR>'
exe "vmenu <silent> ".s:C_Root.'&Comments.\/*\ xxx\ *\/\ \ -&>\ \ \/\/\ xxx <Esc><Esc>:'."'<,'>".'call C_CommentCToCpp()<CR>'
"
"===============================================================================================
"----- Menu : C-Statements------------------------------------------------- {{{2
"===============================================================================================
"
if s:C_MenuHeader == 'yes'
exe "amenu ".s:C_Root.'&Statements.&Statements<Tab>C\/C\+\+ <Esc>'
exe "amenu ".s:C_Root.'&Statements.-Sep00- :'
endif
"
exe "amenu <silent>".s:C_Root.'&Statements.&do\ \{\ \}\ while <Esc><Esc>:call C_InsertTemplate("statements.do-while")<CR>'
exe "vmenu <silent>".s:C_Root.'&Statements.&do\ \{\ \}\ while <Esc><Esc>:call C_InsertTemplate("statements.do-while", "v")<CR>'
"
exe "amenu <silent>".s:C_Root.'&Statements.f&or <Esc><Esc>:call C_InsertTemplate("statements.for")<CR>'
"
exe "anoremenu <silent>".s:C_Root.'&Statements.fo&r\ \{\ \} <Esc><Esc>:call C_InsertTemplate("statements.for-block")<CR>'
exe "vnoremenu <silent>".s:C_Root.'&Statements.fo&r\ \{\ \} <Esc><Esc>:call C_InsertTemplate("statements.for-block", "v")<CR>'
"
exe "amenu <silent>".s:C_Root.'&Statements.&if <Esc><Esc>:call C_InsertTemplate("statements.if")<CR>'
"
exe "amenu <silent>".s:C_Root.'&Statements.i&f\ \{\ \} <Esc><Esc>:call C_InsertTemplate("statements.if-block")<CR>'
exe "vmenu <silent>".s:C_Root.'&Statements.i&f\ \{\ \} <Esc><Esc>:call C_InsertTemplate("statements.if-block", "v")<CR>'
exe "amenu <silent>".s:C_Root.'&Statements.if\ &else <Esc><Esc>:call C_InsertTemplate("statements.if-else")<CR>'
exe "vmenu <silent>".s:C_Root.'&Statements.if\ &else <Esc><Esc>:call C_InsertTemplate("statements.if-else", "v")<CR>'
"
exe "amenu <silent>".s:C_Root.'&Statements.if\ \{\ \}\ e&lse\ \{\ \} <Esc><Esc>:call C_InsertTemplate("statements.if-block-else")<CR>'
exe "vmenu <silent>".s:C_Root.'&Statements.if\ \{\ \}\ e&lse\ \{\ \} <Esc><Esc>:call C_InsertTemplate("statements.if-block-else", "v")<CR>'
"
exe "amenu <silent>".s:C_Root.'&Statements.&while <Esc><Esc>:call C_InsertTemplate("statements.while")<CR>'
"
exe "amenu <silent>".s:C_Root.'&Statements.w&hile\ \{\ \} <Esc><Esc>:call C_InsertTemplate("statements.while-block")<CR>'
exe "vmenu <silent>".s:C_Root.'&Statements.w&hile\ \{\ \} <Esc><Esc>:call C_InsertTemplate("statements.while-block", "v")<CR>'
"
exe "amenu <silent>".s:C_Root.'&Statements.&switch\ \{\ \} <Esc><Esc>:call C_InsertTemplate("statements.switch")<CR>'
exe "vmenu <silent>".s:C_Root.'&Statements.&switch\ \{\ \} <Esc><Esc>:call C_InsertTemplate("statements.switch", "v")<CR>'
"
exe "amenu ".s:C_Root.'&Statements.&case\ \.\.\.\ break <<Esc><Esc>:call C_InsertTemplate("statements.case")<CR>'
"
"
exe "amenu <silent>".s:C_Root.'&Statements.&\{\ \} <Esc><Esc>:call C_InsertTemplate("statements.block")<CR>'
exe "vmenu <silent>".s:C_Root.'&Statements.&\{\ \} <Esc><Esc>:call C_InsertTemplate("statements.block", "v")<CR>'
"
"
"===============================================================================================
"----- Menu : C-Idioms ---------------------------------------------------- {{{2
"===============================================================================================
"
if s:C_MenuHeader == 'yes'
exe "amenu ".s:C_Root.'&Idioms.&Idioms<Tab>C\/C\+\+ <Esc>'
exe "amenu ".s:C_Root.'&Idioms.-Sep00- :'
endif
exe "amenu <silent> ".s:C_Root.'&Idioms.&function <Esc><Esc>:call C_InsertTemplate("idioms.function")<CR>'
exe "vmenu <silent> ".s:C_Root.'&Idioms.&function <Esc><Esc>:call C_InsertTemplate("idioms.function", "v")<CR>'
exe "amenu <silent> ".s:C_Root.'&Idioms.s&tatic\ function <Esc><Esc>:call C_InsertTemplate("idioms.function-static")<CR>'
exe "vmenu <silent> ".s:C_Root.'&Idioms.s&tatic\ function <Esc><Esc>:call C_InsertTemplate("idioms.function-static", "v")<CR>'
exe "amenu <silent> ".s:C_Root.'&Idioms.&main <Esc><Esc>:call C_InsertTemplate("idioms.main")<CR>'
exe "vmenu <silent> ".s:C_Root.'&Idioms.&main <Esc><Esc>:call C_InsertTemplate("idioms.main", "v")<CR>'
exe "amenu ".s:C_Root.'&Idioms.-SEP1- :'
exe "amenu ".s:C_Root.'&Idioms.for(x=&0;\ x<n;\ x\+=1) <Esc><Esc>:call C_CodeFor("up" , "a")<CR>a'
exe "amenu ".s:C_Root.'&Idioms.for(x=&n-1;\ x>=0;\ x\-=1) <Esc><Esc>:call C_CodeFor("down", "a")<CR>a'
exe "vmenu ".s:C_Root.'&Idioms.for(x=&0;\ x<n;\ x\+=1) <Esc><Esc>:call C_CodeFor("up" , "v")<CR>'
exe "vmenu ".s:C_Root.'&Idioms.for(x=&n-1;\ x>=0;\ x\-=1) <Esc><Esc>:call C_CodeFor("down", "v")<CR>'
exe "amenu ".s:C_Root.'&Idioms.-SEP2- :'
exe "amenu <silent> ".s:C_Root.'&Idioms.&enum\+typedef <Esc><Esc>:call C_InsertTemplate("idioms.enum")<CR>'
exe "amenu <silent> ".s:C_Root.'&Idioms.&struct\+typedef <Esc><Esc>:call C_InsertTemplate("idioms.struct")<CR>'
exe "amenu <silent> ".s:C_Root.'&Idioms.&union\+typedef <Esc><Esc>:call C_InsertTemplate("idioms.union")<CR>'
exe "vmenu <silent> ".s:C_Root.'&Idioms.&enum\+typedef <Esc><Esc>:call C_InsertTemplate("idioms.enum" , "v")<CR>'
exe "vmenu <silent> ".s:C_Root.'&Idioms.&struct\+typedef <Esc><Esc>:call C_InsertTemplate("idioms.struct", "v")<CR>'
exe "vmenu <silent> ".s:C_Root.'&Idioms.&union\+typedef <Esc><Esc>:call C_InsertTemplate("idioms.union" , "v")<CR>'
exe "amenu ".s:C_Root.'&Idioms.-SEP3- :'
"
exe " noremenu ".s:C_Root.'&Idioms.&printf <Esc><Esc>oprintf("\n");<Esc>2F"a'
exe "inoremenu ".s:C_Root.'&Idioms.&printf printf("\n");<Esc>2F"a'
exe " noremenu ".s:C_Root.'&Idioms.s&canf <Esc><Esc>oscanf("", & );<Esc>F"i'
exe "inoremenu ".s:C_Root.'&Idioms.s&canf scanf("", & );<Esc>F"i'
"
exe "amenu ".s:C_Root.'&Idioms.-SEP4- :'
exe "amenu <silent> ".s:C_Root.'&Idioms.p=ca&lloc\(n,sizeof(type)\) <Esc><Esc>:call C_InsertTemplate("idioms.calloc")<CR>'
exe "amenu <silent> ".s:C_Root.'&Idioms.p=m&alloc\(sizeof(type)\) <Esc><Esc>:call C_InsertTemplate("idioms.malloc")<CR>'
"
exe "anoremenu <silent> ".s:C_Root.'&Idioms.si&zeof(\ \) isizeof()<Left>'
exe "inoremenu <silent> ".s:C_Root.'&Idioms.si&zeof(\ \) sizeof()<Left>'
exe "vnoremenu <silent> ".s:C_Root.'&Idioms.si&zeof(\ \) ssizeof()<Esc>P'
"
exe "anoremenu <silent> ".s:C_Root.'&Idioms.asse&rt(\ \) oassert();<Left><Left>'
exe "vnoremenu <silent> ".s:C_Root.'&Idioms.asse&rt(\ \) sassert();<Esc>F(p'
exe "amenu ".s:C_Root.'&Idioms.-SEP5- :'
exe "amenu <silent> ".s:C_Root.'&Idioms.open\ &input\ file <Esc><Esc>:call C_InsertTemplate("idioms.open-input-file")<CR>'
exe "amenu <silent> ".s:C_Root.'&Idioms.open\ &output\ file <Esc><Esc>:call C_InsertTemplate("idioms.open-output-file")<CR>'
exe "amenu <silent> ".s:C_Root.'&Idioms.fscanf <Esc><Esc>:call C_InsertTemplate("idioms.fscanf")<CR>'
exe "amenu <silent> ".s:C_Root.'&Idioms.fprintf <Esc><Esc>:call C_InsertTemplate("idioms.fprintf")<CR>'
"
"===============================================================================================
"----- Menu : C-Preprocessor ---------------------------------------------- {{{2
"===============================================================================================
"
if s:C_MenuHeader == 'yes'
exe "amenu ".s:C_Root.'&Preprocessor.&Preprocessor<Tab>C\/C\+\+ <Esc>'
exe "amenu ".s:C_Root.'&Preprocessor.-Sep00- :'
endif
"
"----- Submenu : C-Idioms: standard library -------------------------------------------------------
"'
exe "amenu ".s:C_Root.'&Preprocessor.#include\ &Std\.Lib\..Std\.Lib\.<Tab>C\/C\+\+ <Esc>'
exe "amenu ".s:C_Root.'&Preprocessor.#include\ &Std\.Lib\..-Sep0- :'
"
exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ &Std\.Lib\..&assert\.h <Esc><Esc>o#include<Tab><assert.h>'
exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ &Std\.Lib\..&ctype\.h <Esc><Esc>o#include<Tab><ctype.h>'
exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ &Std\.Lib\..&errno\.h <Esc><Esc>o#include<Tab><errno.h>'
exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ &Std\.Lib\..&float\.h <Esc><Esc>o#include<Tab><float.h>'
exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ &Std\.Lib\..&limits\.h <Esc><Esc>o#include<Tab><limits.h>'
exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ &Std\.Lib\..l&ocale\.h <Esc><Esc>o#include<Tab><locale.h>'
exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ &Std\.Lib\..&math\.h <Esc><Esc>o#include<Tab><math.h>'
exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ &Std\.Lib\..set&jmp\.h <Esc><Esc>o#include<Tab><setjmp.h>'
exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ &Std\.Lib\..s&ignal\.h <Esc><Esc>o#include<Tab><signal.h>'
exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ &Std\.Lib\..stdar&g\.h <Esc><Esc>o#include<Tab><stdarg.h>'
exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ &Std\.Lib\..st&ddef\.h <Esc><Esc>o#include<Tab><stddef.h>'
exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ &Std\.Lib\..&stdio\.h <Esc><Esc>o#include<Tab><stdio.h>'
exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ &Std\.Lib\..stdli&b\.h <Esc><Esc>o#include<Tab><stdlib.h>'
exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ &Std\.Lib\..st&ring\.h <Esc><Esc>o#include<Tab><string.h>'
exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ &Std\.Lib\..&time\.h <Esc><Esc>o#include<Tab><time.h>'
"
exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ C&99.C99<Tab>C\/C\+\+ <Esc>'
exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ C&99.-Sep0- :'
exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ C&99.&complex\.h <Esc><Esc>o#include<Tab><complex.h>'
exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ C&99.&fenv\.h <Esc><Esc>o#include<Tab><fenv.h>'
exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ C&99.&inttypes\.h <Esc><Esc>o#include<Tab><inttypes.h>'
exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ C&99.is&o646\.h <Esc><Esc>o#include<Tab><iso646.h>'
exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ C&99.&stdbool\.h <Esc><Esc>o#include<Tab><stdbool.h>'
exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ C&99.s&tdint\.h <Esc><Esc>o#include<Tab><stdint.h>'
exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ C&99.tg&math\.h <Esc><Esc>o#include<Tab><tgmath.h>'
exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ C&99.&wchar\.h <Esc><Esc>o#include<Tab><wchar.h>'
exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ C&99.wct&ype\.h <Esc><Esc>o#include<Tab><wctype.h>'
"
exe "amenu ".s:C_Root.'&Preprocessor.-SEP2- :'
exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ &\<\.\.\.\> <Esc><Esc>o#include<Tab><><Left>'
exe "anoremenu ".s:C_Root.'&Preprocessor.#include\ &\"\.\.\.\" <Esc><Esc>o#include<Tab>""<Left>'
exe "amenu ".s:C_Root.'&Preprocessor.#&define <Esc><Esc>:call C_InsertTemplate("preprocessor.define")<CR>'
exe "amenu ".s:C_Root.'&Preprocessor.&#undef <Esc><Esc>:call C_InsertTemplate("preprocessor.undefine")<CR>'
"
exe "amenu ".s:C_Root.'&Preprocessor.#&if\ #else\ #endif <Esc><Esc>:call C_InsertTemplate("preprocessor.if-else-endif")<CR>'
exe "amenu ".s:C_Root.'&Preprocessor.#i&fdef\ #else\ #endif <Esc><Esc>:call C_InsertTemplate("preprocessor.ifdef-else-endif")<CR>'
exe "amenu ".s:C_Root.'&Preprocessor.#if&ndef\ #else\ #endif <Esc><Esc>:call C_InsertTemplate("preprocessor.ifndef-else-endif")<CR>'
exe "amenu ".s:C_Root.'&Preprocessor.#ifnd&ef\ #def\ #endif <Esc><Esc>:call C_InsertTemplate("preprocessor.ifndef-def-endif")<CR>'
exe "amenu ".s:C_Root.'&Preprocessor.#if\ &0\ #endif <Esc><Esc>:call C_PPIf0("a")<CR>2ji'
"
exe "vmenu ".s:C_Root.'&Preprocessor.#&if\ #else\ #endif <Esc><Esc>:call C_InsertTemplate("preprocessor.if-else-endif", "v")<CR>'
exe "vmenu ".s:C_Root.'&Preprocessor.#i&fdef\ #else\ #endif <Esc><Esc>:call C_InsertTemplate("preprocessor.ifdef-else-endif", "v")<CR>'
exe "vmenu ".s:C_Root.'&Preprocessor.#if&ndef\ #else\ #endif <Esc><Esc>:call C_InsertTemplate("preprocessor.ifndef-else-endif", "v")<CR>'
exe "vmenu ".s:C_Root.'&Preprocessor.#ifnd&ef\ #def\ #endif <Esc><Esc>:call C_InsertTemplate("preprocessor.ifndef-def-endif", "v")<CR>'
exe "vmenu ".s:C_Root.'&Preprocessor.#if\ &0\ #endif <Esc><Esc>:call C_PPIf0("v")<CR>'
"
exe "amenu <silent> ".s:C_Root.'&Preprocessor.&remove\ #if\ 0\ #endif <Esc><Esc>:call C_PPIf0Remove()<CR>'
"
"===============================================================================================
"----- Menu : Snippets ---------------------------------------------------- {{{2
"===============================================================================================
"
if s:C_MenuHeader == 'yes'
exe "amenu ".s:C_Root.'S&nippets.S&nippets<Tab>C\/C\+\+ <Esc>'
exe "amenu ".s:C_Root.'S&nippets.-Sep00- :'
endif
if s:C_CodeSnippets != ""
exe "amenu <silent> ".s:C_Root.'S&nippets.&read\ code\ snippet <C-C>:call C_CodeSnippet("r")<CR>'
exe "amenu <silent> ".s:C_Root.'S&nippets.&write\ code\ snippet <C-C>:call C_CodeSnippet("w")<CR>'
exe "vmenu <silent> ".s:C_Root.'S&nippets.&write\ code\ snippet <C-C>:call C_CodeSnippet("wv")<CR>'
exe "amenu <silent> ".s:C_Root.'S&nippets.&edit\ code\ snippet <C-C>:call C_CodeSnippet("e")<CR>'
exe " menu <silent> ".s:C_Root.'S&nippets.-SEP1- :'
endif
exe " menu <silent> ".s:C_Root.'S&nippets.&pick\ up\ prototype <C-C>:call C_ProtoPick("n")<CR>'
exe "vmenu <silent> ".s:C_Root.'S&nippets.&pick\ up\ prototype <C-C>:call C_ProtoPick("v")<CR>'
exe " menu <silent> ".s:C_Root.'S&nippets.&insert\ prototype(s) <C-C>:call C_ProtoInsert()<CR>'
exe " menu <silent> ".s:C_Root.'S&nippets.&clear\ prototype(s) <C-C>:call C_ProtoClear()<CR>'
exe " menu <silent> ".s:C_Root.'S&nippets.&show\ prototype(s) <C-C>:call C_ProtoShow()<CR>'
"
"===============================================================================================
"----- Menu : C++ --------------------------------------------------------- {{{2
"===============================================================================================
"
if s:C_MenuHeader == 'yes'
exe "amenu ".s:C_Root.'C&++.C&\+\+<Tab>C\/C\+\+ <Esc>'
exe "amenu ".s:C_Root.'C&++.-Sep00- :'
endif
exe " noremenu ".s:C_Root.'C&++.c&in <Esc><Esc>ocin<Tab>>> ;<Esc>i'
exe " noremenu ".s:C_Root.'C&++.cout\ &variable <Esc><Esc>ocout<Tab><< << endl;<Esc>2F<hi'
exe " noremenu ".s:C_Root.'C&++.cout\ &string <Esc><Esc>ocout<Tab><< "\n";<Esc>2F"a'
exe " noremenu ".s:C_Root.'C&++.<<\ &\"\" i<< "" <Left><Left>'
"
exe "inoremenu ".s:C_Root.'C&++.c&in cin<Tab>>> ;<Esc>i'
exe "inoremenu ".s:C_Root.'C&++.cout\ &variable cout<Tab><< << endl;<Esc>2F<hi'
exe "inoremenu ".s:C_Root.'C&++.cout\ &string cout<Tab><< "\n";<Esc>2F"a'
exe "inoremenu ".s:C_Root.'C&++.<<\ &\"\" << "" <Left><Left>'
"
"----- Submenu : C++ : output manipulators -------------------------------------------------------
"
exe "amenu ".s:C_Root.'C&++.&output\ manipulators.output\ manip\.<Tab>C\/C\+\+ <Esc>'
exe "amenu ".s:C_Root.'C&++.&output\ manipulators.-Sep0- :'
"
exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &boolalpha i<< boolalpha<Space>'
exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &dec i<< dec<Space>'
exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &endl i<< endl<Space>'
exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &fixed i<< fixed<Space>'
exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ fl&ush i<< flush<Space>'
exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &hex i<< hex<Space>'
exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &internal i<< internal<Space>'
exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &left i<< left<Space>'
exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &oct i<< oct<Space>'
exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &right i<< right<Space>'
exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ s&cientific i<< scientific<Space>'
exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &setbase\(\ \) i<< setbase(10) <Left><Left>'
exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ se&tfill\(\ \) i<< setfill() <Left><Left>'
exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ setiosfla&g\(\ \) i<< setiosflags() <Left><Left>'
exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ set&precision\(\ \) i<< setprecision(6) <Left><Left>'
exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ set&w\(\ \) i<< setw(0) <Left><Left>'
exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ showb&ase i<< showbase<Space>'
exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ showpoi&nt i<< showpoint<Space>'
exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ showpos\ \(&1\) i<< showpos<Space>'
exe " noremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ uppercase\ \(&2\) i<< uppercase<Space>'
"
exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &boolalpha << boolalpha<Space>'
exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &dec << dec<Space>'
exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &endl << endl<Space>'
exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &fixed << fixed<Space>'
exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ fl&ush << flush<Space>'
exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &hex << hex<Space>'
exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &internal << internal<Space>'
exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &left << left<Space>'
exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ o&ct << oct<Space>'
exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &right << right<Space>'
exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ s&cientific << scientific<Space>'
exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ &setbase\(\ \) << setbase(10) <Left><Left>'
exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ se&tfill\(\ \) << setfill() <Left><Left>'
exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ setiosfla&g\(\ \) << setiosflags() <Left><Left>'
exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ set&precision\(\ \) << setprecision(6) <Left><Left>'
exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ set&w\(\ \) << setw(0) <Left><Left>'
exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ showb&ase << showbase<Space>'
exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ showpoi&nt << showpoint<Space>'
exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ showpos\ \(&1\) << showpos<Space>'
exe "inoremenu ".s:C_Root.'C&++.&output\ manipulators.\<\<\ uppercase\ \(&2\) << uppercase<Space>'
"
"----- Submenu : C++ : ios flag bits -------------------------------------------------------------
"
exe "amenu ".s:C_Root.'C&++.ios\ flag&bits.ios\ flags<Tab>C\/C\+\+ <Esc>'
exe "amenu ".s:C_Root.'C&++.ios\ flag&bits.-Sep0- :'
"
exe " noremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&adjustfield iios::adjustfield'
exe " noremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::bas&efield iios::basefield'
exe " noremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&boolalpha iios::boolalpha'
exe " noremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&dec iios::dec'
exe " noremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&fixed iios::fixed'
exe " noremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::floa&tfield iios::floatfield'
exe " noremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&hex iios::hex'
exe " noremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&internal iios::internal'
exe " noremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&left iios::left'
exe " noremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&oct iios::oct'
exe " noremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&right iios::right'
exe " noremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::s&cientific iios::scientific'
exe " noremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::sho&wbase iios::showbase'
exe " noremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::showpoint\ \(&1\) iios::showpoint'
exe " noremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::show&pos iios::showpos'
exe " noremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&skipws iios::skipws'
exe " noremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::u&nitbuf iios::unitbuf'
exe " noremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&uppercase iios::uppercase'
"
exe "inoremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&adjustfield ios::adjustfield'
exe "inoremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::bas&efield ios::basefield'
exe "inoremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&boolalpha ios::boolalpha'
exe "inoremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&dec ios::dec'
exe "inoremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&fixed ios::fixed'
exe "inoremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::floa&tfield ios::floatfield'
exe "inoremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&hex ios::hex'
exe "inoremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&internal ios::internal'
exe "inoremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&left ios::left'
exe "inoremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&oct ios::oct'
exe "inoremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&right ios::right'
exe "inoremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::s&cientific ios::scientific'
exe "inoremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::sho&wbase ios::showbase'
exe "inoremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::showpoint\ \(&1\) ios::showpoint'
exe "inoremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::show&pos ios::showpos'
exe "inoremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&skipws ios::skipws'
exe "inoremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::u&nitbuf ios::unitbuf'
exe "inoremenu ".s:C_Root.'C&++.ios\ flag&bits.ios::&uppercase ios::uppercase'
"
"----- Submenu : C++ library (algorithm - locale) ----------------------------------------------
"
exe "amenu ".s:C_Root.'C&++.#include\ <alg\.\.loc>\ \(&1\).alg\.\.loc<Tab>C\/C\+\+ <Esc>'
exe "amenu ".s:C_Root.'C&++.#include\ <alg\.\.loc>\ \(&1\).-Sep0- :'
"
exe "anoremenu ".s:C_Root.'C&++.#include\ <alg\.\.loc>\ \(&1\).&algorithm <Esc><Esc>o#include<Tab><algorithm>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <alg\.\.loc>\ \(&1\).&bitset <Esc><Esc>o#include<Tab><bitset>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <alg\.\.loc>\ \(&1\).&complex <Esc><Esc>o#include<Tab><complex>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <alg\.\.loc>\ \(&1\).&deque <Esc><Esc>o#include<Tab><deque>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <alg\.\.loc>\ \(&1\).&exception <Esc><Esc>o#include<Tab><exception>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <alg\.\.loc>\ \(&1\).&fstream <Esc><Esc>o#include<Tab><fstream>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <alg\.\.loc>\ \(&1\).f&unctional <Esc><Esc>o#include<Tab><functional>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <alg\.\.loc>\ \(&1\).iomani&p <Esc><Esc>o#include<Tab><iomanip>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <alg\.\.loc>\ \(&1\).&ios <Esc><Esc>o#include<Tab><ios>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <alg\.\.loc>\ \(&1\).iosf&wd <Esc><Esc>o#include<Tab><iosfwd>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <alg\.\.loc>\ \(&1\).io&stream <Esc><Esc>o#include<Tab><iostream>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <alg\.\.loc>\ \(&1\).istrea&m <Esc><Esc>o#include<Tab><istream>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <alg\.\.loc>\ \(&1\).iterato&r <Esc><Esc>o#include<Tab><iterator>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <alg\.\.loc>\ \(&1\).&limits <Esc><Esc>o#include<Tab><limits>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <alg\.\.loc>\ \(&1\).lis&t <Esc><Esc>o#include<Tab><list>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <alg\.\.loc>\ \(&1\).l&ocale <Esc><Esc>o#include<Tab><locale>'
"
"----- Submenu : C++ library (map - vector) ----------------------------------------------------
"
exe "amenu ".s:C_Root.'C&++.#include\ <map\.\.vec>\ \(&2\).map\.\.vec<Tab>C\/C\+\+ <Esc>'
exe "amenu ".s:C_Root.'C&++.#include\ <map\.\.vec>\ \(&2\).-Sep0- :'
exe "anoremenu ".s:C_Root.'C&++.#include\ <map\.\.vec>\ \(&2\).&map <Esc><Esc>o#include<Tab><map>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <map\.\.vec>\ \(&2\).memor&y <Esc><Esc>o#include<Tab><memory>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <map\.\.vec>\ \(&2\).&new <Esc><Esc>o#include<Tab><new>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <map\.\.vec>\ \(&2\).numeri&c <Esc><Esc>o#include<Tab><numeric>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <map\.\.vec>\ \(&2\).&ostream <Esc><Esc>o#include<Tab><ostream>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <map\.\.vec>\ \(&2\).&queue <Esc><Esc>o#include<Tab><queue>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <map\.\.vec>\ \(&2\).&set <Esc><Esc>o#include<Tab><set>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <map\.\.vec>\ \(&2\).sst&ream <Esc><Esc>o#include<Tab><sstream>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <map\.\.vec>\ \(&2\).st&ack <Esc><Esc>o#include<Tab><stack>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <map\.\.vec>\ \(&2\).stde&xcept <Esc><Esc>o#include<Tab><stdexcept>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <map\.\.vec>\ \(&2\).stream&buf <Esc><Esc>o#include<Tab><streambuf>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <map\.\.vec>\ \(&2\).str&ing <Esc><Esc>o#include<Tab><string>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <map\.\.vec>\ \(&2\).&typeinfo <Esc><Esc>o#include<Tab><typeinfo>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <map\.\.vec>\ \(&2\).&utility <Esc><Esc>o#include<Tab><utility>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <map\.\.vec>\ \(&2\).&valarray <Esc><Esc>o#include<Tab><valarray>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <map\.\.vec>\ \(&2\).v&ector <Esc><Esc>o#include<Tab><vector>'
"
"----- Submenu : C library (cassert - ctime) -------------------------------------------------
"
exe "amenu ".s:C_Root.'C&++.#include\ <cX>\ \(&3\).cX<Tab>C\/C\+\+ <Esc>'
exe "amenu ".s:C_Root.'C&++.#include\ <cX>\ \(&3\).-Sep0- :'
"
exe "anoremenu ".s:C_Root.'C&++.#include\ <cX>\ \(&3\).c&assert <Esc><Esc>o#include<Tab><cassert>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <cX>\ \(&3\).c&ctype <Esc><Esc>o#include<Tab><cctype>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <cX>\ \(&3\).c&errno <Esc><Esc>o#include<Tab><cerrno>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <cX>\ \(&3\).c&float <Esc><Esc>o#include<Tab><cfloat>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <cX>\ \(&3\).c&limits <Esc><Esc>o#include<Tab><climits>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <cX>\ \(&3\).cl&ocale <Esc><Esc>o#include<Tab><clocale>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <cX>\ \(&3\).c&math <Esc><Esc>o#include<Tab><cmath>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <cX>\ \(&3\).cset&jmp <Esc><Esc>o#include<Tab><csetjmp>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <cX>\ \(&3\).cs&ignal <Esc><Esc>o#include<Tab><csignal>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <cX>\ \(&3\).cstdar&g <Esc><Esc>o#include<Tab><cstdarg>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <cX>\ \(&3\).cst&ddef <Esc><Esc>o#include<Tab><cstddef>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <cX>\ \(&3\).c&stdio <Esc><Esc>o#include<Tab><cstdio>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <cX>\ \(&3\).cstdli&b <Esc><Esc>o#include<Tab><cstdlib>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <cX>\ \(&3\).cst&ring <Esc><Esc>o#include<Tab><cstring>'
exe "anoremenu ".s:C_Root.'C&++.#include\ <cX>\ \(&3\).c&time <Esc><Esc>o#include<Tab><ctime>'
"
"----- End Submenu : C library (cassert - ctime) ---------------------------------------------
"
exe "amenu <silent> ".s:C_Root.'C&++.-SEP2- :'
exe "amenu <silent> ".s:C_Root.'C&++.&method\ implement\. <Esc><Esc>:call C_InsertTemplate("cpp.method-implementation")<CR>'
exe "amenu <silent> ".s:C_Root.'C&++.&class <Esc><Esc>:call C_InsertTemplate("cpp.class")<CR>'
exe "amenu <silent> ".s:C_Root.'C&++.class\ (w\.\ &new) <Esc><Esc>:call C_InsertTemplate("cpp.class-using-new")<CR>'
exe "amenu <silent> ".s:C_Root.'C&++.-SEP3- :'
exe "amenu <silent> ".s:C_Root.'C&++.tem&pl\.\ method\ impl\. <Esc><Esc>:call C_InsertTemplate("cpp.template-method-implementation")<CR>'
exe "amenu <silent> ".s:C_Root.'C&++.&templ\.\ class <Esc><Esc>:call C_InsertTemplate("cpp.template-class")<CR>'
exe "amenu <silent> ".s:C_Root.'C&++.templ\.\ class\ (w\.\ ne&w) <Esc><Esc>:call C_InsertTemplate("cpp.template-class-using-new")<CR>'
exe "amenu <silent> ".s:C_Root.'C&++.-SEP31- :'
exe "amenu <silent> ".s:C_Root.'C&++.templ\.\ &function <Esc><Esc>:call C_InsertTemplate("cpp.template-function")<CR>'
exe "amenu <silent> ".s:C_Root.'C&++.&error\ class <Esc><Esc>:call C_InsertTemplate("cpp.error-class")<CR>'
exe "amenu <silent> ".s:C_Root.'C&++.-SEP4- :'
exe "amenu <silent> ".s:C_Root.'C&++.operator\ &<< <Esc><Esc>:call C_InsertTemplate("cpp.operator-in")<CR>'
exe "amenu <silent> ".s:C_Root.'C&++.operator\ &>> <Esc><Esc>:call C_InsertTemplate("cpp.operator-out")<CR>'
exe "amenu <silent> ".s:C_Root.'C&++.-SEP5- :'
exe "amenu <silent> ".s:C_Root.'C&++.tr&y\ \.\.\ catch <Esc><Esc>:call C_InsertTemplate("cpp.try-catch")<CR>'
exe "vmenu <silent> ".s:C_Root.'C&++.tr&y\ \.\.\ catch <Esc><Esc>:call C_InsertTemplate("cpp.try-catch", "v")<CR>'
exe "amenu <silent> ".s:C_Root.'C&++.catc&h <Esc><Esc>:call C_InsertTemplate("cpp.catch")<CR>'
exe "vmenu <silent> ".s:C_Root.'C&++.catc&h <Esc><Esc>:call C_InsertTemplate("cpp.catch", "v")<CR>'
exe "amenu <silent> ".s:C_Root.'C&++.catch\(&\.\.\.\) <Esc><Esc>:call C_InsertTemplate("cpp.catch-points")<CR>'
exe "vmenu <silent> ".s:C_Root.'C&++.catch\(&\.\.\.\) <Esc><Esc>:call C_InsertTemplate("cpp.catch-points", "v")<CR>'
exe "amenu <silent> ".s:C_Root.'C&++.-SEP6- :'
exe "amenu <silent> ".s:C_Root.'C&++.open\ input\ file\ \ \(&4\) <Esc><Esc>:call C_InsertTemplate("cpp.open-input-file")<CR>'
exe "amenu <silent> ".s:C_Root.'C&++.open\ output\ file\ \(&5\) <Esc><Esc>:call C_InsertTemplate("cpp.open-output-file")<CR>'
exe "amenu <silent> ".s:C_Root.'C&++.-SEP7- :'
exe " menu <silent> ".s:C_Root.'C&++.&using\ namespace\ std; <Esc><Esc>ousing namespace std;<CR>'
exe " menu <silent> ".s:C_Root.'C&++.usin&g\ namespace\ ; <Esc><Esc>ousing namespace ;<Esc>$i'
exe "amenu <silent> ".s:C_Root.'C&++.namespace\ &\{\ \} <Esc><Esc>:call C_InsertTemplate("cpp.namespace")<CR>'
exe "imenu <silent> ".s:C_Root.'C&++.&using\ namespace\ std; using namespace std;<CR>'
exe "imenu <silent> ".s:C_Root.'C&++.usin&g\ namespace\ ; using namespace ;<Esc>$i'
exe "vmenu <silent> ".s:C_Root.'C&++.namespace\ &\{\ \} <Esc><Esc>:call C_InsertTemplate("cpp.namespace", "v")<CR>'
exe "amenu <silent> ".s:C_Root.'C&++.-SEP8- :'
"
"----- Submenu : RTTI ----------------------------------------------------------------------------
"
exe "amenu ".s:C_Root.'C&++.&RTTI.RTTI<Tab>C\/C\+\+ <Esc>'
exe "amenu ".s:C_Root.'C&++.&RTTI.-Sep0- :'
"
exe " noremenu ".s:C_Root.'C&++.&RTTI.&typeid atypeid()<Esc>hr(a'
exe " noremenu ".s:C_Root.'C&++.&RTTI.&static_cast astatic_cast<>()<Left>'
exe " noremenu ".s:C_Root.'C&++.&RTTI.&const_cast aconst_cast<>()<Left>'
exe " noremenu ".s:C_Root.'C&++.&RTTI.&reinterpret_cast areinterpret_cast<>()<Left>'
exe " noremenu ".s:C_Root.'C&++.&RTTI.&dynamic_cast adynamic_cast<>()<Left>'
"
exe "vnoremenu ".s:C_Root.'C&++.&RTTI.&typeid stypeid()<Esc>hr(p'
exe "vnoremenu ".s:C_Root.'C&++.&RTTI.&static_cast sstatic_cast<>()<Esc>P'
exe "vnoremenu ".s:C_Root.'C&++.&RTTI.&const_cast sconst_cast<>()<Esc>P'
exe "vnoremenu ".s:C_Root.'C&++.&RTTI.&reinterpret_cast sreinterpret_cast<>()<Esc>P'
exe "vnoremenu ".s:C_Root.'C&++.&RTTI.&dynamic_cast sdynamic_cast<>()<Esc>P'
"
exe "inoremenu ".s:C_Root.'C&++.&RTTI.&typeid typeid()<Esc>hr(a'
exe "inoremenu ".s:C_Root.'C&++.&RTTI.&static_cast static_cast<>()<Left>'
exe "inoremenu ".s:C_Root.'C&++.&RTTI.&const_cast const_cast<>()<Left>'
exe "inoremenu ".s:C_Root.'C&++.&RTTI.&reinterpret_cast reinterpret_cast<>()<Left>'
exe "inoremenu ".s:C_Root.'C&++.&RTTI.&dynamic_cast dynamic_cast<>()<Left>'
"
"----- End Submenu : RTTI ------------------------------------------------------------------------
"
exe "amenu <silent>".s:C_Root.'C&++.e&xtern\ \"C\"\ \{\ \} <Esc><Esc>:call C_InsertTemplate("cpp.extern")<CR>'
exe "vmenu <silent>".s:C_Root.'C&++.e&xtern\ \"C\"\ \{\ \} <Esc><Esc>:call C_InsertTemplate("cpp.extern", "v")<CR>'
"
"===============================================================================================
"----- Menu : run ----- -------------------------------------------------- {{{2
"===============================================================================================
"
if s:C_MenuHeader == 'yes'
exe "amenu ".s:C_Root.'&Run.&Run<Tab>C\/C\+\+ <Esc>'
exe "amenu ".s:C_Root.'&Run.-Sep00- :'
endif
"
exe "amenu <silent> ".s:C_Root.'&Run.save\ and\ &compile<Tab>\<A-F9\> <C-C>:call C_Compile()<CR>:redraw<CR>:call C_HlMessage()<CR>'
exe "amenu <silent> ".s:C_Root.'&Run.&link<Tab>\<F9\> <C-C>:call C_Link()<CR>:redraw<CR>:call C_HlMessage()<CR>'
exe "amenu <silent> ".s:C_Root.'&Run.&run<Tab>\<C-F9\> <C-C>:call C_Run()<CR>'
exe "amenu <silent> ".s:C_Root.'&Run.cmd\.\ line\ &arg\.<Tab>\<S-F9\> <C-C>:call C_Arguments()<CR>'
exe "amenu <silent> ".s:C_Root.'&Run.-SEP0- :'
exe "amenu <silent> ".s:C_Root.'&Run.&make <C-C>:call C_Make()<CR>'
exe "amenu <silent> ".s:C_Root.'&Run.cmd\.\ line\ ar&g\.\ for\ make <C-C>:call C_MakeArguments()<CR>'
exe "amenu <silent> ".s:C_Root.'&Run.-SEP1- :'
if s:C_SplintIsExecutable==1
exe "amenu <silent> ".s:C_Root.'&Run.s&plint <C-C>:call C_SplintCheck()<CR>:redraw<CR>:call C_HlMessage()<CR>'
exe "amenu <silent> ".s:C_Root.'&Run.cmd\.\ line\ arg\.\ for\ spl&int <C-C>:call C_SplintArguments()<CR>'
exe "amenu <silent> ".s:C_Root.'&Run.-SEP2- :'
endif
"
if s:C_CodeCheckIsExecutable==1
exe "amenu <silent> ".s:C_Root.'&Run.CodeChec&k <C-C>:call C_CodeCheck()<CR>:redraw<CR>:call C_HlMessage()<CR>'
exe "amenu <silent> ".s:C_Root.'&Run.cmd\.\ line\ arg\.\ for\ Cod&eCheck <C-C>:call C_CodeCheckArguments()<CR>'
exe "amenu <silent> ".s:C_Root.'&Run.-SEP3- :'
endif
"
exe "amenu ".s:C_Root.'&Run.in&dent <C-C>:call C_Indent("a")<CR>:redraw<CR>:call C_HlMessage()<CR>'
exe "vmenu ".s:C_Root.'&Run.in&dent <C-C>:call C_Indent("v")<CR>:redraw<CR>:call C_HlMessage()<CR>'
if s:MSWIN
exe "amenu <silent> ".s:C_Root.'&Run.&hardcopy\ to\ printer <C-C>:call C_Hardcopy("n")<CR>'
exe "vmenu <silent> ".s:C_Root.'&Run.&hardcopy\ to\ printer <C-C>:call C_Hardcopy("v")<CR>'
else
exe "amenu <silent> ".s:C_Root.'&Run.&hardcopy\ to\ FILENAME\.ps <C-C>:call C_Hardcopy("n")<CR>'
exe "vmenu <silent> ".s:C_Root.'&Run.&hardcopy\ to\ FILENAME\.ps <C-C>:call C_Hardcopy("v")<CR>'
endif
exe "imenu <silent> ".s:C_Root.'&Run.-SEP4- :'
exe "amenu <silent> ".s:C_Root.'&Run.rebuild\ &templates <C-C>:call C_RebuildTemplates()<CR>'
exe "amenu <silent> ".s:C_Root.'&Run.&settings <C-C>:call C_Settings()<CR>'
exe "imenu <silent> ".s:C_Root.'&Run.-SEP5- :'
if !s:MSWIN
exe "amenu <silent> ".s:C_Root.'&Run.&xterm\ size <C-C>:call C_XtermSize()<CR>'
endif
if s:C_OutputGvim == "vim"
exe "amenu <silent> ".s:C_Root.'&Run.&output:\ VIM->buffer->xterm <C-C>:call C_Toggle_Gvim_Xterm()<CR><CR>'
else
if s:C_OutputGvim == "buffer"
exe "amenu <silent> ".s:C_Root.'&Run.&output:\ BUFFER->xterm->vim <C-C>:call C_Toggle_Gvim_Xterm()<CR><CR>'
else
exe "amenu <silent> ".s:C_Root.'&Run.&output:\ XTERM->vim->buffer <C-C>:call C_Toggle_Gvim_Xterm()<CR><CR>'
endif
endif
"
"===============================================================================================
"----- Menu : help ------------------------------------------------------- {{{2
"===============================================================================================
"
if s:C_Root != ""
exe "menu <silent> ".s:C_Root.'&help\ \(plugin\) <C-C><C-C>:call C_HelpCsupport()<CR>'
endif
endfunction " ---------- end of function C_InitMenus ----------
"
"===============================================================================================
"----- Menu Functions --------------------------------------------------------------------------
"===============================================================================================
"
"------------------------------------------------------------------------------
" C_Input: Input after a highlighted prompt {{{1
"------------------------------------------------------------------------------
function! C_Input ( promp, text )
echohl Search " highlight prompt
call inputsave() " preserve typeahead
let retval=input( a:promp, a:text ) " read input
call inputrestore() " restore typeahead
echohl None " reset highlighting
let retval = substitute( retval, '^\s\+', "", "" ) " remove leading whitespaces
let retval = substitute( retval, '\s\+$', "", "" ) " remove trailing whitespaces
return retval
endfunction " ---------- end of function C_Input ----------
"
"------------------------------------------------------------------------------
" C_AdjustLineEndComm: adjust line-end comments {{{1
"------------------------------------------------------------------------------
function! C_AdjustLineEndComm ( mode ) range
"
if !exists("b:C_LineEndCommentColumn")
let b:C_LineEndCommentColumn = s:C_LineEndCommColDefault
endif
let save_cursor = getpos(".")
let save_expandtab = &expandtab
exe ":set expandtab"
if a:mode == 'v'
let pos0 = line("'<")
let pos1 = line("'>")
else
let pos0 = line(".")
let pos1 = pos0
endif
let linenumber = pos0
exe ":".pos0
while linenumber <= pos1
let line= getline(".")
" look for a C comment
let idx1 = 1 + match( line, '\s*\/\*.\{-}\*\/' )
let idx2 = 1 + match( line, '\/\*.\{-}\*\/' )
if idx2 == 0
" look for a C++ comment
let idx1 = 1 + match( line, '\s*\/\/.*$' )
let idx2 = 1 + match( line, '\/\/.*$' )
endif
let ln = line(".")
call setpos(".", [ 0, ln, idx1, 0 ] )
let vpos1 = virtcol(".")
call setpos(".", [ 0, ln, idx2, 0 ] )
let vpos2 = virtcol(".")
if ! ( vpos2 == b:C_LineEndCommentColumn
\ || vpos1 > b:C_LineEndCommentColumn
\ || idx2 == 0 )
exe ":.,.retab"
" insert some spaces
if vpos2 < b:C_LineEndCommentColumn
let diff = b:C_LineEndCommentColumn-vpos2
call setpos(".", [ 0, ln, vpos2, 0 ] )
let @" = ' '
exe "normal ".diff."P"
endif
" remove some spaces
if vpos1 < b:C_LineEndCommentColumn && vpos2 > b:C_LineEndCommentColumn
let diff = vpos2 - b:C_LineEndCommentColumn
call setpos(".", [ 0, ln, b:C_LineEndCommentColumn, 0 ] )
exe "normal ".diff."x"
endif
endif
let linenumber=linenumber+1
normal j
endwhile
" restore tab expansion settings and cursor position
let &expandtab = save_expandtab
call setpos('.', save_cursor)
endfunction " ---------- end of function C_AdjustLineEndComm ----------
"
"------------------------------------------------------------------------------
" C_GetLineEndCommCol: get line-end comment position {{{1
"------------------------------------------------------------------------------
function! C_GetLineEndCommCol ()
let actcol = virtcol(".")
if actcol+1 == virtcol("$")
let b:C_LineEndCommentColumn = C_Input( 'start line-end comment at virtual column : ', actcol )
else
let b:C_LineEndCommentColumn = virtcol(".")
endif
echomsg "line end comments will start at column ".b:C_LineEndCommentColumn
endfunction " ---------- end of function C_GetLineEndCommCol ----------
"
"------------------------------------------------------------------------------
" C_LineEndComment: single line-end comment {{{1
"------------------------------------------------------------------------------
function! C_LineEndComment ( )
if !exists("b:C_LineEndCommentColumn")
let b:C_LineEndCommentColumn = s:C_LineEndCommColDefault
endif
" ----- trim whitespaces -----
exe 's/\s*$//'
let linelength= virtcol("$") - 1
if linelength < b:C_LineEndCommentColumn
let diff = b:C_LineEndCommentColumn -1 -linelength
exe "normal ".diff."A "
endif
" append at least one blank
if linelength >= b:C_LineEndCommentColumn
exe "normal A "
endif
call C_InsertTemplate('comment.end-of-line-comment')
endfunction " ---------- end of function C_LineEndComment ----------
"
"------------------------------------------------------------------------------
" C_MultiLineEndComments: multi line-end comments {{{1
"------------------------------------------------------------------------------
function! C_MultiLineEndComments ( )
"
if !exists("b:C_LineEndCommentColumn")
let b:C_LineEndCommentColumn = s:C_LineEndCommColDefault
endif
"
let pos0 = line("'<")
let pos1 = line("'>")
"
" ----- trim whitespaces -----
exe pos0.','.pos1.'s/\s*$//'
"
" ----- find the longest line -----
let maxlength = 0
let linenumber = pos0
normal '<
while linenumber <= pos1
if getline(".") !~ "^\\s*$" && maxlength<virtcol("$")
let maxlength= virtcol("$")
endif
let linenumber=linenumber+1
normal j
endwhile
"
if maxlength < b:C_LineEndCommentColumn
let maxlength = b:C_LineEndCommentColumn
else
let maxlength = maxlength+1 " at least 1 blank
endif
"
" ----- fill lines with blanks -----
let linenumber = pos0
while linenumber <= pos1
exe ":".linenumber
if getline(".") !~ "^\\s*$"
let diff = maxlength - virtcol("$")
exe "normal ".diff."A "
call C_InsertTemplate('comment.end-of-line-comment')
endif
let linenumber=linenumber+1
endwhile
"
" ----- back to the begin of the marked block -----
let diff = pos1-pos0
normal a
if pos1-pos0 > 0
exe "normal ".diff."k"
end
endfunction " ---------- end of function C_MultiLineEndComments ----------
"
"------------------------------------------------------------------------------
" C_CommentSpecial : special comments {{{1
"------------------------------------------------------------------------------
function! C_CommentSpecial (special)
put = ' '.s:C_Com1.' '.a:special.' '.s:C_Com2
endfunction " ---------- end of function C_CommentSpecial ----------
"
"------------------------------------------------------------------------------
" C_Comment_C_SectionAll: Section Comments {{{1
"------------------------------------------------------------------------------
"
function! C_Comment_C_SectionAll ( type )
call C_InsertTemplate("comment.file-section-cpp-header-includes")
call C_InsertTemplate("comment.file-section-cpp-macros")
call C_InsertTemplate("comment.file-section-cpp-typedefs")
call C_InsertTemplate("comment.file-section-cpp-data-types")
if a:type=="cpp"
call C_InsertTemplate("comment.file-section-cpp-class-defs")
endif
call C_InsertTemplate("comment.file-section-cpp-local-variables")
call C_InsertTemplate("comment.file-section-cpp-prototypes")
call C_InsertTemplate("comment.file-section-cpp-function-defs-exported")
call C_InsertTemplate("comment.file-section-cpp-function-defs-local")
if a:type=="cpp"
call C_InsertTemplate("comment.file-section-cpp-class-implementations-exported")
call C_InsertTemplate("comment.file-section-cpp-class-implementations-local")
endif
endfunction " ---------- end of function C_Comment_C_SectionAll ----------
"
function! C_Comment_H_SectionAll ( type )
call C_InsertTemplate("comment.file-section-hpp-header-includes")
call C_InsertTemplate("comment.file-section-hpp-macros")
call C_InsertTemplate("comment.file-section-hpp-exported-typedefs")
call C_InsertTemplate("comment.file-section-hpp-exported-data-types")
if a:type=="cpp"
call C_InsertTemplate("comment.file-section-hpp-exported-class-defs")
endif
call C_InsertTemplate("comment.file-section-hpp-exported-variables")
call C_InsertTemplate("comment.file-section-hpp-exported-function-declarations")
endfunction " ---------- end of function C_Comment_H_SectionAll ----------
"
"----------------------------------------------------------------------
" C_CodeComment : Code -> Comment {{{1
"----------------------------------------------------------------------
function! C_CodeComment( mode, style )
if a:mode=="a"
if a:style == 'yes'
silent exe ":s#^#/\* #"
silent put = ' */'
else
silent exe ":s#^#//#"
endif
endif
if a:mode=="v"
if a:style == 'yes'
silent exe ":'<,'>s/^/ \* /"
silent exe ":'< s'^ '\/'"
silent exe ":'>"
silent put = ' */'
else
silent exe ":'<,'>s#^#//#"
endif
endif
endfunction " ---------- end of function C_CodeComment ----------
"
"----------------------------------------------------------------------
" C_StartMultilineComment : Comment -> Code {{{1
"----------------------------------------------------------------------
let s:C_StartMultilineComment = '^\s*\/\*[\*! ]\='
function! C_RemoveCComment( start, end )
if a:end-a:start<1
return 0 " lines removed
endif
"
" Is the C-comment complete ? Get length.
"
let check = getline( a:start ) =~ s:C_StartMultilineComment
let linenumber = a:start+1
while linenumber < a:end && getline( linenumber ) !~ '^\s*\*\/'
let check = check && getline( linenumber ) =~ '^\s*\*[ ]\='
let linenumber = linenumber+1
endwhile
let check = check && getline( linenumber ) =~ '^\s*\*\/'
"
" remove a complete comment
"
if check
exe "silent :".a:start.' s/'.s:C_StartMultilineComment.'//'
let linenumber1 = a:start+1
while linenumber1 < linenumber
exe "silent :".linenumber1.' s/^\s*\*[ ]\=//'
let linenumber1 = linenumber1+1
endwhile
exe "silent :".linenumber1.' s/^\s*\*\///'
endif
return linenumber-a:start+1 " lines removed
endfunction " ---------- end of function C_RemoveCComment ----------
"
"----------------------------------------------------------------------
" C_CommentCode : Comment -> Code {{{1
"----------------------------------------------------------------------
function! C_CommentCode(mode)
if a:mode=="a"
let pos1 = line(".")
let pos2 = pos1
endif
if a:mode=="v"
let pos1 = line("'<")
let pos2 = line("'>")
endif
let removed = 0
"
let linenumber=pos1
while linenumber <= pos2
" Do we have a C++ comment ?
if getline( linenumber ) =~ '^\s*//'
exe "silent :".linenumber.' s#^\s*//##'
let removed = 1
endif
" Do we have a C comment ?
if removed == 0 && getline( linenumber ) =~ s:C_StartMultilineComment
let removed = C_RemoveCComment(linenumber,pos2)
endif
if removed!=0
let linenumber = linenumber+removed
let removed = 0
else
let linenumber = linenumber+1
endif
endwhile
endfunction " ---------- end of function C_CommentCode ----------
"
"----------------------------------------------------------------------
" C_CommentCppToC : C++ Comment -> C Comment {{{1
" Removes trailing whitespaces.
"----------------------------------------------------------------------
function! C_CommentCppToC()
silent! exe ':s#\/\/\s*\(.*\)\s*$#/* \1 */#'
endfunction " ---------- end of function C_CommentCppToC ----------
"
"----------------------------------------------------------------------
" C_CommentCToCpp : C Comment -> C++ Comment {{{1
" Changes the first comment in case of multiple comments:
" xxxx; /* */ /* */
" xxxx; // /* */
" Removes trailing whitespaces.
"----------------------------------------------------------------------
function! C_CommentCToCpp()
silent! exe ':s!\/\*\s*\(.\{-}\)\*\/!\/\/ \1!'
silent! exe ':s!\s*$!!'
endfunction " ---------- end of function C_CommentCToCpp ----------
"
"=====================================================================================
"----- Menu : Statements -----------------------------------------------------------
"=====================================================================================
"
"------------------------------------------------------------------------------
" C_PPIf0 : #if 0 .. #endif {{{1
"------------------------------------------------------------------------------
function! C_PPIf0 (mode)
"
let s:C_If0_Counter = 0
let save_line = line(".")
let actual_line = 0
"
" search for the maximum option number (if any)
"
normal gg
while actual_line < search( s:C_If0_Txt."\\d\\+" )
let actual_line = line(".")
let actual_opt = matchstr( getline(actual_line), s:C_If0_Txt."\\d\\+" )
let actual_opt = strpart( actual_opt, strlen(s:C_If0_Txt),strlen(actual_opt)-strlen(s:C_If0_Txt))
if s:C_If0_Counter < actual_opt
let s:C_If0_Counter = actual_opt
endif
endwhile
let s:C_If0_Counter = s:C_If0_Counter+1
silent exe ":".save_line
"
if a:mode=='a'
let zz= "\n#if 0 ".s:C_Com1." ----- #if 0 : ".s:C_If0_Txt.s:C_If0_Counter." ----- ".s:C_Com2."\n"
let zz= zz."\n#endif ".s:C_Com1." ----- #if 0 : ".s:C_If0_Txt.s:C_If0_Counter." ----- ".s:C_Com2."\n\n"
put =zz
if v:version >= 700
normal 4k
endif
endif
if a:mode=='v'
let zz= "\n#if 0 ".s:C_Com1." ----- #if 0 : ".s:C_If0_Txt.s:C_If0_Counter." ----- ".s:C_Com2."\n"
:'<put! =zz
let zz= "#endif ".s:C_Com1." ----- #if 0 : ".s:C_If0_Txt.s:C_If0_Counter." ----- ".s:C_Com2."\n\n"
:'>put =zz
:normal '<
endif
endfunction " ---------- end of function C_PPIf0 ----------
"
"------------------------------------------------------------------------------
" C_PPIf0Remove : remove #if 0 .. #endif {{{1
"------------------------------------------------------------------------------
function! C_PPIf0Remove ()
let frstline = searchpair( '^\s*#if\s\+0', '', '^\s*#endif\>.\+\<If0Label_', 'bn' )
if frstline<=0
echohl WarningMsg | echo 'no #if 0 ... #endif found or cursor not inside such a directive'| echohl None
return
endif
let lastline = searchpair( '^\s*#if\s\+0', '', '^\s*#endif\>.\+\<If0Label_', 'n' )
if lastline<=0
echohl WarningMsg | echo 'no #if 0 ... #endif found or cursor not inside such a directive'| echohl None
return
endif
let actualnumber1 = matchstr( getline(frstline), s:C_If0_Txt."\\d\\+" )
let actualnumber2 = matchstr( getline(lastline), s:C_If0_Txt."\\d\\+" )
if actualnumber1 != actualnumber2
echohl WarningMsg | echo 'lines '.frstline.', '.lastline.': comment tags do not match'| echohl None
return
endif
silent exe ':'.lastline.','.lastline.'d'
silent exe ':'.frstline.','.frstline.'d'
endfunction " ---------- end of function C_PPIf0Remove ----------
"
"-------------------------------------------------------------------------------
" C_LegalizeName : replace non-word characters by underscores
" - multiple whitespaces
" - multiple non-word characters
" - multiple underscores
"-------------------------------------------------------------------------------
function! C_LegalizeName ( name )
let identifier = substitute( a:name, '\s\+', '_', 'g' )
let identifier = substitute( identifier, '\W\+', '_', 'g' )
let identifier = substitute( identifier, '_\+', '_', 'g' )
return identifier
endfunction " ---------- end of function C_LegalizeName ----------
"------------------------------------------------------------------------------
" C_CodeSnippet : read / edit code snippet {{{1
"------------------------------------------------------------------------------
function! C_CodeSnippet(mode)
if isdirectory(s:C_CodeSnippets)
"
" read snippet file, put content below current line and indent
"
if a:mode == "r"
if has("gui_running")
let l:snippetfile=browse(0,"read a code snippet",s:C_CodeSnippets,"")
else
let l:snippetfile=input("read snippet ", s:C_CodeSnippets, "file" )
end
if filereadable(l:snippetfile)
let linesread= line("$")
let l:old_cpoptions = &cpoptions " Prevent the alternate buffer from being set to this files
setlocal cpoptions-=a
:execute "read ".l:snippetfile
let &cpoptions = l:old_cpoptions " restore previous options
let linesread= line("$")-linesread-1
if linesread>=0 && match( l:snippetfile, '\.\(ni\|noindent\)$' ) < 0
endif
endif
if line(".")==2 && getline(1)=~"^$"
silent exe ":1,1d"
endif
endif
"
" update current buffer / split window / edit snippet file
"
if a:mode == "e"
if has("gui_running")
let l:snippetfile = browse(0,"edit a code snippet",s:C_CodeSnippets,"")
else
let l:snippetfile=input("edit snippet ", s:C_CodeSnippets, "file" )
end
if l:snippetfile != ""
:execute "update! | split | edit ".l:snippetfile
endif
endif
"
" write whole buffer into snippet file
"
if a:mode == "w" || a:mode == "wv"
if has("gui_running")
let l:snippetfile = browse(0,"edit a code snippet",s:C_CodeSnippets,"")
else
let l:snippetfile=input("edit snippet ", s:C_CodeSnippets, "file" )
end
if l:snippetfile != ""
if filereadable(l:snippetfile)
if confirm("File ".l:snippetfile." exists ! Overwrite ? ", "&Cancel\n&No\n&Yes") != 3
return
endif
endif
if a:mode == "w"
:execute ":write! ".l:snippetfile
else
:execute ":*write! ".l:snippetfile
end
endif
endif
else
echo "code snippet directory ".s:C_CodeSnippets." does not exist (please create it)"
endif
endfunction " ---------- end of function C_CodeSnippets ----------
"
"------------------------------------------------------------------------------
" C_CodeFor : for (idiom) {{{1
"------------------------------------------------------------------------------
function! C_CodeFor( direction, mode )
if a:direction=="up"
let string = C_Input( " loop var. [ start [ end [ incr. ]]] : ", "" )
else
let string = C_Input( " loop var. [ start [ end [ decr. ]]] : ", "" )
endif
let pos = 0
let jmp = 0
if string != ""
"
" use internal formatting to avoid conficts when using == below
let equalprg_save = &equalprg
set equalprg=
"
" loop variable
let loopvar = matchstr( string, '\S\+\s*', pos )
let pos = pos + strlen(loopvar)
let loopvar = substitute( loopvar, '\s*$', "", "" )
"
" start value
let startval = matchstr( string, '\S\+\s*', pos )
let pos = pos + strlen(startval)
let startval = substitute( startval, '\s*$', "", "" )
" end value
let endval = matchstr( string, '\S\+\s*', pos )
let pos = pos + strlen(endval)
let endval = substitute( endval, '\s*$', "", "" )
" increment
let incval = matchstr( string, '\S\+\s*', pos )
let pos = pos + strlen(incval)
let incval = substitute( incval, '\s*$', "", "" )
if incval==""
let incval = '1'
let jmp = 10
endif
if a:direction=="up"
if endval==""
let endval = 'n'
let jmp = 7
endif
if startval==""
let startval = '0'
let jmp = 4
endif
let zz= "for ( ".loopvar." = ".startval."; ".loopvar." < ".endval."; ".loopvar." += ".incval." )"
else
if endval==""
let endval = '0'
let jmp = 7
endif
if startval==""
let startval = 'n-1'
let jmp = 4
endif
let zz= "for ( ".loopvar." = ".startval."; ".loopvar." >= ".endval."; ".loopvar." -= ".incval." )"
endif
" ----- normal mode ----------------
if a:mode=="a"
put =zz
normal 2==
if jmp!=0
exe "normal ".jmp."Wh"
else
exe 'normal $'
endif
endif
" ----- visual mode ----------------
if a:mode=="v"
let zz = zz." {"
:'<put! =zz
let zz= "}"
:'>put =zz
:'<-1
:exe "normal =".(line("'>")-line(".")+3)."+"
endif
"
" restore formatter programm
let &equalprg = equalprg_save
"
endif
endfunction " ---------- end of function C_CodeFor ----------
"
"------------------------------------------------------------------------------
" Handle prototypes {{{1
"------------------------------------------------------------------------------
"
let s:C_Prototype = []
let s:C_PrototypeShow = []
let s:C_PrototypeCounter = 0
let s:C_CComment = '\/\*.\{-}\*\/\s*' " C comment with trailing whitespaces
" '.\{-}' any character, non-greedy
let s:C_CppComment = '\/\/.*$' " C++ comment
"
"------------------------------------------------------------------------------
" C_ProtoPick : pick up (normal/visual) {{{1
"------------------------------------------------------------------------------
function! C_ProtoPick (mode)
if a:mode=="n"
" --- normal mode -------------------
let pos1 = line(".")
let pos2 = pos1
else
" --- visual mode -------------------
let pos1 = line("'<")
let pos2 = line("'>")
endif
"
" remove C/C++-comments, leading and trailing whitespaces, squeeze whitespaces
"
let prototyp = ''
let linenumber = pos1
while linenumber <= pos2
let newline = getline(linenumber)
let newline = substitute( newline, s:C_CppComment, "", "" ) " remove C++ comment
let prototyp = prototyp." ".newline
let linenumber = linenumber+1
endwhile
"
let prototyp = substitute( prototyp, '^\s\+', "", "" ) " remove leading whitespaces
let prototyp = substitute( prototyp, s:C_CComment, "", "g" ) " remove (multiline) C comments
let prototyp = substitute( prototyp, '\s\+', " ", "g" ) " squeeze whitespaces
let prototyp = substitute( prototyp, '\s\+$', "", "" ) " remove trailing whitespaces
"
" remove template keyword
"
let prototyp = substitute( prototyp, '^template\s*<\s*class \w\+\s*>\s*', "", "" )
"
let parlist = stridx( prototyp, '(' ) " start of the parameter list
let part1 = strpart( prototyp, 0, parlist )
let part2 = strpart( prototyp, parlist )
"
" remove the scope res. operator
"
let part1 = substitute( part1, '<\s*\w\+\s*>', "", "g" )
let part1 = substitute( part1, '\<std\s*::', 'std##', 'g' ) " remove the scope res. operator
let part1 = substitute( part1, '\<\h\w*\s*::', '', 'g' ) " remove the scope res. operator
let part1 = substitute( part1, '\<std##', 'std::', 'g' ) " remove the scope res. operator
let prototyp = part1.part2
"
" remove trailing parts of the function body; add semicolon
"
let prototyp = substitute( prototyp, '\s*{.*$', "", "" )
let prototyp = prototyp.";\n"
"
" bookkeeping
"
let s:C_PrototypeCounter += 1
let s:C_Prototype += [prototyp]
let s:C_PrototypeShow += ["(".s:C_PrototypeCounter.") ".bufname("%")." # ".prototyp]
"
echo s:C_PrototypeCounter.' prototype(s)'
"
endfunction " --------- end of function C_ProtoPick ----------
"
"------------------------------------------------------------------------------
" C_ProtoInsert : insert {{{1
"------------------------------------------------------------------------------
function! C_ProtoInsert ()
"
" use internal formatting to avoid conficts when using == below
let equalprg_save = &equalprg
set equalprg=
"
if s:C_PrototypeCounter > 0
for protytype in s:C_Prototype
put =protytype
endfor
let lines = s:C_PrototypeCounter - 1
silent exe "normal =".lines."-"
call C_ProtoClear()
else
echo "currently no prototypes available"
endif
"
" restore formatter programm
let &equalprg = equalprg_save
"
endfunction " --------- end of function C_ProtoInsert ----------
"
"------------------------------------------------------------------------------
" C_ProtoClear : clear {{{1
"------------------------------------------------------------------------------
function! C_ProtoClear ()
if s:C_PrototypeCounter > 0
let s:C_Prototype = []
let s:C_PrototypeShow = []
let s:C_PrototypeCounter = 0
echo 'prototypes deleted'
else
echo "currently no prototypes available"
endif
endfunction " --------- end of function C_ProtoClear ----------
"
"------------------------------------------------------------------------------
" C_ProtoShow : show {{{1
"------------------------------------------------------------------------------
function! C_ProtoShow ()
if s:C_PrototypeCounter > 0
for protytype in s:C_PrototypeShow
echo protytype
endfor
else
echo "currently no prototypes available"
endif
endfunction " --------- end of function C_ProtoShow ----------
"
"------------------------------------------------------------------------------
" C_EscapeBlanks : C_EscapeBlanks {{{1
"------------------------------------------------------------------------------
function! C_EscapeBlanks (arg)
return substitute( a:arg, " ", "\\ ", "g" )
endfunction " --------- end of function C_EscapeBlanks ----------
"
"------------------------------------------------------------------------------
" C_Compile : C_Compile {{{1
"------------------------------------------------------------------------------
" The standard make program 'make' called by vim is set to the C or C++ compiler
" and reset after the compilation (set makeprg=... ).
" The errorfile created by the compiler will now be read by gvim and
" the commands cl, cp, cn, ... can be used.
"------------------------------------------------------------------------------
function! C_Compile ()
let l:currentbuffer = bufname("%")
let s:C_HlMessage = ""
exe ":cclose"
let Sou = expand("%:p") " name of the file in the current buffer
let Obj = expand("%:p:r").s:C_ObjExtension " name of the object
let SouEsc= escape( Sou, s:escfilename )
let ObjEsc= escape( Obj, s:escfilename )
" update : write source file if necessary
exe ":update"
" compilation if object does not exist or object exists and is older then the source
if !filereadable(Obj) || (filereadable(Obj) && (getftime(Obj) < getftime(Sou)))
" &makeprg can be a string containing blanks
let makeprg_saved='"'.&makeprg.'"'
if expand("%:e") == s:C_CExtension
exe "set makeprg=".s:C_CCompiler
else
exe "set makeprg=".s:C_CplusCompiler
endif
"
" COMPILATION
"
if s:MSWIN
exe "make ".s:C_CFlags." \"".SouEsc."\" -o \"".ObjEsc."\""
else
exe "make ".s:C_CFlags." ".SouEsc." -o ".ObjEsc
endif
exe "set makeprg=".makeprg_saved
"
" open error window if necessary
exe ":botright cwindow"
else
let s:C_HlMessage = " '".Obj."' is up to date "
endif
endfunction " ---------- end of function C_Compile ----------
"
"------------------------------------------------------------------------------
" C_Link : C_Link {{{1
"------------------------------------------------------------------------------
" The standard make program which is used by gvim is set to the compiler
" (for linking) and reset after linking.
"
" calls: C_Compile
"------------------------------------------------------------------------------
function! C_Link ()
call C_Compile()
let s:C_HlMessage = ""
let Sou = expand("%:p") " name of the file in the current buffer
let Obj = expand("%:p:r").s:C_ObjExtension " name of the object file
let Exe = expand("%:p:r").s:C_ExeExtension " name of the executable
let ObjEsc= escape( Obj, s:escfilename )
let ExeEsc= escape( Exe, s:escfilename )
" no linkage if:
" executable exists
" object exists
" source exists
" executable newer then object
" object newer then source
if filereadable(Exe) &&
\ filereadable(Obj) &&
\ filereadable(Sou) &&
\ (getftime(Exe) >= getftime(Obj)) &&
\ (getftime(Obj) >= getftime(Sou))
let s:C_HlMessage = " '".Exe."' is up to date "
return
endif
" linkage if:
" object exists
" source exists
" object newer then source
if filereadable(Obj) && (getftime(Obj) >= getftime(Sou))
let makeprg_saved='"'.&makeprg.'"'
if expand("%:e") == s:C_CExtension
exe "set makeprg=".s:C_CCompiler
else
exe "set makeprg=".s:C_CplusCompiler
endif
let v:statusmsg=""
if s:MSWIN
silent exe "make ".s:C_LFlags." ".s:C_Libs." -o \"".ExeEsc."\" \"".ObjEsc."\""
else
silent exe "make ".s:C_LFlags." ".s:C_Libs." -o ".ExeEsc." ".ObjEsc
endif
if v:statusmsg != ""
let s:C_HlMessage = v:statusmsg
endif
exe "set makeprg=".makeprg_saved
endif
endfunction " ---------- end of function C_Link ----------
"
"------------------------------------------------------------------------------
" C_Run : C_Run {{{1
" calls: C_Link
"------------------------------------------------------------------------------
"
let s:C_OutputBufferName = "C-Output"
let s:C_OutputBufferNumber = -1
"
function! C_Run ()
"
let Sou = expand("%:p") " name of the source file
let Obj = expand("%:p:r").s:C_ObjExtension " name of the object file
let Exe = expand("%:p:r").s:C_ExeExtension " name of the executable
let ExeEsc = escape( Exe, s:escfilename ) " name of the executable, escaped
"
let l:arguments = exists("b:C_CmdLineArgs") ? b:C_CmdLineArgs : ''
"
let l:currentbuffer = bufname("%")
"
"==============================================================================
" run : run from the vim command line
"==============================================================================
if s:C_OutputGvim == "vim"
"
silent call C_Link()
"
if executable(Exe) && getftime(Exe) >= getftime(Obj) && getftime(Obj) >= getftime(Sou)
if s:MSWIN
exe "!\"".ExeEsc."\" ".l:arguments
else
exe "!".ExeEsc." ".l:arguments
endif
else
echomsg "file ".Exe." does not exist / is not executable"
endif
endif
"
"==============================================================================
" run : redirect output to an output buffer
"==============================================================================
if s:C_OutputGvim == "buffer"
let l:currentbuffernr = bufnr("%")
"
silent call C_Link()
"
if l:currentbuffer == bufname("%")
"
"
if bufloaded(s:C_OutputBufferName) != 0 && bufwinnr(s:C_OutputBufferNumber)!=-1
exe bufwinnr(s:C_OutputBufferNumber) . "wincmd w"
" buffer number may have changed, e.g. after a 'save as'
if bufnr("%") != s:C_OutputBufferNumber
let s:C_OutputBufferNumber = bufnr(s:C_OutputBufferName)
exe ":bn ".s:C_OutputBufferNumber
endif
else
silent exe ":new ".s:C_OutputBufferName
let s:C_OutputBufferNumber=bufnr("%")
setlocal buftype=nofile
setlocal noswapfile
setlocal syntax=none
setlocal bufhidden=delete
setlocal tabstop=8
endif
"
" run programm
"
setlocal modifiable
if executable(Exe) && getftime(Exe) >= getftime(Obj) && getftime(Obj) >= getftime(Sou)
if s:MSWIN
exe "%!\"".ExeEsc."\" ".l:arguments
else
exe "%!".ExeEsc." ".l:arguments
endif
endif
setlocal nomodifiable
"
if winheight(winnr()) >= line("$")
exe bufwinnr(l:currentbuffernr) . "wincmd w"
endif
"
endif
endif
"
"==============================================================================
" run : run in a detached xterm (not available for MS Windows)
"==============================================================================
if s:C_OutputGvim == "xterm"
"
silent call C_Link()
"
if executable(Exe) && getftime(Exe) >= getftime(Obj) && getftime(Obj) >= getftime(Sou)
if s:MSWIN
exe "!\"".ExeEsc."\" ".l:arguments
else
silent exe '!xterm -title '.ExeEsc.' '.s:C_XtermDefaults.' -e '.s:C_Wrapper.' '.ExeEsc.' '.l:arguments.' &'
:redraw!
endif
endif
endif
endfunction " ---------- end of function C_Run ----------
"
"------------------------------------------------------------------------------
" C_Arguments : Arguments for the executable {{{1
"------------------------------------------------------------------------------
function! C_Arguments ()
let Exe = expand("%:r").s:C_ExeExtension
if Exe == ""
redraw
echohl WarningMsg | echo " no file name " | echohl None
return
endif
let prompt = 'command line arguments for "'.Exe.'" : '
if exists("b:C_CmdLineArgs")
let b:C_CmdLineArgs= C_Input( prompt, b:C_CmdLineArgs )
else
let b:C_CmdLineArgs= C_Input( prompt , "" )
endif
endfunction " ---------- end of function C_Arguments ----------
"
"----------------------------------------------------------------------
" C_Toggle_Gvim_Xterm : change output destination {{{1
"----------------------------------------------------------------------
function! C_Toggle_Gvim_Xterm ()
if s:C_OutputGvim == "vim"
if has("gui_running")
exe "aunmenu <silent> ".s:C_Root.'&Run.&output:\ VIM->buffer->xterm'
exe "amenu <silent> ".s:C_Root.'&Run.&output:\ BUFFER->xterm->vim <C-C>:call C_Toggle_Gvim_Xterm()<CR><CR>'
endif
let s:C_OutputGvim = "buffer"
else
if s:C_OutputGvim == "buffer"
if has("gui_running")
exe "aunmenu <silent> ".s:C_Root.'&Run.&output:\ BUFFER->xterm->vim'
if (!s:MSWIN)
exe "amenu <silent> ".s:C_Root.'&Run.&output:\ XTERM->vim->buffer <C-C>:call C_Toggle_Gvim_Xterm()<CR><CR>'
else
exe "amenu <silent> ".s:C_Root.'&Run.&output:\ VIM->buffer->xterm <C-C>:call C_Toggle_Gvim_Xterm()<CR><CR>'
endif
endif
if (!s:MSWIN) && (s:C_Display != '')
let s:C_OutputGvim = "xterm"
else
let s:C_OutputGvim = "vim"
end
else
" ---------- output : xterm -> gvim
if has("gui_running")
exe "aunmenu <silent> ".s:C_Root.'&Run.&output:\ XTERM->vim->buffer'
exe "amenu <silent> ".s:C_Root.'&Run.&output:\ VIM->buffer->xterm <C-C>:call C_Toggle_Gvim_Xterm()<CR><CR>'
endif
let s:C_OutputGvim = "vim"
endif
endif
echomsg "output destination is '".s:C_OutputGvim."'"
endfunction " ---------- end of function C_Toggle_Gvim_Xterm ----------
"
"------------------------------------------------------------------------------
" C_XtermSize : xterm geometry {{{1
"------------------------------------------------------------------------------
function! C_XtermSize ()
let regex = '-geometry\s\+\d\+x\d\+'
let geom = matchstr( s:C_XtermDefaults, regex )
let geom = matchstr( geom, '\d\+x\d\+' )
let geom = substitute( geom, 'x', ' ', "" )
let answer= C_Input(" xterm size (COLUMNS LINES) : ", geom )
while match(answer, '^\s*\d\+\s\+\d\+\s*$' ) < 0
let answer= C_Input(" + xterm size (COLUMNS LINES) : ", geom )
endwhile
let answer = substitute( answer, '\s\+', "x", "" ) " replace inner whitespaces
let s:C_XtermDefaults = substitute( s:C_XtermDefaults, regex, "-geometry ".answer , "" )
endfunction " ---------- end of function C_XtermSize ----------
"
"------------------------------------------------------------------------------
" C_MakeArguments : run make(1) {{{1
"------------------------------------------------------------------------------
let s:C_MakeCmdLineArgs = "" " command line arguments for Run-make; initially empty
function! C_MakeArguments ()
let s:C_MakeCmdLineArgs= C_Input("make command line arguments : ",s:C_MakeCmdLineArgs)
endfunction " ---------- end of function C_MakeArguments ----------
"
function! C_Make()
" update : write source file if necessary
exe ":update"
" run make
exe ":!make ".s:C_MakeCmdLineArgs
endfunction " ---------- end of function C_Make ----------
"
"------------------------------------------------------------------------------
" C_SplintArguments : splint command line arguments {{{1
"------------------------------------------------------------------------------
function! C_SplintArguments ()
if s:C_SplintIsExecutable==0
let s:C_HlMessage = ' Splint is not executable or not installed! '
else
let prompt = 'Splint command line arguments for "'.expand("%").'" : '
if exists("b:C_SplintCmdLineArgs")
let b:C_SplintCmdLineArgs= C_Input( prompt, b:C_SplintCmdLineArgs )
else
let b:C_SplintCmdLineArgs= C_Input( prompt , "" )
endif
endif
endfunction " ---------- end of function C_SplintArguments ----------
"
"------------------------------------------------------------------------------
" C_SplintCheck : run splint(1) {{{1
"------------------------------------------------------------------------------
function! C_SplintCheck ()
if s:C_SplintIsExecutable==0
let s:C_HlMessage = ' Splint is not executable or not installed! '
return
endif
let l:currentbuffer=bufname("%")
if &filetype != "c" && &filetype != "cpp"
let s:C_HlMessage = ' "'.l:currentbuffer.'" seems not to be a C/C++ file '
return
endif
let s:C_HlMessage = ""
exe ":cclose"
silent exe ":update"
let makeprg_saved='"'.&makeprg.'"'
" Windows seems to need this:
if s:MSWIN
:compiler splint
endif
:set makeprg=splint
"
let l:arguments = exists("b:C_SplintCmdLineArgs") ? b:C_SplintCmdLineArgs : ' '
silent exe "make ".l:arguments." ".escape(l:currentbuffer,s:escfilename)
exe "set makeprg=".makeprg_saved
exe ":botright cwindow"
"
" message in case of success
"
if l:currentbuffer == bufname("%")
let s:C_HlMessage = " Splint --- no warnings for : ".l:currentbuffer
endif
endfunction " ---------- end of function C_SplintCheck ----------
"
"------------------------------------------------------------------------------
" C_CodeCheckArguments : CodeCheck command line arguments {{{1
"------------------------------------------------------------------------------
function! C_CodeCheckArguments ()
if s:C_CodeCheckIsExecutable==0
let s:C_HlMessage = ' CodeCheck is not executable or not installed! '
else
let prompt = 'CodeCheck command line arguments for "'.expand("%").'" : '
if exists("b:C_CodeCheckCmdLineArgs")
let b:C_CodeCheckCmdLineArgs= C_Input( prompt, b:C_CodeCheckCmdLineArgs )
else
let b:C_CodeCheckCmdLineArgs= C_Input( prompt , s:C_CodeCheckOptions )
endif
endif
endfunction " ---------- end of function C_CodeCheckArguments ----------
"
"------------------------------------------------------------------------------
" C_CodeCheck : run CodeCheck {{{1
"------------------------------------------------------------------------------
function! C_CodeCheck ()
if s:C_CodeCheckIsExecutable==0
let s:C_HlMessage = ' CodeCheck is not executable or not installed! '
return
endif
let l:currentbuffer=bufname("%")
if &filetype != "c" && &filetype != "cpp"
let s:C_HlMessage = ' "'.l:currentbuffer.'" seems not to be a C/C++ file '
return
endif
let s:C_HlMessage = ""
exe ":cclose"
silent exe ":update"
let makeprg_saved='"'.&makeprg.'"'
exe "set makeprg=".s:C_CodeCheckExeName
"
" match the splint error messages (quickfix commands)
" ignore any lines that didn't match one of the patterns
"
:setlocal errorformat=%f(%l)%m
"
let l:arguments = exists("b:C_CodeCheckCmdLineArgs") ? b:C_CodeCheckCmdLineArgs : ""
if l:arguments == ""
let l:arguments = s:C_CodeCheckOptions
endif
exe ":make ".l:arguments." ".escape( l:currentbuffer, s:escfilename )
exe ':setlocal errorformat='
exe "set makeprg=".makeprg_saved
exe ":botright cwindow"
"
" message in case of success
"
if l:currentbuffer == bufname("%")
let s:C_HlMessage = " CodeCheck --- no warnings for : ".l:currentbuffer
endif
endfunction " ---------- end of function C_CodeCheck ----------
"
"------------------------------------------------------------------------------
" C_Indent : run indent(1) {{{1
"------------------------------------------------------------------------------
"
function! C_Indent ( mode )
if !executable("indent")
let s:C_HlMessage = ' indent is not executable or not installed! '
return
endif
let l:currentbuffer=bufname("%")
if &filetype != "c" && &filetype != "cpp"
let s:C_HlMessage = ' "'.l:currentbuffer.'" seems not to be a C/C++ file '
return
endif
let s:C_HlMessage = ""
if a:mode=="a"
if C_Input("indent whole file [y/n/Esc] : ", "y" ) != "y"
return
endif
exe ":update"
if has("MSWIN")
silent exe ":%!indent"
else
silent exe ":%!indent 2> ".s:C_IndentErrorLog
endif
let s:C_HlMessage = ' File "'.l:currentbuffer.'" reformatted.'
endif
if a:mode=="v"
if has("MSWIN")
silent exe ":'<,'>!indent"
else
silent exe ":'<,'>!indent 2> ".s:C_IndentErrorLog
endif
let s:C_HlMessage = ' File "'.l:currentbuffer.'" (lines '.line("'<").'-'.line("'>").') reformatted. '
endif
if v:shell_error != 0
let s:C_HlMessage = ' Indent reported an error when processing file "'.l:currentbuffer.'". '
endif
endfunction " ---------- end of function C_Indent ----------
"
"------------------------------------------------------------------------------
" C_HlMessage : indent message {{{1
"------------------------------------------------------------------------------
function! C_HlMessage ()
echohl Search
echo s:C_HlMessage
echohl None
endfunction " ---------- end of function C_HlMessage ----------
"
"------------------------------------------------------------------------------
" C_Settings : settings {{{1
"------------------------------------------------------------------------------
function! C_Settings ()
let txt = " C/C++-Support settings\n\n"
let txt = txt.' author : "'.s:C_Macro['|AUTHOR|']."\"\n"
let txt = txt.' initials : "'.s:C_Macro['|AUTHORREF|']."\"\n"
let txt = txt.' email : "'.s:C_Macro['|EMAIL|']."\"\n"
let txt = txt.' company : "'.s:C_Macro['|COMPANY|']."\"\n"
let txt = txt.' project : "'.s:C_Macro['|PROJECT|']."\"\n"
let txt = txt.' copyright holder : "'.s:C_Macro['|COPYRIGHTHOLDER|']."\"\n"
let txt = txt.' C / C++ compiler : '.s:C_CCompiler.' / '.s:C_CplusCompiler."\n"
let txt = txt.' C file extension : "'.s:C_CExtension.'" (everything else is C++)'."\n"
let txt = txt.' extension for objects : "'.s:C_ObjExtension."\"\n"
let txt = txt.'extension for executables : "'.s:C_ExeExtension."\"\n"
let txt = txt.' compiler flags : "'.s:C_CFlags."\"\n"
let txt = txt.' linker flags : "'.s:C_LFlags."\"\n"
let txt = txt.' libraries : "'.s:C_Libs."\"\n"
let txt = txt.' code snippet directory : '.s:C_CodeSnippets."\n"
if s:installation == 'system'
let txt = txt.'global template directory : '.s:C_GlobalTemplateDir."\n"
if filereadable( s:C_LocalTemplateFile )
let txt = txt.' local template directory : '.s:C_LocalTemplateDir."\n"
endif
else
let txt = txt.' local template directory : '.s:C_GlobalTemplateDir."\n"
endif
if !s:MSWIN
let txt = txt.' xterm defaults : '.s:C_XtermDefaults."\n"
endif
" ----- dictionaries ------------------------
if g:C_Dictionary_File != ""
let ausgabe= substitute( g:C_Dictionary_File, ",", ",\n + ", "g" )
let txt = txt." dictionary file(s) : ".ausgabe."\n"
endif
let txt = txt.' current output dest. : '.s:C_OutputGvim."\n"
" ----- splint ------------------------------
if s:C_SplintIsExecutable==1
if exists("b:C_SplintCmdLineArgs")
let ausgabe = b:C_SplintCmdLineArgs
else
let ausgabe = ""
endif
let txt = txt." splint options(s) : ".ausgabe."\n"
endif
" ----- code check --------------------------
if s:C_CodeCheckIsExecutable==1
if exists("b:C_CodeCheckCmdLineArgs")
let ausgabe = b:C_CodeCheckCmdLineArgs
else
let ausgabe = s:C_CodeCheckOptions
endif
let txt = txt."CodeCheck (TM) options(s) : ".ausgabe."\n"
endif
let txt = txt."\n"
let txt = txt."__________________________________________________________________________\n"
let txt = txt." C/C++-Support, Version ".g:C_Version." / Dr.-Ing. Fritz Mehner / mehner@fh-swf.de\n\n"
echo txt
endfunction " ---------- end of function C_Settings ----------
"
"------------------------------------------------------------------------------
" C_Hardcopy : hardcopy {{{1
" MSWIN : a printer dialog is displayed
" other : print PostScript to file
"------------------------------------------------------------------------------
function! C_Hardcopy (arg1)
let Sou = expand("%")
if Sou == ""
redraw
echohl WarningMsg | echo " no file name " | echohl None
return
endif
let Sou = escape(Sou,s:escfilename) " name of the file in the current buffer
let old_printheader=&printheader
exe ':set printheader='.s:C_Printheader
" ----- normal mode ----------------
if a:arg1=="n"
silent exe "hardcopy > ".Sou.".ps"
if !s:MSWIN
echo "file \"".Sou."\" printed to \"".Sou.".ps\""
endif
endif
" ----- visual mode ----------------
if a:arg1=="v"
silent exe "*hardcopy > ".Sou.".ps"
if !s:MSWIN
echo "file \"".Sou."\" (lines ".line("'<")."-".line("'>").") printed to \"".Sou.".ps\""
endif
endif
exe ':set printheader='.escape( old_printheader, ' %' )
endfunction " ---------- end of function C_Hardcopy ----------
"
"------------------------------------------------------------------------------
" C_HelpCsupport : help csupport {{{1
"------------------------------------------------------------------------------
function! C_HelpCsupport ()
try
:help csupport
catch
exe ':helptags '.s:plugin_dir.'doc'
:help csupport
endtry
endfunction " ---------- end of function C_HelpCsupport ----------
"------------------------------------------------------------------------------
" C_CreateGuiMenus {{{1
"------------------------------------------------------------------------------
let s:C_MenuVisible = 0 " state variable controlling the C-menus
"
function! C_CreateGuiMenus ()
if s:C_MenuVisible != 1
aunmenu <silent> &Tools.Load\ C\ Support
amenu <silent> 40.1000 &Tools.-SEP100- :
amenu <silent> 40.1030 &Tools.Unload\ C\ Support <C-C>:call C_RemoveGuiMenus()<CR>
call C_InitMenus()
let s:C_MenuVisible = 1
endif
endfunction " ---------- end of function C_CreateGuiMenus ----------
"------------------------------------------------------------------------------
" C_ToolMenu {{{1
"------------------------------------------------------------------------------
function! C_ToolMenu ()
amenu <silent> 40.1000 &Tools.-SEP100- :
amenu <silent> 40.1030 &Tools.Load\ C\ Support <C-C>:call C_CreateGuiMenus()<CR>
endfunction " ---------- end of function C_ToolMenu ----------
"------------------------------------------------------------------------------
" C_RemoveGuiMenus {{{1
"------------------------------------------------------------------------------
function! C_RemoveGuiMenus ()
if s:C_MenuVisible == 1
if s:C_Root == ""
aunmenu <silent> Comments
aunmenu <silent> Statements
aunmenu <silent> Preprocessor
aunmenu <silent> Idioms
aunmenu <silent> Snippets
aunmenu <silent> C++
aunmenu <silent> Run
else
exe "aunmenu <silent> ".s:C_Root
endif
"
aunmenu <silent> &Tools.Unload\ C\ Support
call C_ToolMenu()
"
let s:C_MenuVisible = 0
endif
endfunction " ---------- end of function C_RemoveGuiMenus ----------
"------------------------------------------------------------------------------
" C_RebuildTemplates
" rebuild commands and the menu from the (changed) template file
"------------------------------------------------------------------------------
function! C_RebuildTemplates ()
let s:C_Template = {}
let s:C_FileVisited = []
call C_ReadTemplates(s:C_GlobalTemplateFile)
echomsg "templates rebuilt from '".s:C_GlobalTemplateFile."'"
"
if s:installation == 'system' && filereadable( s:C_LocalTemplateFile )
call C_ReadTemplates( s:C_LocalTemplateFile )
echomsg " and from '".s:C_LocalTemplateFile."'"
endif
endfunction " ---------- end of function C_RebuildTemplates ----------
"------------------------------------------------------------------------------
" C_ReadTemplates
" read the template file(s), build the macro and the template dictionary
"
"------------------------------------------------------------------------------
function! C_ReadTemplates ( templatefile )
if !filereadable( a:templatefile )
echohl WarningMsg
echomsg "C/C++ template file '".a:templatefile."' does not exist or is not readable"
echohl None
return
endif
let skipmacros = 0
let s:C_FileVisited += [a:templatefile]
"------------------------------------------------------------------------------
" read template file, start with an empty template dictionary
"------------------------------------------------------------------------------
let item = ''
for line in readfile( a:templatefile )
" if not a comment :
if line !~ '^\$'
"
" macros and file includes
"
let string = matchlist( line, s:C_MacroLineRegex )
if !empty(string) && skipmacros == 0
let key = '|'.string[1].'|'
let val = string[2]
let val = substitute( val, '\s\+$', '', '' )
let val = substitute( val, "[\"\']$", '', '' )
let val = substitute( val, "^[\"\']", '', '' )
"
if key == '|includefile|' && count( s:C_FileVisited, val ) == 0
let path = fnamemodify( a:templatefile, ":p:h" )
call C_ReadTemplates( path.'/'.val ) " recursive call
else
let s:C_Macro[key] = val
endif
continue " next line
endif
"
" template header
"
let name = matchstr( line, s:C_TemplateLineRegex )
"
if name != ''
let part = split( name, '\s*==\s*')
let item = part[0]
if has_key( s:C_Template, item ) && s:C_TemplateOverwrittenMsg == 'yes'
echomsg "existing C/C++ template '".item."' overwritten"
endif
let s:C_Template[item] = ''
let skipmacros = 1
"
let s:C_Attribute[item] = 'below'
if has_key( s:Attribute, get( part, 1, 'NONE' ) )
let s:C_Attribute[item] = part[1]
endif
else
if item != ''
let s:C_Template[item] = s:C_Template[item].line."\n"
endif
endif
endif
endfor
call C_SetSmallCommentStyle()
endfunction " ---------- end of function C_ReadTemplates ----------
"------------------------------------------------------------------------------
" C_InsertTemplate
" insert a template from the template dictionary
" do macro expansion
"------------------------------------------------------------------------------
function! C_InsertTemplate ( key, ... )
if !has_key( s:C_Template, a:key )
echomsg "Template '".a:key."' not found. Please check your template file in '".s:C_GlobalTemplateDir."'"
return
endif
"------------------------------------------------------------------------------
" insert the user macros
"------------------------------------------------------------------------------
" use internal formatting to avoid conficts when using == below
"
let equalprg_save = &equalprg
set equalprg=
let mode = s:C_Attribute[a:key]
" remove <SPLIT> and insert the complete macro
"
if a:0 == 0
let val = C_ExpandUserMacros (a:key)
if val == ""
return
endif
let val = C_ExpandSingleMacro( val, '<SPLIT>', '' )
if mode == 'below'
let pos1 = line(".")+1
put =val
let pos2 = line(".")
" proper indenting
exe ":".pos1
let ins = pos2-pos1+1
exe "normal ".ins."=="
endif
if mode == 'above'
let pos1 = line(".")
put! =val
let pos2 = line(".")
" proper indenting
exe ":".pos1
let ins = pos2-pos1+1
exe "normal ".ins."=="
endif
if mode == 'start'
normal gg
let pos1 = 1
put! =val
let pos2 = line(".")
" proper indenting
exe ":".pos1
let ins = pos2-pos1+1
exe "normal ".ins."=="
endif
if mode == 'append'
let pos1 = line(".")
put =val
let pos2 = line(".")-1
exe ":".pos1
:join!
endif
if mode == 'insert'
let val = substitute( val, '\n$', '', '' )
let pos1 = line(".")
let pos2 = pos1 + count( split(val,'\zs'), "\n" )
exe "normal a".val
endif
"
else
"
" ===== visual mode ===============================
"
if a:1 == 'v'
let val = C_ExpandUserMacros (a:key)
if val == ""
return
endif
let part = split( val, '<SPLIT>' )
if len(part) < 2
let part = [ "" ] + part
echomsg 'SPLIT missing in template '.a:key
endif
if mode == 'below'
:'<put! =part[0]
:'>put =part[1]
let pos1 = line("'<") - len(split(part[0], '\n' ))
let pos2 = line("'>") + len(split(part[1], '\n' ))
"" echo part[0] part[1] pos1 pos2
" " proper indenting
exe ":".pos1
let ins = pos2-pos1+1
exe "normal ".ins."=="
endif
"
endif
endif
" restore formatter programm
let &equalprg = equalprg_save
"------------------------------------------------------------------------------
" position the cursor
"------------------------------------------------------------------------------
exe ":".pos1
let mtch = search( '<CURSOR>', "c", pos2 )
if mtch != 0
if matchend( getline(mtch) ,'<CURSOR>') == match( getline(mtch) ,"$" )
normal 8x
:startinsert!
else
normal 8x
:startinsert
endif
else
" to the end of the block; needed for repeated inserts
if mode == 'below'
exe ":".pos2
endif
endif
endfunction " ---------- end of function C_InsertTemplate ----------
"------------------------------------------------------------------------------
" C_ExpandUserMacros
"------------------------------------------------------------------------------
function! C_ExpandUserMacros ( key )
let template = s:C_Template[ a:key ]
let s:C_ExpansionCounter = {} " reset the expansion counter
"------------------------------------------------------------------------------
" renew the predefined macros and expand them
" can be replaced, with e.g. |?DATE|
"------------------------------------------------------------------------------
let s:C_Macro['|BASENAME|'] = toupper(expand("%:t:r"))
let s:C_Macro['|DATE|'] = C_InsertDateAndTime('d')
let s:C_Macro['|FILENAME|'] = expand("%:t")
let s:C_Macro['|PATH|'] = expand("%:p:h")
let s:C_Macro['|SUFFIX|'] = expand("%:e")
let s:C_Macro['|TIME|'] = C_InsertDateAndTime('t')
let s:C_Macro['|YEAR|'] = C_InsertDateAndTime('y')
"------------------------------------------------------------------------------
" look for replacements
"------------------------------------------------------------------------------
while match( template, s:C_ExpansionRegex ) != -1
let macro = matchstr( template, s:C_ExpansionRegex )
let replacement = substitute( macro, '?', '', '' )
let template = substitute( template, macro, replacement, "g" )
let match = matchlist( macro, s:C_ExpansionRegex )
if match[1] != ''
let macroname = '|'.match[1].'|'
"
" notify flag action, if any
let flagaction = ''
if has_key( s:C_MacroFlag, match[2] )
let flagaction = ' (-> '.s:C_MacroFlag[ match[2] ].')'
endif
"
" ask for a replacement
if has_key( s:C_Macro, macroname )
let name = C_Input( match[1].flagaction.' : ', C_ApplyFlag( s:C_Macro[macroname], match[2] ) )
else
let name = C_Input( match[1].flagaction.' : ', '' )
endif
if name == ""
return ""
endif
"
" keep the modified name
let s:C_Macro[macroname] = C_ApplyFlag( name, match[2] )
endif
endwhile
"------------------------------------------------------------------------------
" do the actual macro expansion
" loop over the macros found in the template
"------------------------------------------------------------------------------
while match( template, s:C_NonExpansionRegex ) != -1
let macro = matchstr( template, s:C_NonExpansionRegex )
let match = matchlist( macro, s:C_NonExpansionRegex )
if match[1] != ''
let macroname = '|'.match[1].'|'
if has_key( s:C_Macro, macroname )
"-------------------------------------------------------------------------------
" check for recursion
"-------------------------------------------------------------------------------
if has_key( s:C_ExpansionCounter, macroname )
let s:C_ExpansionCounter[macroname] += 1
else
let s:C_ExpansionCounter[macroname] = 0
endif
if s:C_ExpansionCounter[macroname] >= s:C_ExpansionLimit
echomsg " recursion terminated for recursive macro ".macroname
return template
endif
"-------------------------------------------------------------------------------
" replace
"-------------------------------------------------------------------------------
let replacement = C_ApplyFlag( s:C_Macro[macroname], match[2] )
let template = substitute( template, macro, replacement, "g" )
else
"
" macro not yet defined
let s:C_Macro['|'.match[1].'|'] = ''
endif
endif
endwhile
return template
endfunction " ---------- end of function C_ExpandUserMacros ----------
"------------------------------------------------------------------------------
" C_ApplyFlag
"------------------------------------------------------------------------------
function! C_ApplyFlag ( val, flag )
"
" l : lowercase
if a:flag == ':l'
return tolower(a:val)
end
"
" u : uppercase
if a:flag == ':u'
return toupper(a:val)
end
"
" c : capitalize
if a:flag == ':c'
return toupper(a:val[0]).a:val[1:]
end
"
" L : legalized name
if a:flag == ':L'
return C_LegalizeName(a:val)
end
"
" flag not valid
return a:val
endfunction " ---------- end of function C_ApplyFlag ----------
"
"------------------------------------------------------------------------------
" C_ExpandSingleMacro
"------------------------------------------------------------------------------
function! C_ExpandSingleMacro ( val, macroname, replacement )
return substitute( a:val, escape(a:macroname, '$' ), a:replacement, "g" )
endfunction " ---------- end of function C_ExpandSingleMacro ----------
"------------------------------------------------------------------------------
" C_SetSmallCommentStyle
"------------------------------------------------------------------------------
function! C_SetSmallCommentStyle ()
if has_key( s:C_Template, 'comment.end-of-line-comment' )
if match( s:C_Template['comment.end-of-line-comment'], '^\s*/\*' ) != -1
let s:C_Com1 = '/*' " C-style : comment start
let s:C_Com2 = '*/' " C-style : comment end
else
let s:C_Com1 = '//' " C++style : comment start
let s:C_Com2 = '' " C++style : comment end
endif
endif
endfunction " ---------- end of function C_SetSmallCommentStyle ----------
"------------------------------------------------------------------------------
" C_InsertMacroValue
"------------------------------------------------------------------------------
function! C_InsertMacroValue ( key )
if col(".") > 1
exe 'normal a'.s:C_Macro['|'.a:key.'|']
else
exe 'normal i'.s:C_Macro['|'.a:key.'|']
end
endfunction " ---------- end of function C_InsertMacroValue ----------
"------------------------------------------------------------------------------
" date and time
"------------------------------------------------------------------------------
function! C_InsertDateAndTime ( format )
if a:format == 'd'
return strftime( s:C_FormatDate )
end
if a:format == 't'
return strftime( s:C_FormatTime )
end
if a:format == 'dt'
return strftime( s:C_FormatDate ).' '.strftime( s:C_FormatTime )
end
if a:format == 'y'
return strftime( s:C_FormatYear )
end
endfunction " ---------- end of function C_InsertDateAndTime ----------
"------------------------------------------------------------------------------
" show / hide the c-support menus
" define key mappings (gVim only)
"------------------------------------------------------------------------------
"
if has("gui_running")
"
call C_ToolMenu()
"
if s:C_LoadMenus == 'yes'
call C_CreateGuiMenus()
endif
"
nmap <unique> <silent> <Leader>lcs :call C_CreateGuiMenus()<CR>
nmap <unique> <silent> <Leader>ucs :call C_RemoveGuiMenus()<CR>
"
endif
"------------------------------------------------------------------------------
" Automated header insertion
" Local settings for the quickfix window
"------------------------------------------------------------------------------
if has("autocmd")
"
" Automated header insertion (suffixes from the gcc manual)
"
autocmd BufNewFile * if (&filetype=='cpp' || &filetype=='c') |
\ call C_InsertTemplate("comment.file-description") | endif
"
" *.h has filetype 'cpp' by default; this can be changed to 'c' :
"
if s:C_TypeOfH=='c'
autocmd BufNewFile,BufEnter *.h :set filetype=c
endif
"
" C/C++ source code files which should not be preprocessed.
"
autocmd BufNewFile,BufRead *.i :set filetype=c
autocmd BufNewFile,BufRead *.ii :set filetype=cpp
"
" Wrap error descriptions in the quickfix window.
"
autocmd BufReadPost quickfix setlocal wrap | setlocal linebreak
"
endif " has("autocmd")
"
"------------------------------------------------------------------------------
" READ THE TEMPLATE FILES
"------------------------------------------------------------------------------
call C_ReadTemplates(s:C_GlobalTemplateFile)
if s:installation == 'system' && filereadable( s:C_LocalTemplateFile )
call C_ReadTemplates( s:C_LocalTemplateFile )
endif
"
"=====================================================================================
" vim: tabstop=2 shiftwidth=2 foldmethod=marker
|