workbench.xmi
336 KB
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
<?xml version="1.0" encoding="ASCII"?>
<application:Application xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:advanced="http://www.eclipse.org/ui/2010/UIModel/application/ui/advanced" xmlns:application="http://www.eclipse.org/ui/2010/UIModel/application" xmlns:basic="http://www.eclipse.org/ui/2010/UIModel/application/ui/basic" xmlns:menu="http://www.eclipse.org/ui/2010/UIModel/application/ui/menu" xmi:id="_gc15oXukEeiLc70_J18rYQ" elementId="org.eclipse.e4.legacy.ide.application" contributorURI="platform:/plugin/org.eclipse.platform" selectedElement="_gc15onukEeiLc70_J18rYQ" bindingContexts="_gc15pHukEeiLc70_J18rYQ">
<persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<workbench>
<mruList/>
</workbench>"/>
<tags>activeSchemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
<tags>ModelMigrationProcessor.001</tags>
<children xsi:type="basic:TrimmedWindow" xmi:id="_gc15onukEeiLc70_J18rYQ" elementId="IDEWindow" contributorURI="platform:/plugin/org.eclipse.platform" selectedElement="_g0PF8HukEeiLc70_J18rYQ" label="%trimmedwindow.label.eclipseSDK" x="-25" y="218" width="1024" height="521">
<persistedState key="coolBarVisible" value="true"/>
<persistedState key="perspectiveBarVisible" value="true"/>
<persistedState key="isRestored" value="true"/>
<persistedState key="show_in_time" value="<?xml version="1.0" encoding="UTF-8"?>
<show_in_time/>"/>
<persistedState key="workingSets" value="<?xml version="1.0" encoding="UTF-8"?>
<workingSets/>"/>
<persistedState key="aggregateWorkingSetId" value="Aggregate for window 1530280717493"/>
<tags>topLevel</tags>
<tags>shellMaximized</tags>
<children xsi:type="basic:PartSashContainer" xmi:id="_g0PF8HukEeiLc70_J18rYQ" selectedElement="_g0PF8XukEeiLc70_J18rYQ" horizontal="true">
<children xsi:type="advanced:PerspectiveStack" xmi:id="_g0PF8XukEeiLc70_J18rYQ" elementId="org.eclipse.ui.ide.perspectivestack" containerData="7500" selectedElement="_hFMTEHukEeiLc70_J18rYQ">
<children xsi:type="advanced:Perspective" xmi:id="_hFMTEHukEeiLc70_J18rYQ" elementId="org.eclipse.php.perspective" selectedElement="_hFM6IHukEeiLc70_J18rYQ" label="PHP" iconURI="platform:/plugin/org.eclipse.php.ui/icons/full/obj16/php_perspective.png">
<persistedState key="persp.hiddenItems" value="persp.hideToolbarSC:org.eclipse.debug.ui.commands.RunToLine,persp.hideToolbarSC:print,persp.hideToolbarSC:org.eclipse.ui.edit.text.toggleShowSelectedElementOnly,"/>
<tags>persp.actionSet:org.eclipse.mylyn.doc.actionSet</tags>
<tags>persp.actionSet:org.eclipse.mylyn.tasks.ui.navigation</tags>
<tags>persp.actionSet:org.eclipse.ui.cheatsheets.actionSet</tags>
<tags>persp.actionSet:org.eclipse.search.searchActionSet</tags>
<tags>persp.actionSet:org.eclipse.ui.edit.text.actionSet.annotationNavigation</tags>
<tags>persp.actionSet:org.eclipse.ui.edit.text.actionSet.navigation</tags>
<tags>persp.actionSet:org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo</tags>
<tags>persp.actionSet:org.eclipse.ui.externaltools.ExternalToolsSet</tags>
<tags>persp.actionSet:org.eclipse.ui.actionSet.keyBindings</tags>
<tags>persp.actionSet:org.eclipse.ui.actionSet.openFiles</tags>
<tags>persp.actionSet:org.eclipse.wst.jsdt.chromium.debug.ui.actionSets</tags>
<tags>persp.perspSC:org.eclipse.php.perspective</tags>
<tags>persp.perspSC:org.eclipse.debug.ui.DebugPerspective</tags>
<tags>persp.viewSC:org.eclipse.php.ui.explorer</tags>
<tags>persp.viewSC:org.eclipse.php.ui.functions</tags>
<tags>persp.viewSC:org.eclipse.php.ui.projectOutline</tags>
<tags>persp.viewSC:org.eclipse.ui.console.ConsoleView</tags>
<tags>persp.showIn:org.eclipse.php.ui.explorer</tags>
<tags>persp.viewSC:org.eclipse.mylyn.tasks.ui.views.tasks</tags>
<tags>persp.newWizSC:org.eclipse.mylyn.tasks.ui.wizards.new.repository.task</tags>
<tags>persp.newWizSC:org.eclipse.php.composer.ui.projectwizard</tags>
<tags>persp.newWizSC:org.eclipse.php.composer.ui.projectFromPackagewizard</tags>
<tags>persp.actionSet:org.eclipse.php.debug.ui.actionSet</tags>
<tags>persp.actionSet:org.eclipse.debug.ui.launchActionSet</tags>
<tags>persp.actionSet:org.eclipse.ui.NavigateActionSet</tags>
<tags>persp.actionSet:org.eclipse.php.ui.PHPActionSet</tags>
<tags>persp.actionSet:org.eclipse.debug.ui.breakpointActionSet</tags>
<tags>persp.viewSC:org.eclipse.ui.views.ContentOutline</tags>
<tags>persp.viewSC:org.eclipse.ui.views.ProblemView</tags>
<tags>persp.viewSC:org.eclipse.ui.views.TaskList</tags>
<tags>persp.viewSC:org.eclipse.dltk.ui.TypeHierarchy</tags>
<tags>persp.viewSC:org.eclipse.ui.navigator.ProjectExplorer</tags>
<tags>persp.newWizSC:org.eclipse.php.ui.wizards.PHPProjectCreationWizard</tags>
<tags>persp.newWizSC:org.eclipse.php.ui.wizards.PHPFileCreationWizard</tags>
<tags>persp.newWizSC:org.eclipse.php.ui.wizards.UntitledPHPDocumentWizard</tags>
<tags>persp.newWizSC:org.eclipse.ui.wizards.new.folder</tags>
<tags>persp.newWizSC:org.eclipse.ui.wizards.new.file</tags>
<tags>persp.newWizSC:org.eclipse.wst.css.ui.internal.wizard.NewCSSWizard</tags>
<tags>persp.newWizSC:org.eclipse.wst.html.ui.internal.wizard.NewHTMLWizard</tags>
<tags>persp.newWizSC:org.eclipse.wst.xml.ui.internal.wizards.NewXMLWizard</tags>
<tags>persp.newWizSC:org.eclipse.ui.editors.wizards.UntitledTextFileWizard</tags>
<tags>persp.showIn:org.eclipse.ui.views.ResourceNavigator</tags>
<tags>persp.showIn:org.eclipse.egit.ui.RepositoriesView</tags>
<tags>persp.showIn:org.eclipse.team.ui.GenericHistoryView</tags>
<tags>persp.showIn:org.eclipse.ui.navigator.ProjectExplorer</tags>
<tags>persp.actionSet:org.eclipse.php.ui.text.php.actionSet.presentation</tags>
<tags>persp.showIn:org.eclipse.tm.terminal.view.ui.TerminalsView</tags>
<children xsi:type="basic:PartSashContainer" xmi:id="_hFM6IHukEeiLc70_J18rYQ" selectedElement="_hFM6IXukEeiLc70_J18rYQ" horizontal="true">
<children xsi:type="basic:PartStack" xmi:id="_hFM6IXukEeiLc70_J18rYQ" elementId="topLeft" containerData="2200" selectedElement="_hFM6InukEeiLc70_J18rYQ">
<tags>active</tags>
<children xsi:type="advanced:Placeholder" xmi:id="_hFM6InukEeiLc70_J18rYQ" elementId="org.eclipse.ui.navigator.ProjectExplorer" ref="_hFCiEHukEeiLc70_J18rYQ"/>
</children>
<children xsi:type="basic:PartSashContainer" xmi:id="_hFM6I3ukEeiLc70_J18rYQ" containerData="7800" selectedElement="_hFM6JHukEeiLc70_J18rYQ">
<children xsi:type="basic:PartSashContainer" xmi:id="_hFM6JHukEeiLc70_J18rYQ" containerData="7500" selectedElement="_hFM6JnukEeiLc70_J18rYQ" horizontal="true">
<children xsi:type="advanced:Placeholder" xmi:id="_hFM6JXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.editorss" containerData="7500" ref="_hEo5cHukEeiLc70_J18rYQ"/>
<children xsi:type="basic:PartStack" xmi:id="_hFM6JnukEeiLc70_J18rYQ" elementId="right" containerData="2500" selectedElement="_hFM6J3ukEeiLc70_J18rYQ">
<tags>noFocus</tags>
<children xsi:type="advanced:Placeholder" xmi:id="_hFM6J3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.views.ContentOutline" ref="_hFHakHukEeiLc70_J18rYQ"/>
<children xsi:type="advanced:Placeholder" xmi:id="_hFM6KHukEeiLc70_J18rYQ" elementId="org.eclipse.php.ui.projectOutline" toBeRendered="false" ref="_hFIBoHukEeiLc70_J18rYQ"/>
<children xsi:type="advanced:Placeholder" xmi:id="_hFM6KXukEeiLc70_J18rYQ" elementId="org.eclipse.php.ui.functions" toBeRendered="false" ref="_hFIBoXukEeiLc70_J18rYQ"/>
<children xsi:type="advanced:Placeholder" xmi:id="_hFM6KnukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.views.tasks" ref="_hFLE8HukEeiLc70_J18rYQ"/>
</children>
</children>
<children xsi:type="basic:PartStack" xmi:id="_hFM6K3ukEeiLc70_J18rYQ" elementId="bottom" containerData="2500" selectedElement="_hFM6LHukEeiLc70_J18rYQ">
<children xsi:type="advanced:Placeholder" xmi:id="_hFM6LHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.views.ProblemView" ref="_hFE-UHukEeiLc70_J18rYQ"/>
<children xsi:type="advanced:Placeholder" xmi:id="_hFM6LXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.views.TaskList" ref="_hFFlYHukEeiLc70_J18rYQ"/>
<children xsi:type="advanced:Placeholder" xmi:id="_hFM6LnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.console.ConsoleView" ref="_hFGMcHukEeiLc70_J18rYQ"/>
<children xsi:type="advanced:Placeholder" xmi:id="_hFM6L3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.views.BookmarkView" toBeRendered="false" ref="_hFGzgHukEeiLc70_J18rYQ"/>
</children>
</children>
</children>
</children>
</children>
<children xsi:type="basic:PartStack" xmi:id="_g0PF8nukEeiLc70_J18rYQ" elementId="stickyFolderRight" toBeRendered="false" containerData="2500">
<children xsi:type="advanced:Placeholder" xmi:id="_g0PF83ukEeiLc70_J18rYQ" elementId="org.eclipse.help.ui.HelpView" toBeRendered="false" ref="_g0MpsHukEeiLc70_J18rYQ"/>
<children xsi:type="advanced:Placeholder" xmi:id="_g0PF9HukEeiLc70_J18rYQ" elementId="org.eclipse.ui.internal.introview" toBeRendered="false" ref="_g0Oe4HukEeiLc70_J18rYQ"/>
<children xsi:type="advanced:Placeholder" xmi:id="_g0PF9XukEeiLc70_J18rYQ" elementId="org.eclipse.ui.cheatsheets.views.CheatSheetView" toBeRendered="false" ref="_g0Oe4XukEeiLc70_J18rYQ"/>
</children>
</children>
<sharedElements xsi:type="basic:Part" xmi:id="_g0MpsHukEeiLc70_J18rYQ" elementId="org.eclipse.help.ui.HelpView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Help" iconURI="platform:/plugin/org.eclipse.help.ui/icons/view16/help_view.gif" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.help.ui.internal.views.HelpView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.help.ui"/>
<tags>View</tags>
<tags>categoryTag:Help</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_g0Oe4HukEeiLc70_J18rYQ" elementId="org.eclipse.ui.internal.introview" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Welcome" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.ViewIntroAdapterPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
<menus xmi:id="_hb_CcHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.internal.introview">
<tags>ViewMenu</tags>
<tags>menuContribution:menu</tags>
</menus>
<toolbar xmi:id="_hb_CcXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.internal.introview" visible="false"/>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_g0Oe4XukEeiLc70_J18rYQ" elementId="org.eclipse.ui.cheatsheets.views.CheatSheetView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Cheat Sheets" iconURI="platform:/plugin/org.eclipse.ui.cheatsheets/icons/view16/cheatsheet_view.gif" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.cheatsheets.views.CheatSheetView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.cheatsheets"/>
<tags>View</tags>
<tags>categoryTag:Help</tags>
</sharedElements>
<sharedElements xsi:type="advanced:Area" xmi:id="_hEo5cHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.editorss">
<children xsi:type="basic:PartStack" xmi:id="_hEo5cXukEeiLc70_J18rYQ" elementId="org.eclipse.e4.primaryDataStack">
<tags>org.eclipse.e4.primaryDataStack</tags>
<tags>EditorStack</tags>
</children>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_hFCiEHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.navigator.ProjectExplorer" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Project Explorer" iconURI="platform:/plugin/org.eclipse.ui.navigator.resources/icons/full/eview16/resource_persp.gif" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.navigator.resources.ProjectExplorer"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.navigator.resources"/>
<persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view CommonNavigator.LINKING_ENABLED="0" currentWorkingSetName="Aggregate for window 1530280717493" org.eclipse.ui.navigator.resources.workingSets.showTopLevelWorkingSets="0"/>"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
<tags>active</tags>
<tags>activeOnClose</tags>
<menus xmi:id="_hJrKcHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.navigator.ProjectExplorer">
<tags>ViewMenu</tags>
<tags>menuContribution:menu</tags>
</menus>
<toolbar xmi:id="_hJrKcXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.navigator.ProjectExplorer"/>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_hFE-UHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.views.ProblemView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Problems" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/problems_view.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.markers.ProblemsView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
<persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view PRIMARY_SORT_FIELD="org.eclipse.ui.ide.severityAndDescriptionField" categoryGroup="org.eclipse.ui.ide.severity" markerContentGenerator="org.eclipse.ui.ide.problemsGenerator" partName="Problems">
<columnWidths org.eclipse.ui.ide.locationField="90" org.eclipse.ui.ide.markerType="697" org.eclipse.ui.ide.pathField="120" org.eclipse.ui.ide.resourceField="90" org.eclipse.ui.ide.severityAndDescriptionField="300"/>
<visible IMemento.internal.id="org.eclipse.ui.ide.severityAndDescriptionField"/>
<visible IMemento.internal.id="org.eclipse.ui.ide.resourceField"/>
<visible IMemento.internal.id="org.eclipse.ui.ide.pathField"/>
<visible IMemento.internal.id="org.eclipse.ui.ide.locationField"/>
<visible IMemento.internal.id="org.eclipse.ui.ide.markerType"/>
</view>"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
<menus xmi:id="_hRwIYHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.views.ProblemView">
<tags>ViewMenu</tags>
<tags>menuContribution:menu</tags>
</menus>
<toolbar xmi:id="_hRwIYXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.views.ProblemView"/>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_hFFlYHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.views.TaskList" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Tasks" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/tasks_tsk.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.markers.TasksView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_hFGMcHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.console.ConsoleView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Console" iconURI="platform:/plugin/org.eclipse.ui.console/icons/full/cview16/console_view.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.console.ConsoleView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.console"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_hFGzgHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.views.BookmarkView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Bookmarks" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/bkmrk_nav.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.markers.BookmarksView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_hFHakHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.views.ContentOutline" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Outline" iconURI="platform:/plugin/org.eclipse.ui.views/icons/full/eview16/outline_co.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.views.contentoutline.ContentOutline"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.views"/>
<persistedState key="memento" value="<?xml version="1.0" encoding="UTF-8"?>
<view/>"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
<menus xmi:id="_hPKucHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.views.ContentOutline">
<tags>ViewMenu</tags>
<tags>menuContribution:menu</tags>
</menus>
<toolbar xmi:id="_hPKucXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.views.ContentOutline"/>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_hFIBoHukEeiLc70_J18rYQ" elementId="org.eclipse.php.ui.projectOutline" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="PHP Project Outline" iconURI="platform:/plugin/org.eclipse.php.ui/icons/full/obj16/php_project_outline.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.php.internal.ui.projectoutlineview.ProjectOutlinePart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.php.ui"/>
<tags>View</tags>
<tags>categoryTag:PHP Tools</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_hFIBoXukEeiLc70_J18rYQ" elementId="org.eclipse.php.ui.functions" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="PHP Functions" iconURI="platform:/plugin/org.eclipse.php.ui/icons/full/obj16/phpfile.png" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.php.internal.ui.functions.PHPFunctionsPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.php.ui"/>
<tags>View</tags>
<tags>categoryTag:PHP Tools</tags>
</sharedElements>
<sharedElements xsi:type="basic:Part" xmi:id="_hFLE8HukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.views.tasks" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Task List" iconURI="platform:/plugin/org.eclipse.mylyn.tasks.ui/icons/eview16/task-list.gif" tooltip="" closeable="true">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.mylyn.internal.tasks.ui.views.TaskListView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.mylyn.tasks.ui"/>
<tags>View</tags>
<tags>categoryTag:Mylyn</tags>
</sharedElements>
<trimBars xmi:id="_g0m5YHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.main.toolbar">
<children xsi:type="menu:ToolBar" xmi:id="_g4RRYHukEeiLc70_J18rYQ" elementId="group.file" toBeRendered="false">
<tags>toolbarSeparator</tags>
<children xsi:type="menu:ToolBarSeparator" xmi:id="_g4R4cHukEeiLc70_J18rYQ" elementId="group.file" toBeRendered="false"/>
</children>
<children xsi:type="menu:ToolBar" xmi:id="_g4TGkHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.workbench.file">
<tags>Draggable</tags>
<children xsi:type="menu:HandledToolItem" xmi:id="_Pra3YJr_EeiUX-nqpUj2Ww" elementId="print" visible="false" iconURI="platform:/plugin/org.eclipse.ui/icons/full/etool16/print_edit.png" tooltip="Print" command="_gdpyAnukEeiLc70_J18rYQ"/>
</children>
<children xsi:type="menu:ToolBar" xmi:id="_g4ZNMHukEeiLc70_J18rYQ" elementId="additions" toBeRendered="false">
<tags>toolbarSeparator</tags>
<children xsi:type="menu:ToolBarSeparator" xmi:id="_g4ZNMXukEeiLc70_J18rYQ" elementId="additions" toBeRendered="false"/>
</children>
<children xsi:type="menu:ToolBar" xmi:id="_hG_p4HukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.launchActionSet">
<tags>Draggable</tags>
</children>
<children xsi:type="menu:ToolBar" xmi:id="_hG2f8HukEeiLc70_J18rYQ" elementId="org.eclipse.search.searchActionSet">
<tags>Draggable</tags>
</children>
<children xsi:type="menu:ToolBar" xmi:id="_hHQvoHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.actionSet.presentation">
<tags>Draggable</tags>
</children>
<children xsi:type="menu:ToolBar" xmi:id="_g4ZNMnukEeiLc70_J18rYQ" elementId="group.nav" toBeRendered="false">
<tags>toolbarSeparator</tags>
<children xsi:type="menu:ToolBarSeparator" xmi:id="_g4ZNM3ukEeiLc70_J18rYQ" elementId="group.nav" toBeRendered="false"/>
</children>
<children xsi:type="menu:ToolBar" xmi:id="_g4Z0QHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.workbench.navigate">
<tags>Draggable</tags>
<children xsi:type="menu:HandledToolItem" xmi:id="_PrehwJr_EeiUX-nqpUj2Ww" elementId="org.eclipse.ui.window.pinEditor" visible="false" iconURI="platform:/plugin/org.eclipse.ui/icons/full/etool16/pin_editor.png" tooltip="Pin Editor" type="Check" command="_gdokC3ukEeiLc70_J18rYQ"/>
</children>
<children xsi:type="menu:ToolBar" xmi:id="_g4Z0QXukEeiLc70_J18rYQ" elementId="group.editor" toBeRendered="false">
<tags>toolbarSeparator</tags>
<children xsi:type="menu:ToolBarSeparator" xmi:id="_g4Z0QnukEeiLc70_J18rYQ" elementId="group.editor" toBeRendered="false"/>
</children>
<children xsi:type="menu:ToolBar" xmi:id="_g4Z0Q3ukEeiLc70_J18rYQ" elementId="group.help" toBeRendered="false">
<tags>toolbarSeparator</tags>
<children xsi:type="menu:ToolBarSeparator" xmi:id="_g4Z0RHukEeiLc70_J18rYQ" elementId="group.help" toBeRendered="false"/>
</children>
<children xsi:type="menu:ToolBar" xmi:id="_g4abUHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.workbench.help" visible="false">
<tags>Draggable</tags>
</children>
<children xsi:type="menu:ToolControl" xmi:id="_g_4VQHukEeiLc70_J18rYQ" elementId="PerspectiveSpacer" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.LayoutModifierToolControl">
<tags>stretch</tags>
<tags>SHOW_RESTORE_MENU</tags>
</children>
<children xsi:type="menu:ToolControl" xmi:id="_g_7YkHukEeiLc70_J18rYQ" elementId="PerspectiveSwitcher" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.e4.ui.workbench.addons.perspectiveswitcher.PerspectiveSwitcher">
<tags>Draggable</tags>
<tags>HIDEABLE</tags>
<tags>SHOW_RESTORE_MENU</tags>
</children>
</trimBars>
<trimBars xmi:id="_hAW2YHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.trim.status" side="Bottom">
<children xsi:type="menu:ToolControl" xmi:id="_hAgAUHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.StatusLine" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.StandardTrim">
<tags>stretch</tags>
</children>
<children xsi:type="menu:ToolControl" xmi:id="_hAwfAHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.HeapStatus" toBeRendered="false" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.StandardTrim">
<tags>Draggable</tags>
</children>
<children xsi:type="menu:ToolControl" xmi:id="_hBh7EHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.ProgressBar" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.StandardTrim">
<tags>Draggable</tags>
</children>
</trimBars>
<trimBars xmi:id="_hB68oHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.trim.vertical1" toBeRendered="false" side="Left">
<children xsi:type="menu:ToolControl" xmi:id="_hqDToHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.ide.perspectivestack(minimized)" toBeRendered="false" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.minmax.TrimStack">
<tags>TrimStack</tags>
<tags>Draggable</tags>
</children>
</trimBars>
<trimBars xmi:id="_hB8KwHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.trim.vertical2" side="Right"/>
</children>
<bindingTables xmi:id="_gc15o3ukEeiLc70_J18rYQ" contributorURI="platform:/plugin/org.eclipse.platform" bindingContext="_gc15pHukEeiLc70_J18rYQ">
<bindings xmi:id="_gedDM3ukEeiLc70_J18rYQ" keySequence="CTRL+A" command="_gdmHoHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gedDOHukEeiLc70_J18rYQ" keySequence="CTRL+SPACE" command="_gdpLBHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gedqQ3ukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+SPACE" command="_gdjrbHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geeRUnukEeiLc70_J18rYQ" keySequence="ALT+PAGE_UP" command="_gdmuvHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geeRWHukEeiLc70_J18rYQ" keySequence="CTRL+C" command="_gdnVtHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gegGgHukEeiLc70_J18rYQ" keySequence="SHIFT+INSERT" command="_gdgBB3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gegGiHukEeiLc70_J18rYQ" keySequence="ALT+PAGE_DOWN" command="_gdoj23ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gehUpnukEeiLc70_J18rYQ" keySequence="CTRL+Z" command="_gdkSbHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geiiwXukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+F3" command="_gdpyCHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geiiznukEeiLc70_J18rYQ" keySequence="CTRL+X" command="_gdkSdHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gejJ1HukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+Z" command="_gdmusXukEeiLc70_J18rYQ">
<tags>platform:gtk</tags>
</bindings>
<bindings xmi:id="_gejJ13ukEeiLc70_J18rYQ" keySequence="CTRL+V" command="_gdgBB3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gekX93ukEeiLc70_J18rYQ" keySequence="CTRL+1" command="_gdjEX3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geoCUnukEeiLc70_J18rYQ" keySequence="CTRL+F10" command="_gdh2IHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geopZXukEeiLc70_J18rYQ" keySequence="CTRL+INSERT" command="_gdnVtHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gepQc3ukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+L" command="_gdpyMnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gep3inukEeiLc70_J18rYQ" keySequence="SHIFT+DEL" command="_gdkSdHukEeiLc70_J18rYQ"/>
</bindingTables>
<bindingTables xmi:id="_geVHYHukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.scriptEditorScope" bindingContext="_gdtcXnukEeiLc70_J18rYQ">
<bindings xmi:id="_geam8HukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+C" command="_gdjrXHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geccLHukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+ARROW_UP" command="_gdqZKnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gedqSnukEeiLc70_J18rYQ" keySequence="CTRL+7" command="_gdjrXHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geeRWnukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+F" command="_gdqZF3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gee4bnukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+G" command="_gdk5dXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geffeXukEeiLc70_J18rYQ" keySequence="ALT+CTRL+H" command="_gdjETnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geh7uHukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+R" command="_gdmuqnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gejJ3XukEeiLc70_J18rYQ" keySequence="CTRL+O" command="_gdn81nukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gejw7HukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+P" command="_gdkSgHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gekX8XukEeiLc70_J18rYQ" keySequence="CTRL+/" command="_gdjrXHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gelmFXukEeiLc70_J18rYQ" keySequence="F3" command="_gdpx9nukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gem0QXukEeiLc70_J18rYQ" keySequence="CTRL+T" command="_gdpLHXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_genbRnukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+T" command="_gdokBXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geoCVXukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+J" command="_gdqZKXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geoCXXukEeiLc70_J18rYQ" keySequence="CTRL+I" command="_gdidT3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gepQeXukEeiLc70_J18rYQ" keySequence="F4" command="_gdgA8HukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geqelXukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+ARROW_DOWN" command="_gdjEXnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gerstXukEeiLc70_J18rYQ" keySequence="ESC CTRL+F" command="_gdqZF3ukEeiLc70_J18rYQ">
<tags>platform:gtk</tags>
</bindings>
</bindingTables>
<bindingTables xmi:id="_gebOAHukEeiLc70_J18rYQ" elementId="org.eclipse.php.ui.phpEditorScope" bindingContext="_gds1SnukEeiLc70_J18rYQ">
<bindings xmi:id="_gebOAXukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+C" command="_gdqZBHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geccIXukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+ARROW_RIGHT" command="_gdnVwHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geccKXukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+ARROW_DOWN" command="_gdnV2HukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gedqQHukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+ARROW_UP" command="_gdpK-nukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gedqS3ukEeiLc70_J18rYQ" keySequence="CTRL+7" command="_gdqZBHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geeRW3ukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+F" command="_gdqZQHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gee4b3ukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+G" command="_gdk5dXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geffd3ukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+H" command="_gdqZFHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geffe3ukEeiLc70_J18rYQ" keySequence="ALT+CTRL+H" command="_gdpK83ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gegtmnukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+M" command="_gdmHoXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gehUoHukEeiLc70_J18rYQ" keySequence="F2" command="_gdnV03ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gehUqHukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+V" command="_gdoj_XukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geh7vHukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+R" command="_gdmuqnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geiiw3ukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+M" command="_gdn83nukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geiiyHukEeiLc70_J18rYQ" keySequence="SHIFT+F2" command="_gdn87nukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gejw4HukEeiLc70_J18rYQ" keySequence="CTRL+O" command="_gdn81nukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gejw5XukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+O" command="_gdmHnnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gejw6nukEeiLc70_J18rYQ" keySequence="ALT+CTRL+S" command="_gdkSgnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gejw7XukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+P" command="_gdnVznukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gekX8nukEeiLc70_J18rYQ" keySequence="CTRL+/" command="_gdqZBHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gelmFnukEeiLc70_J18rYQ" keySequence="F3" command="_gdh2MXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gemNKHukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+O" command="_gdpx-HukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gem0MHukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+N" command="_gdqZInukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gem0M3ukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+L" command="_gdpK9XukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gem0N3ukEeiLc70_J18rYQ" keySequence="CTRL+." command="_gdn8w3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_genbQHukEeiLc70_J18rYQ" keySequence="CTRL+T" command="_gdpLHXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_genbTnukEeiLc70_J18rYQ" keySequence="CTRL+N" command="_gdhPE3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geoCVnukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+J" command="_gdk5j3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geoCWnukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+I" command="_gdhPIHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geoCXnukEeiLc70_J18rYQ" keySequence="CTRL+I" command="_gdpyA3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geopa3ukEeiLc70_J18rYQ" keySequence="ALT+CTRL+T" command="_gdk5dnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gepQdHukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+T" command="_gdoj9XukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gepQfHukEeiLc70_J18rYQ" keySequence="F4" command="_gdmuq3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geqeknukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+ARROW_LEFT" command="_gdjEQXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gesTxXukEeiLc70_J18rYQ" keySequence="CTRL+2 L" command="_gdkSjHukEeiLc70_J18rYQ"/>
</bindingTables>
<bindingTables xmi:id="_gebOAnukEeiLc70_J18rYQ" elementId="org.eclipse.tm.terminal.EditContext" bindingContext="_gds1QHukEeiLc70_J18rYQ">
<bindings xmi:id="_gebOA3ukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+C" command="_gdpK4nukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geb1FnukEeiLc70_J18rYQ" keySequence="ALT+ARROW_RIGHT" command="_gdqZE3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gefff3ukEeiLc70_J18rYQ" keySequence="SHIFT+INSERT" command="_gdk5e3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gekX9XukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+V" command="_gdk5e3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geopZHukEeiLc70_J18rYQ" keySequence="CTRL+INSERT" command="_gdpK4nukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gep3g3ukEeiLc70_J18rYQ" keySequence="ALT+ARROW_UP" command="_gdey03ukEeiLc70_J18rYQ"/>
</bindingTables>
<bindingTables xmi:id="_geb1EHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.javaEditorScope" bindingContext="_gds1RHukEeiLc70_J18rYQ">
<bindings xmi:id="_geb1EXukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+C" command="_gdnV6XukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geccInukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+ARROW_RIGHT" command="_gdn8-nukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geccKnukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+ARROW_DOWN" command="_gdokCXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geccLXukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+ARROW_UP" command="_gdrAE3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gedqQXukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+ARROW_UP" command="_gdhPGHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geeRUHukEeiLc70_J18rYQ" keySequence="CTRL+7" command="_gdnV6XukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geeRXHukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+F" command="_gdh2KnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gegGhnukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+E" command="_gdmuznukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gegtnHukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+M" command="_gdhPInukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geh7tXukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+U" command="_gdkScnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geiiy3ukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+/" command="_gdmuoXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gejw4XukEeiLc70_J18rYQ" keySequence="CTRL+O" command="_gdgA9HukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gejw7nukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+P" command="_gdn843ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gekX83ukEeiLc70_J18rYQ" keySequence="CTRL+/" command="_gdnV6XukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gemNKXukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+O" command="_gdk5cXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gemNMHukEeiLc70_J18rYQ" keySequence="CTRL+F3" command="_gdnVunukEeiLc70_J18rYQ"/>
<bindings xmi:id="_genbQXukEeiLc70_J18rYQ" keySequence="CTRL+T" command="_gdn81HukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geopYHukEeiLc70_J18rYQ" keySequence="CTRL+I" command="_gdk5kXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gepQdnukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+T" command="_gdmupHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gepQf3ukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+\" command="_gdh2QHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geqek3ukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+ARROW_LEFT" command="_gdqZB3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geqelnukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+ARROW_DOWN" command="_gdidQ3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geqemnukEeiLc70_J18rYQ" keySequence="CTRL+2 F" command="_gdk5fXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gerFq3ukEeiLc70_J18rYQ" keySequence="CTRL+2 R" command="_gdjrWHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gerstHukEeiLc70_J18rYQ" keySequence="ESC CTRL+C" command="_gdnV6XukEeiLc70_J18rYQ">
<tags>platform:gtk</tags>
</bindings>
<bindings xmi:id="_gerstnukEeiLc70_J18rYQ" keySequence="ESC CTRL+F" command="_gdh2KnukEeiLc70_J18rYQ">
<tags>platform:gtk</tags>
</bindings>
<bindings xmi:id="_gesTxnukEeiLc70_J18rYQ" keySequence="CTRL+2 L" command="_gdqZL3ukEeiLc70_J18rYQ"/>
</bindingTables>
<bindingTables xmi:id="_geb1EnukEeiLc70_J18rYQ" elementId="org.eclipse.wst.sse.ui.structuredTextEditorScope" bindingContext="_gds1SHukEeiLc70_J18rYQ">
<bindings xmi:id="_geb1E3ukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+C" command="_gdqZBHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geccI3ukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+ARROW_RIGHT" command="_gdn82HukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geccK3ukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+ARROW_DOWN" command="_gdoj83ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geccLnukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+ARROW_UP" command="_gdidUnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geccL3ukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+A" command="_gdqZWXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gedqQnukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+ARROW_UP" command="_gdoj33ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geeRXXukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+F" command="_gdqZQHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geiizHukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+/" command="_gdnVx3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gejw4nukEeiLc70_J18rYQ" keySequence="CTRL+O" command="_gdnV3XukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gejw73ukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+P" command="_gdnV0nukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gelmGXukEeiLc70_J18rYQ" keySequence="F3" command="_gdnV0HukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geopYXukEeiLc70_J18rYQ" keySequence="CTRL+I" command="_gdpyA3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gepQgHukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+\" command="_gdn883ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gep3gHukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+>" command="_gdpLGXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geqelHukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+ARROW_LEFT" command="_gdhPH3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geqel3ukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+ARROW_DOWN" command="_gdmuonukEeiLc70_J18rYQ"/>
</bindingTables>
<bindingTables xmi:id="_geb1FHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.textEditorScope" bindingContext="_gds1Q3ukEeiLc70_J18rYQ">
<bindings xmi:id="_geb1FXukEeiLc70_J18rYQ" keySequence="CTRL+ARROW_DOWN" command="_gdqZWHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geccIHukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+ARROW_LEFT" command="_gdk5kHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gedDMXukEeiLc70_J18rYQ" keySequence="CTRL+ARROW_UP" command="_gdidM3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gedDNHukEeiLc70_J18rYQ" keySequence="ALT+CTRL+ARROW_UP" command="_gdqZLXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gedDN3ukEeiLc70_J18rYQ" keySequence="ALT+ARROW_DOWN" command="_gdoj43ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gedDOXukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+DEL" command="_gdpLCXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gedqRHukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+A" command="_gdnV0XukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geeRU3ukEeiLc70_J18rYQ" keySequence="CTRL+ARROW_LEFT" command="_gdmu1XukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gee4ZHukEeiLc70_J18rYQ" keySequence="SHIFT+HOME" command="_gdkSkHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gee4aXukEeiLc70_J18rYQ" keySequence="SHIFT+END" command="_gdk5jXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gee4anukEeiLc70_J18rYQ" keySequence="CTRL+HOME" command="_gdgBBnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gefffXukEeiLc70_J18rYQ" keySequence="CTRL+BS" command="_gdey1HukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gegGgnukEeiLc70_J18rYQ" keySequence="CTRL+END" command="_gdoj5nukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gegGg3ukEeiLc70_J18rYQ" keySequence="ALT+CTRL+J" command="_gdjEV3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gegGhXukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+ARROW_RIGHT" command="_gdidSnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gegGi3ukEeiLc70_J18rYQ" keySequence="CTRL+D" command="_gdh2L3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gegtkHukEeiLc70_J18rYQ" keySequence="CTRL+ARROW_RIGHT" command="_gdjESHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gegtknukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+Q" command="_gdjES3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gegtk3ukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+X" command="_gdnVvXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gegtlnukEeiLc70_J18rYQ" keySequence="CTRL+L" command="_gdpLFnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gehUonukEeiLc70_J18rYQ" keySequence="F2" command="_gdjrVHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gehUpXukEeiLc70_J18rYQ" keySequence="CTRL+NUMPAD_ADD" command="_gdqZIHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geh7v3ukEeiLc70_J18rYQ" keySequence="CTRL+K" command="_gdoj1nukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gejJ0XukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+NUMPAD_DIVIDE" command="_gdn8wXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gejJ2XukEeiLc70_J18rYQ" keySequence="CTRL+J" command="_gdh2JnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gejJ2nukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+Y" command="_gdk5gnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gejJ23ukEeiLc70_J18rYQ" keySequence="CTRL++" command="_gdn863ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gejw53ukEeiLc70_J18rYQ" keySequence="HOME" command="_gdqZCHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gejw6HukEeiLc70_J18rYQ" keySequence="SHIFT+CR" command="_gdqZBnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gekX-nukEeiLc70_J18rYQ" keySequence="CTRL+-" command="_gdk5hHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gemNJHukEeiLc70_J18rYQ" keySequence="ALT+/" command="_gdqZDXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gemNLXukEeiLc70_J18rYQ" keySequence="CTRL+NUMPAD_MULTIPLY" command="_gdoj-HukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gem0O3ukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+CR" command="_gdpyB3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gem0PXukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+Y" command="_gdbvgnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_genbQ3ukEeiLc70_J18rYQ" keySequence="INSERT" command="_gdn8wHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geoCU3ukEeiLc70_J18rYQ" keySequence="CTRL+F10" command="_gdpyBHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geoCVHukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+INSERT" command="_gdidRHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geopY3ukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+J" command="_gdidVHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geopZ3ukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+NUMPAD_MULTIPLY" command="_gdokA3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geopaHukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+K" command="_gdh2R3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geopaXukEeiLc70_J18rYQ" keySequence="END" command="_gdpyH3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geopbXukEeiLc70_J18rYQ" keySequence="CTRL+NUMPAD_DIVIDE" command="_gdidNXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geopbnukEeiLc70_J18rYQ" keySequence="CTRL+NUMPAD_SUBTRACT" command="_gdpyBnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gep3hHukEeiLc70_J18rYQ" keySequence="ALT+ARROW_UP" command="_gdqZTHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gep3h3ukEeiLc70_J18rYQ" keySequence="CTRL+DEL" command="_gdkSaXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gep3iXukEeiLc70_J18rYQ" keySequence="CTRL+=" command="_gdn863ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geqemXukEeiLc70_J18rYQ" keySequence="ALT+CTRL+ARROW_DOWN" command="_gdmHpXukEeiLc70_J18rYQ"/>
</bindingTables>
<bindingTables xmi:id="_geb1F3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.contexts.window" bindingContext="_gc15pXukEeiLc70_J18rYQ">
<bindings xmi:id="_geb1GHukEeiLc70_J18rYQ" keySequence="ALT+ARROW_RIGHT" command="_gdkShHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geb1G3ukEeiLc70_J18rYQ" keySequence="CTRL+B" command="_gdhPFXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geccJHukEeiLc70_J18rYQ" keySequence="ALT+CTRL+SHIFT+ARROW_RIGHT" command="_gdnV6nukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geccMHukEeiLc70_J18rYQ" keySequence="ALT+CTRL+SHIFT+ARROW_UP" command="_gdn80XukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gedDMnukEeiLc70_J18rYQ" keySequence="ALT+ARROW_LEFT" command="_gdh2I3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gedqRXukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+D H" command="_gdn8_3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gedqRnukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+D W" command="_gdhPEXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gedqR3ukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+D R" command="_gdmusnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gedqSHukEeiLc70_J18rYQ" keySequence="ALT+F7" command="_gdnV13ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gedqSXukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+S" command="_gdn84nukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geeRWXukEeiLc70_J18rYQ" keySequence="CTRL+#" command="_gdh2IXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gee4YHukEeiLc70_J18rYQ" keySequence="CTRL+F" command="_gdh2NHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gee4YXukEeiLc70_J18rYQ" keySequence="CTRL+E" command="_gdkSaHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gee4Y3ukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+E" command="_gdidPnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gee4bXukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+H" command="_gdkSYnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gegGgXukEeiLc70_J18rYQ" keySequence="CTRL+H" command="_gdpLA3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gegGhHukEeiLc70_J18rYQ" keySequence="ALT+CTRL+G" command="_gdn88XukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gegtlXukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+W" command="_gdqZLHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gehUoXukEeiLc70_J18rYQ" keySequence="F2" command="_gdhPFHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gehUpHukEeiLc70_J18rYQ" keySequence="F5" command="_gdkSinukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gehUqnukEeiLc70_J18rYQ" keySequence="CTRL+F12" command="_gdidMnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gehUq3ukEeiLc70_J18rYQ" keySequence="CTRL+F9" command="_gdidQXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geh7sHukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+F6" command="_gdn86XukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geh7tnukEeiLc70_J18rYQ" keySequence="CTRL+F7" command="_gdnVtXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geh7t3ukEeiLc70_J18rYQ" keySequence="ALT+CTRL+SHIFT+T" command="_gdhPKXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geh7vnukEeiLc70_J18rYQ" keySequence="CTRL+S" command="_gdk5hnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geiiwHukEeiLc70_J18rYQ" keySequence="ALT+F11" command="_gdh2OHukEeiLc70_J18rYQ">
<tags>platform:gtk</tags>
</bindings>
<bindings xmi:id="_geiix3ukEeiLc70_J18rYQ" keySequence="CTRL+M" command="_gdpK_nukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geiiynukEeiLc70_J18rYQ" keySequence="CTRL+3" command="_gdjrU3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geiizXukEeiLc70_J18rYQ" keySequence="ALT+CTRL+SHIFT+F12" command="_gdqZIXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gejJ0HukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+NUMPAD_DIVIDE" command="_gdjrcnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gejJ0nukEeiLc70_J18rYQ" keySequence="SHIFT+F5" command="_gdmHq3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gejJ1XukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+F12" command="_gdfZ8nukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gejJ2HukEeiLc70_J18rYQ" keySequence="ALT+-" command="_gdnVyHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gejJ3HukEeiLc70_J18rYQ" keySequence="CTRL+F11" command="_gdpyI3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gekX9HukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+N" command="_gdkSbnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gekX9nukEeiLc70_J18rYQ" keySequence="CTRL+P" command="_gdpyAnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gekX-HukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+F7" command="_gdqZGHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gekX-XukEeiLc70_J18rYQ" keySequence="CTRL+-" command="_gdpyM3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gekX-3ukEeiLc70_J18rYQ" keySequence="ALT+CR" command="_gdpK7HukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gek_AHukEeiLc70_J18rYQ" keySequence="CTRL+{" command="_gdjrcHukEeiLc70_J18rYQ">
<parameters xmi:id="_gelmEHukEeiLc70_J18rYQ" elementId="Splitter.isHorizontal" name="Splitter.isHorizontal" value="false"/>
</bindings>
<bindings xmi:id="_gelmEXukEeiLc70_J18rYQ" keySequence="CTRL+F4" command="_gdmut3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gelmFHukEeiLc70_J18rYQ" keySequence="F11" command="_gdqZFXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gemNIXukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+F9" command="_gdmHl3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gemNI3ukEeiLc70_J18rYQ" keySequence="CTRL+F6" command="_gdh2O3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gemNJ3ukEeiLc70_J18rYQ" keySequence="CTRL+," command="_gdgBDHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gemNLnukEeiLc70_J18rYQ" keySequence="CTRL+F8" command="_gdjEYXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gemNL3ukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+F4" command="_gdkSc3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gem0OHukEeiLc70_J18rYQ" keySequence="CTRL+." command="_gdqZMHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gem0OXukEeiLc70_J18rYQ" keySequence="CTRL+Q" command="_gdpyDXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_genbRHukEeiLc70_J18rYQ" keySequence="F12" command="_gdpLB3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_genbRXukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+F7" command="_gdoj53ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_genbSXukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+R" command="_gdrAEHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_genbS3ukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+W" command="_gdkSc3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_genbTHukEeiLc70_J18rYQ" keySequence="DEL" command="_gdh2QnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geoCUXukEeiLc70_J18rYQ" keySequence="CTRL+N" command="_gdqZQ3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geoCWHukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+TAB" command="_gdn86XukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geopYnukEeiLc70_J18rYQ" keySequence="CTRL+TAB" command="_gdh2O3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geopZnukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+NUMPAD_MULTIPLY" command="_gdn84XukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geopbHukEeiLc70_J18rYQ" keySequence="ALT+CTRL+T" command="_gdnVsHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gepQcXukEeiLc70_J18rYQ" keySequence="CTRL+W" command="_gdmut3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gepQcnukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+F8" command="_gdjrb3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gep3hXukEeiLc70_J18rYQ" keySequence="CTRL+_" command="_gdjrcHukEeiLc70_J18rYQ">
<parameters xmi:id="_gep3hnukEeiLc70_J18rYQ" elementId="Splitter.isHorizontal" name="Splitter.isHorizontal" value="true"/>
</bindings>
<bindings xmi:id="_gep3iHukEeiLc70_J18rYQ" keySequence="CTRL+=" command="_gdkSh3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gep3i3ukEeiLc70_J18rYQ" keySequence="ALT+CTRL+SHIFT+ARROW_DOWN" command="_gdqZSXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gep3jHukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+B" command="_gdh2SHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geqemHukEeiLc70_J18rYQ" keySequence="ALT+CTRL+B" command="_gdoj1HukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geqem3ukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+Q V" command="_gdn8-3ukEeiLc70_J18rYQ">
<parameters xmi:id="_geqenHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.debug.ui.VariableView"/>
</bindings>
<bindings xmi:id="_geqenXukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+Q Q" command="_gdn8-3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geqen3ukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+X H" command="_gdpyAXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gerFoHukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+X W" command="_gdjrZHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gerFoXukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+Q Y" command="_gdn8-3ukEeiLc70_J18rYQ">
<parameters xmi:id="_gerFonukEeiLc70_J18rYQ" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.team.sync.views.SynchronizeView"/>
</bindings>
<bindings xmi:id="_gerFo3ukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+Q X" command="_gdn8-3ukEeiLc70_J18rYQ">
<parameters xmi:id="_gerFpHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.views.ProblemView"/>
</bindings>
<bindings xmi:id="_gerFpXukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+Q O" command="_gdn8-3ukEeiLc70_J18rYQ">
<parameters xmi:id="_gerFpnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.views.ContentOutline"/>
</bindings>
<bindings xmi:id="_gerFp3ukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+Q L" command="_gdn8-3ukEeiLc70_J18rYQ">
<parameters xmi:id="_gerFqHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.pde.runtime.LogView"/>
</bindings>
<bindings xmi:id="_gerFqnukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+X R" command="_gdmur3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gerFrnukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+Q Z" command="_gdn8-3ukEeiLc70_J18rYQ">
<parameters xmi:id="_gerFr3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.team.ui.GenericHistoryView"/>
</bindings>
<bindings xmi:id="_gerssHukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+Q B" command="_gdn8-3ukEeiLc70_J18rYQ">
<parameters xmi:id="_gerssXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.debug.ui.BreakpointView"/>
</bindings>
<bindings xmi:id="_gerssnukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+Q S" command="_gdn8-3ukEeiLc70_J18rYQ">
<parameters xmi:id="_gerss3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.search.ui.views.SearchView"/>
</bindings>
<bindings xmi:id="_gerst3ukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+Q H" command="_gdn8-3ukEeiLc70_J18rYQ">
<parameters xmi:id="_gersuHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.cheatsheets.views.CheatSheetView"/>
</bindings>
<bindings xmi:id="_gesTwHukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+Q E" command="_gdpx8nukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gesTwXukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+Q K" command="_gdn8-3ukEeiLc70_J18rYQ">
<parameters xmi:id="_gesTwnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.mylyn.tasks.ui.views.tasks"/>
</bindings>
<bindings xmi:id="_gesTw3ukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+Q C" command="_gdn8-3ukEeiLc70_J18rYQ">
<parameters xmi:id="_gesTxHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.console.ConsoleView"/>
</bindings>
<bindings xmi:id="__jcHMJr-EeiGr6L2zFyJzw" keySequence="CTRL+SHIFT+8" command="__hiCspr-EeiGr6L2zFyJzw"/>
</bindingTables>
<bindingTables xmi:id="_geb1GXukEeiLc70_J18rYQ" elementId="org.eclipse.tm.terminal.TerminalContext" bindingContext="_gdtcWHukEeiLc70_J18rYQ">
<bindings xmi:id="_geb1GnukEeiLc70_J18rYQ" keySequence="ALT+D" command="_gdnVxXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gedDMHukEeiLc70_J18rYQ" keySequence="ALT+C" command="_gdnVxXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gedDNXukEeiLc70_J18rYQ" keySequence="ALT+B" command="_gdnVxXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geeRUXukEeiLc70_J18rYQ" keySequence="ALT+E" command="_gdnVxXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geeRXnukEeiLc70_J18rYQ" keySequence="ALT+H" command="_gdnVxXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gee4YnukEeiLc70_J18rYQ" keySequence="ALT+G" command="_gdnVxXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gegGh3ukEeiLc70_J18rYQ" keySequence="ALT+F" command="_gdnVxXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gegtlHukEeiLc70_J18rYQ" keySequence="ALT+T" command="_gdnVxXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gegtnXukEeiLc70_J18rYQ" keySequence="ALT+N" command="_gdnVxXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gemNIHukEeiLc70_J18rYQ" keySequence="ALT+P" command="_gdnVxXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gem0OnukEeiLc70_J18rYQ" keySequence="ALT+L" command="_gdnVxXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gem0PHukEeiLc70_J18rYQ" keySequence="ALT+W" command="_gdnVxXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gem0PnukEeiLc70_J18rYQ" keySequence="ALT+R" command="_gdnVxXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_genbSnukEeiLc70_J18rYQ" keySequence="ALT+V" command="_gdnVxXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gepQd3ukEeiLc70_J18rYQ" keySequence="ALT+S" command="_gdnVxXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gepQeHukEeiLc70_J18rYQ" keySequence="ALT+Y" command="_gdnVxXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gep3gXukEeiLc70_J18rYQ" keySequence="ALT+A" command="_gdnVxXukEeiLc70_J18rYQ"/>
</bindingTables>
<bindingTables xmi:id="_geccJXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.serverViewScope" bindingContext="_gdtcUXukEeiLc70_J18rYQ">
<bindings xmi:id="_geccJnukEeiLc70_J18rYQ" keySequence="ALT+CTRL+D" command="_gdoj2nukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gejw63ukEeiLc70_J18rYQ" keySequence="ALT+CTRL+S" command="_gdjEU3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gekX8HukEeiLc70_J18rYQ" keySequence="ALT+CTRL+R" command="_gdqZM3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gemNJXukEeiLc70_J18rYQ" keySequence="ALT+CTRL+P" command="_gdoj7nukEeiLc70_J18rYQ"/>
</bindingTables>
<bindingTables xmi:id="_geccJ3ukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.views.tasks" bindingContext="_gdtcXHukEeiLc70_J18rYQ">
<bindings xmi:id="_geccKHukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+ARROW_DOWN" command="_gdk5i3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gedDNnukEeiLc70_J18rYQ" keySequence="ALT+ARROW_DOWN" command="_gdkSZXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gedDOnukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+ARROW_UP" command="_gdpK8XukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geffcXukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+I" command="_gdk5hXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gefffnukEeiLc70_J18rYQ" keySequence="SHIFT+INSERT" command="_gdh2PXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geh7s3ukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+U" command="_gdoj8XukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geh7unukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+R" command="_gdk5jnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gemNKnukEeiLc70_J18rYQ" keySequence="CTRL+CR" command="_gdjreXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_genbQnukEeiLc70_J18rYQ" keySequence="INSERT" command="_gdk5gHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gepQenukEeiLc70_J18rYQ" keySequence="F4" command="_gdhPJnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gep3gnukEeiLc70_J18rYQ" keySequence="ALT+ARROW_UP" command="_gdn8-XukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gep3jXukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+C" command="_gdmuyXukEeiLc70_J18rYQ"/>
</bindingTables>
<bindingTables xmi:id="_geeRVHukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.RepositoriesView" bindingContext="_gdtcZXukEeiLc70_J18rYQ">
<bindings xmi:id="_geeRVXukEeiLc70_J18rYQ" keySequence="CTRL+C" command="_gdjrX3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gejJ1nukEeiLc70_J18rYQ" keySequence="CTRL+V" command="_gdnVu3ukEeiLc70_J18rYQ"/>
</bindingTables>
<bindingTables xmi:id="_geeRVnukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.ReflogView" bindingContext="_gdtcVnukEeiLc70_J18rYQ">
<bindings xmi:id="_geeRV3ukEeiLc70_J18rYQ" keySequence="CTRL+C" command="_gdh2PHukEeiLc70_J18rYQ"/>
</bindingTables>
<bindingTables xmi:id="_gee4ZXukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.memory.abstractasynctablerendering" bindingContext="_gdtcVHukEeiLc70_J18rYQ">
<bindings xmi:id="_gee4ZnukEeiLc70_J18rYQ" keySequence="CTRL+G" command="_gdpK_HukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gegtkXukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+," command="_gdpyEXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gejJ03ukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+." command="_gdpK-3ukEeiLc70_J18rYQ"/>
</bindingTables>
<bindingTables xmi:id="_gee4Z3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.javascriptViewScope" bindingContext="_gdtcYXukEeiLc70_J18rYQ">
<bindings xmi:id="_gee4aHukEeiLc70_J18rYQ" keySequence="CTRL+G" command="_gdoj2HukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geffcHukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+G" command="_gdnV1XukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geffdHukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+I" command="_gdnV3nukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geffeHukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+H" command="_gdqZW3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gefffHukEeiLc70_J18rYQ" keySequence="ALT+CTRL+H" command="_gdpK9HukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gehUqXukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+V" command="_gdjESnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geh7vXukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+R" command="_gdn85XukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geiixHukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+M" command="_gdpyIXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geiixnukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+S" command="_gdn833ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geiiyXukEeiLc70_J18rYQ" keySequence="SHIFT+F2" command="_gdpLD3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gejw5nukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+O" command="_gdh2MHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gejw8HukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+Z" command="_gdmHmXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gelmGHukEeiLc70_J18rYQ" keySequence="F3" command="_gdoj7HukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gemNJnukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+U" command="_gdjERnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gem0NHukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+L" command="_gdmuo3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_genbSHukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+T" command="_gdh2RnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geoCV3ukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+J" command="_gdn803ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gepQfXukEeiLc70_J18rYQ" keySequence="F4" command="_gdmHqnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geqekXukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+C" command="_gdjrY3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geqennukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+Q T" command="_gdn8z3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gerFqXukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+Q J" command="_gdpyLXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gerFrHukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+Q D" command="_gdoj5HukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gerFrXukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+Q P" command="_gdn87XukEeiLc70_J18rYQ"/>
</bindingTables>
<bindingTables xmi:id="_gee4a3ukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.debug.ui.debugging" bindingContext="_gdtcV3ukEeiLc70_J18rYQ">
<bindings xmi:id="_gee4bHukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+D" command="_gdpx_XukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geoCWXukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+I" command="_gdmHmnukEeiLc70_J18rYQ"/>
</bindingTables>
<bindingTables xmi:id="_geffcnukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.editors.task" bindingContext="_gdtcXXukEeiLc70_J18rYQ">
<bindings xmi:id="_geffc3ukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+I" command="_gdk5hXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gegtmXukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+M" command="_gdgA83ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geh7tHukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+U" command="_gdoj8XukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geh7u3ukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+R" command="_gdk5jnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geiixXukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+S" command="_gdkSd3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gejJ3nukEeiLc70_J18rYQ" keySequence="CTRL+O" command="_gdqZKHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geqekHukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+C" command="_gdmuyXukEeiLc70_J18rYQ"/>
</bindingTables>
<bindingTables xmi:id="_geffdXukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.context.views" bindingContext="_gds1QXukEeiLc70_J18rYQ">
<bindings xmi:id="_geffdnukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+H" command="_gdqZFHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geffenukEeiLc70_J18rYQ" keySequence="ALT+CTRL+H" command="_gdpK83ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gegtm3ukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+M" command="_gdmHoXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gehUp3ukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+V" command="_gdoj_XukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geh7uXukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+R" command="_gdmuqnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geiiwnukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+M" command="_gdn83nukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gejw6XukEeiLc70_J18rYQ" keySequence="ALT+CTRL+S" command="_gdkSgnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gelmF3ukEeiLc70_J18rYQ" keySequence="F3" command="_gdh2MXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gem0MnukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+L" command="_gdpK9XukEeiLc70_J18rYQ"/>
<bindings xmi:id="_genbR3ukEeiLc70_J18rYQ" keySequence="ALT+SHIFT+T" command="_gdokBXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geoCUHukEeiLc70_J18rYQ" keySequence="CTRL+N" command="_gdhPE3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_geopanukEeiLc70_J18rYQ" keySequence="ALT+CTRL+T" command="_gdk5dnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gepQdXukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+T" command="_gdoj9XukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gepQe3ukEeiLc70_J18rYQ" keySequence="F4" command="_gdmuq3ukEeiLc70_J18rYQ"/>
</bindingTables>
<bindingTables xmi:id="_gegGiXukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.console" bindingContext="_gds1WHukEeiLc70_J18rYQ">
<bindings xmi:id="_gegGinukEeiLc70_J18rYQ" keySequence="CTRL+D" command="_gdqZK3ukEeiLc70_J18rYQ"/>
</bindingTables>
<bindingTables xmi:id="_gegtl3ukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.debugging" bindingContext="_gdtcU3ukEeiLc70_J18rYQ">
<bindings xmi:id="_gegtmHukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+3" command="_gdhPGnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gehUo3ukEeiLc70_J18rYQ" keySequence="F5" command="_gdhPHXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gelmEnukEeiLc70_J18rYQ" keySequence="F7" command="_gdqZNnukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gelmE3ukEeiLc70_J18rYQ" keySequence="F8" command="_gdnV6HukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gemNInukEeiLc70_J18rYQ" keySequence="CTRL+R" command="_gdnVuXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gem0MXukEeiLc70_J18rYQ" keySequence="CTRL+F2" command="_gdpLC3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gepQfnukEeiLc70_J18rYQ" keySequence="F6" command="_gdmHkHukEeiLc70_J18rYQ"/>
</bindingTables>
<bindingTables xmi:id="_geh7sXukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.internal.wikitext.ui.editor.basicMarkupSourceContext" bindingContext="_gdtcX3ukEeiLc70_J18rYQ">
<bindings xmi:id="_geh7snukEeiLc70_J18rYQ" keySequence="F1" command="_gdfZ6nukEeiLc70_J18rYQ"/>
</bindingTables>
<bindingTables xmi:id="_gejJ33ukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.wikitext.ui.editor.markupSourceContext" bindingContext="_gdtcYHukEeiLc70_J18rYQ">
<bindings xmi:id="_gejJ4HukEeiLc70_J18rYQ" keySequence="CTRL+O" command="_gdgA_3ukEeiLc70_J18rYQ"/>
</bindingTables>
<bindingTables xmi:id="_gejw43ukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.wikitext.tasks.ui.markupSourceContext" bindingContext="_gdtcY3ukEeiLc70_J18rYQ">
<bindings xmi:id="_gejw5HukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+O" command="_gdgA_3ukEeiLc70_J18rYQ"/>
</bindingTables>
<bindingTables xmi:id="_gemNK3ukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.BreakpointView" bindingContext="_gds1QnukEeiLc70_J18rYQ">
<bindings xmi:id="_gemNLHukEeiLc70_J18rYQ" keySequence="CTRL+CR" command="_gdhPJ3ukEeiLc70_J18rYQ"/>
</bindingTables>
<bindingTables xmi:id="_gem0NXukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.memoryview" bindingContext="_gds1R3ukEeiLc70_J18rYQ">
<bindings xmi:id="_gem0NnukEeiLc70_J18rYQ" keySequence="ALT+CTRL+N" command="_gdqZI3ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gem0P3ukEeiLc70_J18rYQ" keySequence="ALT+CTRL+M" command="_gdmHnHukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gem0QHukEeiLc70_J18rYQ" keySequence="CTRL+T" command="_gdjrWXukEeiLc70_J18rYQ"/>
<bindings xmi:id="_genbTXukEeiLc70_J18rYQ" keySequence="CTRL+N" command="_gdn873ukEeiLc70_J18rYQ"/>
<bindings xmi:id="_gepQcHukEeiLc70_J18rYQ" keySequence="CTRL+W" command="_gdn8yHukEeiLc70_J18rYQ"/>
</bindingTables>
<bindingTables xmi:id="_geoCW3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.chromium.debug.ui.editors.JsEditor.context" bindingContext="_gds1V3ukEeiLc70_J18rYQ">
<bindings xmi:id="_geoCXHukEeiLc70_J18rYQ" keySequence="CTRL+SHIFT+I" command="_gdqZJ3ukEeiLc70_J18rYQ"/>
</bindingTables>
<bindingTables xmi:id="_hEtx8XukEeiLc70_J18rYQ" bindingContext="_hEtx8HukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hEuZAXukEeiLc70_J18rYQ" bindingContext="_hEuZAHukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hEuZA3ukEeiLc70_J18rYQ" bindingContext="_hEuZAnukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hEvAEHukEeiLc70_J18rYQ" bindingContext="_hEuZBHukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hExcUHukEeiLc70_J18rYQ" bindingContext="_hEvAEXukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hEyDYHukEeiLc70_J18rYQ" bindingContext="_hExcUXukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hEyDYnukEeiLc70_J18rYQ" bindingContext="_hEyDYXukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hEyDZHukEeiLc70_J18rYQ" bindingContext="_hEyDY3ukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hEyqcXukEeiLc70_J18rYQ" bindingContext="_hEyqcHukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hEz4kXukEeiLc70_J18rYQ" bindingContext="_hEz4kHukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE1twXukEeiLc70_J18rYQ" bindingContext="_hE1twHukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE1tw3ukEeiLc70_J18rYQ" bindingContext="_hE1twnukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE2U0XukEeiLc70_J18rYQ" bindingContext="_hE2U0HukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE2U03ukEeiLc70_J18rYQ" bindingContext="_hE2U0nukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE2U1XukEeiLc70_J18rYQ" bindingContext="_hE2U1HukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE274XukEeiLc70_J18rYQ" bindingContext="_hE274HukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE2743ukEeiLc70_J18rYQ" bindingContext="_hE274nukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE275XukEeiLc70_J18rYQ" bindingContext="_hE275HukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE3i8XukEeiLc70_J18rYQ" bindingContext="_hE3i8HukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE3i83ukEeiLc70_J18rYQ" bindingContext="_hE3i8nukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE3i9XukEeiLc70_J18rYQ" bindingContext="_hE3i9HukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE4KAXukEeiLc70_J18rYQ" bindingContext="_hE4KAHukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE4KA3ukEeiLc70_J18rYQ" bindingContext="_hE4KAnukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE4KBXukEeiLc70_J18rYQ" bindingContext="_hE4KBHukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE4xEXukEeiLc70_J18rYQ" bindingContext="_hE4xEHukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE4xE3ukEeiLc70_J18rYQ" bindingContext="_hE4xEnukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE4xFXukEeiLc70_J18rYQ" bindingContext="_hE4xFHukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE5YIHukEeiLc70_J18rYQ" bindingContext="_hE4xFnukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE5YInukEeiLc70_J18rYQ" bindingContext="_hE5YIXukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE5YJHukEeiLc70_J18rYQ" bindingContext="_hE5YI3ukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE5YJnukEeiLc70_J18rYQ" bindingContext="_hE5YJXukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE5_MXukEeiLc70_J18rYQ" bindingContext="_hE5_MHukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE5_M3ukEeiLc70_J18rYQ" bindingContext="_hE5_MnukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE6mQHukEeiLc70_J18rYQ" bindingContext="_hE5_NHukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE6mQnukEeiLc70_J18rYQ" bindingContext="_hE6mQXukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE6mRHukEeiLc70_J18rYQ" bindingContext="_hE6mQ3ukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE6mRnukEeiLc70_J18rYQ" bindingContext="_hE6mRXukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE7NUXukEeiLc70_J18rYQ" bindingContext="_hE7NUHukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE7NU3ukEeiLc70_J18rYQ" bindingContext="_hE7NUnukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE70YXukEeiLc70_J18rYQ" bindingContext="_hE70YHukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE70Y3ukEeiLc70_J18rYQ" bindingContext="_hE70YnukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE70ZXukEeiLc70_J18rYQ" bindingContext="_hE70ZHukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE8bcXukEeiLc70_J18rYQ" bindingContext="_hE8bcHukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE8bc3ukEeiLc70_J18rYQ" bindingContext="_hE8bcnukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE8bdXukEeiLc70_J18rYQ" bindingContext="_hE8bdHukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE9CgXukEeiLc70_J18rYQ" bindingContext="_hE9CgHukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE9Cg3ukEeiLc70_J18rYQ" bindingContext="_hE9CgnukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE9pkHukEeiLc70_J18rYQ" bindingContext="_hE9ChHukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="_hE-QoXukEeiLc70_J18rYQ" bindingContext="_hE-QoHukEeiLc70_J18rYQ"/>
<bindingTables xmi:id="__jejcJr-EeiGr6L2zFyJzw" elementId="basheditor.editors.BashEditor.context" bindingContext="__hniQJr-EeiGr6L2zFyJzw">
<bindings xmi:id="__jejcZr-EeiGr6L2zFyJzw" keySequence="CTRL+7" command="__hiCsJr-EeiGr6L2zFyJzw"/>
<bindings xmi:id="__jfKgJr-EeiGr6L2zFyJzw" keySequence="CTRL+O" command="__hiCsZr-EeiGr6L2zFyJzw"/>
<bindings xmi:id="__jgYoJr-EeiGr6L2zFyJzw" keySequence="CTRL+SHIFT+P" command="__hipw5r-EeiGr6L2zFyJzw"/>
</bindingTables>
<rootContext xmi:id="_gc15pHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.contexts.dialogAndWindow" contributorURI="platform:/plugin/org.eclipse.platform" name="In Dialogs and Windows" description="Either a dialog or a window is open">
<children xmi:id="_gc15pXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.contexts.window" contributorURI="platform:/plugin/org.eclipse.platform" name="In Windows" description="A window is open">
<children xmi:id="_gc15pnukEeiLc70_J18rYQ" elementId="org.eclipse.e4.ui.contexts.views" contributorURI="platform:/plugin/org.eclipse.platform" name="%bindingcontext.name.bindingView"/>
<children xmi:id="_gds1QHukEeiLc70_J18rYQ" elementId="org.eclipse.tm.terminal.EditContext" name="Terminal Control in Focus" description="Show modified keyboard shortcuts in context menu"/>
<children xmi:id="_gds1QXukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.context.views" name="DLTK View" description="DLTK Views Context"/>
<children xmi:id="_gds1QnukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.BreakpointView" name="In Breakpoints View" description="The breakpoints view context"/>
<children xmi:id="_gds1Q3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.textEditorScope" name="Editing Text" description="Editing Text Context">
<children xmi:id="_gds1RHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.javaEditorScope" name="Editing JavaScript Source" description="Editing JavaScript Source Context">
<children xmi:id="_gdtcYXukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.javascriptViewScope" name="JavaScript View" description="JavaScript View Context"/>
</children>
<children xmi:id="_gds1SHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.sse.ui.structuredTextEditorScope" name="Editing in Structured Text Editors" description="Editing in Structured Text Editors">
<children xmi:id="_gds1SXukEeiLc70_J18rYQ" elementId="org.eclipse.wst.xml.cleanup" name="XML Source Cleanup" description="XML Source Cleanup"/>
<children xmi:id="_gds1SnukEeiLc70_J18rYQ" elementId="org.eclipse.php.ui.phpEditorScope" name="Editing PHP source" description="Editing PHP source context"/>
<children xmi:id="_gds1S3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.sse.comments" name="Source Comments in Structured Text Editors" description="Source Comments in Structured Text Editors"/>
<children xmi:id="_gds1THukEeiLc70_J18rYQ" elementId="org.eclipse.php.core.phpsource" name="Editing PHP source" description="Editing PHP source context"/>
<children xmi:id="_gds1TXukEeiLc70_J18rYQ" elementId="org.eclipse.core.runtime.xml" name="Editing XML Source" description="Editing XML Source"/>
<children xmi:id="_gds1TnukEeiLc70_J18rYQ" elementId="org.eclipse.wst.xml.occurrences" name="XML Source Occurrences" description="XML Source Occurrences"/>
<children xmi:id="_gds1T3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.xml.grammar" name="XML Source Grammar" description="XML Source Grammar"/>
<children xmi:id="_gds1UHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.xml.comments" name="XML Source Comments" description="XML Source Comments"/>
<children xmi:id="_gds1UnukEeiLc70_J18rYQ" elementId="org.eclipse.wst.xml.expand" name="XML Source Expand/Collapse" description="XML Source Expand/Collapse"/>
<children xmi:id="_gds1U3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.sse.hideFormat" name="Editing in Structured Text Editors" description="Editing in Structured Text Editors"/>
<children xmi:id="_gds1VHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.xml.selection" name="XML Source Selection" description="XML Source Selection"/>
<children xmi:id="_gds1WnukEeiLc70_J18rYQ" elementId="org.eclipse.wst.xml.navigation" name="XML Source Navigation" description="XML Source Navigation"/>
<children xmi:id="_gdtcUnukEeiLc70_J18rYQ" elementId="org.eclipse.wst.json.core.jsonsource" name="%scope.structured.text.editor.json.name" description="%scope.structured.text.editor.json.description"/>
<children xmi:id="_gdtcWXukEeiLc70_J18rYQ" elementId="org.eclipse.wst.css.core.csssource" name="Editing CSS Source" description="Editing CSS Source"/>
<children xmi:id="_gdtcW3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.html.core.htmlsource" name="Editing HTML Source" description="Editing HTML Source"/>
<children xmi:id="_gdtcZHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.xml.dependencies" name="XML Source Dependencies" description="XML Source Dependencies"/>
<children xmi:id="_gdtcZnukEeiLc70_J18rYQ" elementId="org.eclipse.wst.html.occurrences" name="HTML Source Occurrences" description="HTML Source Occurrences"/>
</children>
<children xmi:id="_gdtcWnukEeiLc70_J18rYQ" elementId="org.eclipse.wst.xsd.ui.text.editor.context" name="Editing XSD context"/>
<children xmi:id="_gdtcXXukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.editors.task" name="In Tasks Editor"/>
<children xmi:id="_gdtcXnukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.scriptEditorScope" name="Editing Script Source" description="Editing Script Source Context"/>
<children xmi:id="_gdtcX3ukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.internal.wikitext.ui.editor.basicMarkupSourceContext" name="WikiText Markup Source Context" description="WikiText markup editing context">
<children xmi:id="_gdtcYHukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.wikitext.ui.editor.markupSourceContext" name="WikiText Markup Source Context" description="WikiText markup editing context"/>
<children xmi:id="_gdtcY3ukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.wikitext.tasks.ui.markupSourceContext" name="Task Markup Editor Source Context"/>
</children>
<children xmi:id="__hniQJr-EeiGr6L2zFyJzw" elementId="basheditor.editors.BashEditor.context" name="Bash context" description="Editing bash files"/>
</children>
<children xmi:id="_gds1RXukEeiLc70_J18rYQ" elementId="org.eclipse.compare.compareEditorScope" name="Comparing in an Editor" description="Comparing in an Editor"/>
<children xmi:id="_gds1R3ukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.memoryview" name="In Memory View" description="In memory view"/>
<children xmi:id="_gds1WHukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.console" name="In I/O Console" description="In I/O console"/>
<children xmi:id="_gds1WXukEeiLc70_J18rYQ" elementId="org.eclipse.tm.terminal.view.ui.TerminalsView" name="In Terminal View" description="Show modified keyboard shortcuts in context menu"/>
<children xmi:id="_gdtcUHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.console.ConsoleView" name="In Console View" description="In Console View"/>
<children xmi:id="_gdtcUXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.serverViewScope" name="In Servers View" description="In Servers View"/>
<children xmi:id="_gdtcU3ukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.debugging" name="Debugging" description="Debugging programs">
<children xmi:id="_gdtcVHukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.memory.abstractasynctablerendering" name="In Table Memory Rendering" description="In Table Memory Rendering"/>
<children xmi:id="_gdtcVXukEeiLc70_J18rYQ" elementId="org.eclipse.php.debug.ui.xdebug" name="Debugging PHP" description="Debugging PHP"/>
<children xmi:id="_gdtcV3ukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.debug.ui.debugging" name="Debugging Script" description="Context available during script debugging"/>
<children xmi:id="_gdtcYnukEeiLc70_J18rYQ" elementId="org.eclipse.php.debug.ui.debugging" name="Debugging PHP" description="Debugging PHP"/>
</children>
<children xmi:id="_gdtcVnukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.ReflogView" name="In Git Reflog View"/>
<children xmi:id="_gdtcWHukEeiLc70_J18rYQ" elementId="org.eclipse.tm.terminal.TerminalContext" name="Terminal Typing Connected" description="Override ALT+x menu access keys while typing into the Terminal"/>
<children xmi:id="_gdtcXHukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.views.tasks" name="In Tasks View"/>
<children xmi:id="_gdtcZXukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.RepositoriesView" name="In Git Repositories View"/>
</children>
<children xmi:id="_gc15p3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.contexts.dialog" contributorURI="platform:/plugin/org.eclipse.platform" name="In Dialogs" description="A dialog is open"/>
<children xmi:id="_gds1V3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.chromium.debug.ui.editors.JsEditor.context" name="Chromium Debug" description="Debug Chromium JavaScript"/>
</rootContext>
<rootContext xmi:id="_gds1RnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.contexts.workbenchMenu" name="Workbench Menu" description="When no Workbench windows are active"/>
<rootContext xmi:id="_gds1UXukEeiLc70_J18rYQ" elementId="org.eclipse.wst.xsd.ui.editor.sourceView" name="XSD Editor Source View" description="XSD Editor Source View"/>
<rootContext xmi:id="_gds1VXukEeiLc70_J18rYQ" elementId="org.eclipse.wst.xsd.ui.editor.designView" name="XSD Editor Design View" description="XSD Editor Design View"/>
<rootContext xmi:id="_gds1VnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.contexts.actionSet" name="Action Set" description="Parent context for action sets"/>
<rootContext xmi:id="_hEtx8HukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.breakpointActionSet" name="Auto::org.eclipse.debug.ui.breakpointActionSet"/>
<rootContext xmi:id="_hEuZAHukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.debugActionSet" name="Auto::org.eclipse.debug.ui.debugActionSet"/>
<rootContext xmi:id="_hEuZAnukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.launchActionSet" name="Auto::org.eclipse.debug.ui.launchActionSet"/>
<rootContext xmi:id="_hEuZBHukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.profileActionSet" name="Auto::org.eclipse.debug.ui.profileActionSet"/>
<rootContext xmi:id="_hEvAEXukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.debug.ui.ScriptDebugActionSet" name="Auto::org.eclipse.dltk.debug.ui.ScriptDebugActionSet"/>
<rootContext xmi:id="_hExcUXukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.dltk.actionSet" name="Auto::org.eclipse.mylyn.dltk.actionSet"/>
<rootContext xmi:id="_hEyDYXukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.dltk.actionSet.browsing" name="Auto::org.eclipse.mylyn.dltk.actionSet.browsing"/>
<rootContext xmi:id="_hEyDY3ukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.testing.testingActionSet" name="Auto::org.eclipse.dltk.testing.testingActionSet"/>
<rootContext xmi:id="_hEyqcHukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.ScriptCodingActionSet" name="Auto::org.eclipse.dltk.ui.ScriptCodingActionSet"/>
<rootContext xmi:id="_hEz4kHukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.A_OpenActionSet" name="Auto::org.eclipse.dltk.ui.A_OpenActionSet"/>
<rootContext xmi:id="_hE1twHukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.text.actionSet.presentation" name="Auto::org.eclipse.dltk.ui.text.actionSet.presentation"/>
<rootContext xmi:id="_hE1twnukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.SearchActionSet" name="Auto::org.eclipse.dltk.ui.SearchActionSet"/>
<rootContext xmi:id="_hE2U0HukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.gitaction" name="Auto::org.eclipse.egit.ui.gitaction"/>
<rootContext xmi:id="_hE2U0nukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.navigation" name="Auto::org.eclipse.egit.ui.navigation"/>
<rootContext xmi:id="_hE2U1HukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.context.ui.actionSet" name="Auto::org.eclipse.mylyn.context.ui.actionSet"/>
<rootContext xmi:id="_hE274HukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.doc.actionSet" name="Auto::org.eclipse.mylyn.doc.actionSet"/>
<rootContext xmi:id="_hE274nukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.navigation" name="Auto::org.eclipse.mylyn.tasks.ui.navigation"/>
<rootContext xmi:id="_hE275HukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.navigation.additions" name="Auto::org.eclipse.mylyn.tasks.ui.navigation.additions"/>
<rootContext xmi:id="_hE3i8HukEeiLc70_J18rYQ" elementId="org.eclipse.php.debug.ui.actionSet" name="Auto::org.eclipse.php.debug.ui.actionSet"/>
<rootContext xmi:id="_hE3i8nukEeiLc70_J18rYQ" elementId="org.eclipse.php.refactoring.ui.extractSet" name="Auto::org.eclipse.php.refactoring.ui.extractSet"/>
<rootContext xmi:id="_hE3i9HukEeiLc70_J18rYQ" elementId="org.eclipse.php.ui.text.php.actionSet.presentation" name="Auto::org.eclipse.php.ui.text.php.actionSet.presentation"/>
<rootContext xmi:id="_hE4KAHukEeiLc70_J18rYQ" elementId="org.eclipse.php.ui.PHPActionSet" name="Auto::org.eclipse.php.ui.PHPActionSet"/>
<rootContext xmi:id="_hE4KAnukEeiLc70_J18rYQ" elementId="org.eclipse.php.ui.A_OpenActionSet" name="Auto::org.eclipse.php.ui.A_OpenActionSet"/>
<rootContext xmi:id="_hE4KBHukEeiLc70_J18rYQ" elementId="org.eclipse.php.ui.SearchActionSet" name="Auto::org.eclipse.php.ui.SearchActionSet"/>
<rootContext xmi:id="_hE4xEHukEeiLc70_J18rYQ" elementId="org.eclipse.pdt.ui.RefactoringActionSet" name="Auto::org.eclipse.pdt.ui.RefactoringActionSet"/>
<rootContext xmi:id="_hE4xEnukEeiLc70_J18rYQ" elementId="org.eclipse.pdt.ui.SourceActionsSet" name="Auto::org.eclipse.pdt.ui.SourceActionsSet"/>
<rootContext xmi:id="_hE4xFHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.cheatsheets.actionSet" name="Auto::org.eclipse.ui.cheatsheets.actionSet"/>
<rootContext xmi:id="_hE4xFnukEeiLc70_J18rYQ" elementId="org.eclipse.search.searchActionSet" name="Auto::org.eclipse.search.searchActionSet"/>
<rootContext xmi:id="_hE5YIXukEeiLc70_J18rYQ" elementId="org.eclipse.team.ui.actionSet" name="Auto::org.eclipse.team.ui.actionSet"/>
<rootContext xmi:id="_hE5YI3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.actionSet.annotationNavigation" name="Auto::org.eclipse.ui.edit.text.actionSet.annotationNavigation"/>
<rootContext xmi:id="_hE5YJXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.actionSet.navigation" name="Auto::org.eclipse.ui.edit.text.actionSet.navigation"/>
<rootContext xmi:id="_hE5_MHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo" name="Auto::org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo"/>
<rootContext xmi:id="_hE5_MnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.externaltools.ExternalToolsSet" name="Auto::org.eclipse.ui.externaltools.ExternalToolsSet"/>
<rootContext xmi:id="_hE5_NHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.NavigateActionSet" name="Auto::org.eclipse.ui.NavigateActionSet"/>
<rootContext xmi:id="_hE6mQXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.actionSet.keyBindings" name="Auto::org.eclipse.ui.actionSet.keyBindings"/>
<rootContext xmi:id="_hE6mQ3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.WorkingSetModificationActionSet" name="Auto::org.eclipse.ui.WorkingSetModificationActionSet"/>
<rootContext xmi:id="_hE6mRXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.WorkingSetActionSet" name="Auto::org.eclipse.ui.WorkingSetActionSet"/>
<rootContext xmi:id="_hE7NUHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.actionSet.openFiles" name="Auto::org.eclipse.ui.actionSet.openFiles"/>
<rootContext xmi:id="_hE7NUnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.actionSet.presentation" name="Auto::org.eclipse.ui.edit.text.actionSet.presentation"/>
<rootContext xmi:id="_hE70YHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.chromium.debug.ui.actionSets" name="Auto::org.eclipse.wst.jsdt.chromium.debug.ui.actionSets"/>
<rootContext xmi:id="_hE70YnukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.text.java.actionSet.presentation" name="Auto::org.eclipse.wst.jsdt.ui.text.java.actionSet.presentation"/>
<rootContext xmi:id="_hE70ZHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.JavaElementCreationActionSet" name="Auto::org.eclipse.wst.jsdt.ui.JavaElementCreationActionSet"/>
<rootContext xmi:id="_hE8bcHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.JavaActionSet" name="Auto::org.eclipse.wst.jsdt.ui.JavaActionSet"/>
<rootContext xmi:id="_hE8bcnukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.A_OpenActionSet" name="Auto::org.eclipse.wst.jsdt.ui.A_OpenActionSet"/>
<rootContext xmi:id="_hE8bdHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.CodingActionSet" name="Auto::org.eclipse.wst.jsdt.ui.CodingActionSet"/>
<rootContext xmi:id="_hE9CgHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.SearchActionSet" name="Auto::org.eclipse.wst.jsdt.ui.SearchActionSet"/>
<rootContext xmi:id="_hE9CgnukEeiLc70_J18rYQ" elementId="org.eclipse.wst.server.ui.new.actionSet" name="Auto::org.eclipse.wst.server.ui.new.actionSet"/>
<rootContext xmi:id="_hE9ChHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.server.ui.internal.webbrowser.actionSet" name="Auto::org.eclipse.wst.server.ui.internal.webbrowser.actionSet"/>
<rootContext xmi:id="_hE-QoHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.web.ui.wizardsActionSet" name="Auto::org.eclipse.wst.web.ui.wizardsActionSet"/>
<descriptors xmi:id="_gh-RQHukEeiLc70_J18rYQ" elementId="org.eclipse.e4.ui.compatibility.editor" allowMultiple="true" category="org.eclipse.e4.primaryDataStack" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor">
<tags>Editor</tags>
</descriptors>
<descriptors xmi:id="_giDJwHukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.DebugView" label="Debug" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/debug_view.png" tooltip="" category="Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.launch.LaunchView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
<tags>View</tags>
<tags>categoryTag:Debug</tags>
</descriptors>
<descriptors xmi:id="_giNh0HukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.BreakpointView" label="Breakpoints" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/breakpoint_view.png" tooltip="" allowMultiple="true" category="Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.breakpoints.BreakpointsView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
<tags>View</tags>
<tags>categoryTag:Debug</tags>
</descriptors>
<descriptors xmi:id="_giOv8HukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.VariableView" label="Variables" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/variable_view.png" tooltip="" allowMultiple="true" category="Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.variables.VariablesView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
<tags>View</tags>
<tags>categoryTag:Debug</tags>
</descriptors>
<descriptors xmi:id="_giPXAHukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.ExpressionView" label="Expressions" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/watchlist_view.png" tooltip="" allowMultiple="true" category="Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.expression.ExpressionView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
<tags>View</tags>
<tags>categoryTag:Debug</tags>
</descriptors>
<descriptors xmi:id="_giP-EHukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.RegisterView" label="Registers" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/register_view.png" tooltip="" allowMultiple="true" category="Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.registers.RegistersView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
<tags>View</tags>
<tags>categoryTag:Debug</tags>
</descriptors>
<descriptors xmi:id="_giQlIHukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.ModuleView" label="Modules" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/module_view.png" tooltip="" allowMultiple="true" category="Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.modules.ModulesView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
<tags>View</tags>
<tags>categoryTag:Debug</tags>
</descriptors>
<descriptors xmi:id="_giRMMHukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.MemoryView" label="Memory" iconURI="platform:/plugin/org.eclipse.debug.ui/icons/full/eview16/memory_view.png" tooltip="" allowMultiple="true" category="Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.memory.MemoryView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
<tags>View</tags>
<tags>categoryTag:Debug</tags>
</descriptors>
<descriptors xmi:id="_giRzQHukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.debug.ui.dbgpLogView" label="Script Debug Log" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.png" tooltip="" category="Dynamic Languages" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.dltk.internal.debug.ui.log.ScriptDebugLogView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.dltk.debug.ui"/>
<tags>View</tags>
<tags>categoryTag:Dynamic Languages</tags>
</descriptors>
<descriptors xmi:id="_giTBYHukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.debug.ui.ScriptDisplayView" label="Interactive Console" iconURI="platform:/plugin/org.eclipse.dltk.debug.ui/icons/full/eview16/debug_console.gif" tooltip="" category="Dynamic Languages" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.dltk.debug.ui.display.ScriptDisplayView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.dltk.debug.ui"/>
<tags>View</tags>
<tags>categoryTag:Dynamic Languages</tags>
</descriptors>
<descriptors xmi:id="_giTocHukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.testing.ResultView" label="Script Unit Test" iconURI="platform:/plugin/org.eclipse.dltk.testing/icons/full/eview16/testing.gif" tooltip="" category="Dynamic Languages" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.dltk.internal.testing.ui.TestRunnerViewPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.dltk.testing"/>
<tags>View</tags>
<tags>categoryTag:Dynamic Languages</tags>
</descriptors>
<descriptors xmi:id="_giUPgHukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.ScriptExplorer" label="Script Explorer" iconURI="platform:/plugin/org.eclipse.dltk.ui/icons/full/eview16/package.png" tooltip="" category="Dynamic Languages" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.dltk.internal.ui.scriptview.ScriptExplorerPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.dltk.ui"/>
<tags>View</tags>
<tags>categoryTag:Dynamic Languages</tags>
</descriptors>
<descriptors xmi:id="_giVdoHukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.callhierarchy.view" label="Call Hierarchy" iconURI="platform:/plugin/org.eclipse.dltk.ui/icons/full/eview16/call_hierarchy.png" tooltip="" category="Dynamic Languages" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.dltk.internal.ui.callhierarchy.CallHierarchyViewPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.dltk.ui"/>
<tags>View</tags>
<tags>categoryTag:Dynamic Languages</tags>
</descriptors>
<descriptors xmi:id="_giWEsHukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.TypeHierarchy" label="Type Hierarchy" iconURI="platform:/plugin/org.eclipse.dltk.ui/icons/full/eview16/class_hi.png" tooltip="" category="Dynamic Languages" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.dltk.internal.ui.typehierarchy.TypeHierarchyViewPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.dltk.ui"/>
<tags>View</tags>
<tags>categoryTag:Dynamic Languages</tags>
</descriptors>
<descriptors xmi:id="_giWrwHukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.RepositoriesView" label="Git Repositories" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/repo_rep.gif" tooltip="" category="Git" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.egit.ui.internal.repository.RepositoriesView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.egit.ui"/>
<tags>View</tags>
<tags>categoryTag:Git</tags>
</descriptors>
<descriptors xmi:id="_giXS0HukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.StagingView" label="Git Staging" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/staging.png" tooltip="" category="Git" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.egit.ui.internal.staging.StagingView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.egit.ui"/>
<tags>View</tags>
<tags>categoryTag:Git</tags>
</descriptors>
<descriptors xmi:id="_giX54HukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.InteractiveRebaseView" label="Git Interactive Rebase" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/rebase_interactive.gif" tooltip="" category="Git" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.egit.ui.internal.rebase.RebaseInteractiveView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.egit.ui"/>
<tags>View</tags>
<tags>categoryTag:Git</tags>
</descriptors>
<descriptors xmi:id="_giYg8HukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.CompareTreeView" label="Git Tree Compare" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/obj16/gitrepository.gif" tooltip="" category="Git" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.egit.ui.internal.dialogs.CompareTreeView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.egit.ui"/>
<tags>View</tags>
<tags>categoryTag:Git</tags>
</descriptors>
<descriptors xmi:id="_giZIAHukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.ReflogView" label="Git Reflog" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/reflog.gif" tooltip="" category="Git" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.egit.ui.internal.reflog.ReflogView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.egit.ui"/>
<tags>View</tags>
<tags>categoryTag:Git</tags>
</descriptors>
<descriptors xmi:id="_giZvEHukEeiLc70_J18rYQ" elementId="org.eclipse.gef.ui.palette_view" label="Palette" iconURI="platform:/plugin/org.eclipse.gef/icons/palette_view.gif" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.gef.ui.views.palette.PaletteView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.gef"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_gia9MHukEeiLc70_J18rYQ" elementId="org.eclipse.help.ui.HelpView" label="Help" iconURI="platform:/plugin/org.eclipse.help.ui/icons/view16/help_view.gif" tooltip="" category="Help" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.help.ui.internal.views.HelpView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.help.ui"/>
<tags>View</tags>
<tags>categoryTag:Help</tags>
</descriptors>
<descriptors xmi:id="_gibkQHukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.commons.repositories.ui.navigator.Repositories" label="Team Repositories" iconURI="platform:/plugin/org.eclipse.mylyn.commons.repositories.ui/icons/eview16/repositories.gif" tooltip="" category="Mylyn" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.mylyn.internal.commons.repositories.ui.RepositoriesView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.mylyn.commons.repositories.ui"/>
<tags>View</tags>
<tags>categoryTag:Mylyn</tags>
</descriptors>
<descriptors xmi:id="_gicLUHukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.views.tasks" label="Task List" iconURI="platform:/plugin/org.eclipse.mylyn.tasks.ui/icons/eview16/task-list.gif" tooltip="" allowMultiple="true" category="Mylyn" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.mylyn.internal.tasks.ui.views.TaskListView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.mylyn.tasks.ui"/>
<tags>View</tags>
<tags>categoryTag:Mylyn</tags>
</descriptors>
<descriptors xmi:id="_gicyYHukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.views.repositories" label="Task Repositories" iconURI="platform:/plugin/org.eclipse.mylyn.tasks.ui/icons/eview16/repositories.gif" tooltip="" category="Mylyn" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.mylyn.internal.tasks.ui.views.TaskRepositoriesView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.mylyn.tasks.ui"/>
<tags>View</tags>
<tags>categoryTag:Mylyn</tags>
</descriptors>
<descriptors xmi:id="_gidZcHukEeiLc70_J18rYQ" elementId="org.eclipse.oomph.p2.ui.RepositoryExplorer" label="Repository Explorer" iconURI="platform:/plugin/org.eclipse.oomph.p2.ui/icons/obj16/repository.gif" tooltip="" category="Oomph" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.oomph.p2.internal.ui.RepositoryExplorer"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.oomph.p2.ui"/>
<tags>View</tags>
<tags>categoryTag:Oomph</tags>
</descriptors>
<descriptors xmi:id="_gieAgHukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.PHPDebugOutput" label="Debug Output" iconURI="platform:/plugin/org.eclipse.php.debug.ui/icon/full/obj16/debug_output.png" tooltip="" category="PHP Tools" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.php.internal.debug.ui.views.DebugOutputView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.php.debug.ui"/>
<tags>View</tags>
<tags>categoryTag:PHP Tools</tags>
</descriptors>
<descriptors xmi:id="_gifOoHukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.PHPBrowserOutput" label="Browser Output" iconURI="platform:/plugin/org.eclipse.php.debug.ui/icon/full/obj16/browser_output.png" tooltip="" category="PHP Tools" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.php.internal.debug.ui.views.DebugBrowserView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.php.debug.ui"/>
<tags>View</tags>
<tags>categoryTag:PHP Tools</tags>
</descriptors>
<descriptors xmi:id="_gif1sHukEeiLc70_J18rYQ" elementId="org.eclipse.php.ui.explorer" label="PHP Explorer" iconURI="platform:/plugin/org.eclipse.php.ui/icons/full/obj16/php_explorer.png" tooltip="" category="PHP Tools" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.php.internal.ui.explorer.PHPExplorerPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.php.ui"/>
<tags>View</tags>
<tags>categoryTag:PHP Tools</tags>
</descriptors>
<descriptors xmi:id="_gigcwHukEeiLc70_J18rYQ" elementId="org.eclipse.php.ui.functions" label="PHP Functions" iconURI="platform:/plugin/org.eclipse.php.ui/icons/full/obj16/phpfile.png" tooltip="" category="PHP Tools" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.php.internal.ui.functions.PHPFunctionsPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.php.ui"/>
<tags>View</tags>
<tags>categoryTag:PHP Tools</tags>
</descriptors>
<descriptors xmi:id="_gihD0HukEeiLc70_J18rYQ" elementId="org.eclipse.php.ui.projectOutline" label="PHP Project Outline" iconURI="platform:/plugin/org.eclipse.php.ui/icons/full/obj16/php_project_outline.png" tooltip="" category="PHP Tools" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.php.internal.ui.projectoutlineview.ProjectOutlinePart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.php.ui"/>
<tags>View</tags>
<tags>categoryTag:PHP Tools</tags>
</descriptors>
<descriptors xmi:id="_gihD0XukEeiLc70_J18rYQ" elementId="org.eclipse.search.SearchResultView" label="Classic Search" iconURI="platform:/plugin/org.eclipse.search/icons/full/eview16/searchres.gif" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.search.internal.ui.SearchResultView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.search"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_giiR8HukEeiLc70_J18rYQ" elementId="org.eclipse.search.ui.views.SearchView" label="Search" iconURI="platform:/plugin/org.eclipse.search/icons/full/eview16/searchres.gif" tooltip="" allowMultiple="true" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.search2.internal.ui.SearchView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.search"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_giiR8XukEeiLc70_J18rYQ" elementId="org.eclipse.team.sync.views.SynchronizeView" label="Synchronize" iconURI="platform:/plugin/org.eclipse.team.ui/icons/full/eview16/synch_synch.gif" tooltip="" allowMultiple="true" category="Team" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.team.internal.ui.synchronize.SynchronizeView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.team.ui"/>
<tags>View</tags>
<tags>categoryTag:Team</tags>
</descriptors>
<descriptors xmi:id="_gijgEHukEeiLc70_J18rYQ" elementId="org.eclipse.team.ui.GenericHistoryView" label="History" iconURI="platform:/plugin/org.eclipse.team.ui/icons/full/eview16/history_view.gif" tooltip="" allowMultiple="true" category="Team" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.team.internal.ui.history.GenericHistoryView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.team.ui"/>
<tags>View</tags>
<tags>categoryTag:Team</tags>
</descriptors>
<descriptors xmi:id="_gikHIHukEeiLc70_J18rYQ" elementId="org.eclipse.tm.terminal.view.ui.TerminalsView" label="Terminal" iconURI="platform:/plugin/org.eclipse.tm.terminal.view.ui/icons/eview16/terminal_view.gif" tooltip="" allowMultiple="true" category="Terminal" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.tm.terminal.view.ui.view.TerminalsView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.tm.terminal.view.ui"/>
<tags>View</tags>
<tags>categoryTag:Terminal</tags>
</descriptors>
<descriptors xmi:id="_gikuMHukEeiLc70_J18rYQ" elementId="org.eclipse.tcf.te.ui.terminals.TerminalsView" label="Terminals (Old)" iconURI="platform:/plugin/org.eclipse.tm.terminal.view.ui/icons/eview16/terminal_view.gif" tooltip="" allowMultiple="true" category="Other" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.tm.terminal.view.ui.view.OldTerminalsViewHandler"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.tm.terminal.view.ui"/>
<tags>View</tags>
<tags>categoryTag:Other</tags>
</descriptors>
<descriptors xmi:id="_gilVQHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.internal.introview" label="Welcome" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.png" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.ViewIntroAdapterPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_gilVQXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.browser.view" label="Internal Web Browser" iconURI="platform:/plugin/org.eclipse.ui.browser/icons/obj16/internal_browser.png" tooltip="" allowMultiple="true" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.browser.WebBrowserView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.browser"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_gil8UHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.cheatsheets.views.CheatSheetView" label="Cheat Sheets" iconURI="platform:/plugin/org.eclipse.ui.cheatsheets/icons/view16/cheatsheet_view.gif" tooltip="" category="Help" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.cheatsheets.views.CheatSheetView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.cheatsheets"/>
<tags>View</tags>
<tags>categoryTag:Help</tags>
</descriptors>
<descriptors xmi:id="_gimjYHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.console.ConsoleView" label="Console" iconURI="platform:/plugin/org.eclipse.ui.console/icons/full/cview16/console_view.png" tooltip="" allowMultiple="true" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.console.ConsoleView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.console"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_ginKcHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.views.ProgressView" label="Progress" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/pview.png" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.progress.ProgressView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_ginxgHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.views.ResourceNavigator" label="Navigator" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/filenav_nav.png" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.views.navigator.ResourceNavigator"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_gioYkHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.views.BookmarkView" label="Bookmarks" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/bkmrk_nav.png" tooltip="" allowMultiple="true" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.markers.BookmarksView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_gio_oHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.views.TaskList" label="Tasks" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/tasks_tsk.png" tooltip="" allowMultiple="true" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.markers.TasksView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_gipmsHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.views.ProblemView" label="Problems" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/problems_view.png" tooltip="" allowMultiple="true" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.markers.ProblemsView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_giqNwHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.views.AllMarkersView" label="Markers" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/problems_view.png" tooltip="" allowMultiple="true" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.markers.AllMarkersView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_giq00HukEeiLc70_J18rYQ" elementId="org.eclipse.ui.navigator.ProjectExplorer" label="Project Explorer" iconURI="platform:/plugin/org.eclipse.ui.navigator.resources/icons/full/eview16/resource_persp.gif" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.navigator.resources.ProjectExplorer"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.navigator.resources"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_girb4HukEeiLc70_J18rYQ" elementId="org.eclipse.ui.views.PropertySheet" label="Properties" iconURI="platform:/plugin/org.eclipse.ui.views/icons/full/eview16/prop_ps.png" tooltip="" allowMultiple="true" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.views.properties.PropertySheet"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.views"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_gisC8HukEeiLc70_J18rYQ" elementId="org.eclipse.ui.views.ContentOutline" label="Outline" iconURI="platform:/plugin/org.eclipse.ui.views/icons/full/eview16/outline_co.png" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.views.contentoutline.ContentOutline"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.views"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_gisqAHukEeiLc70_J18rYQ" elementId="org.eclipse.pde.runtime.LogView" label="Error Log" iconURI="platform:/plugin/org.eclipse.ui.views.log/icons/eview16/error_log.gif" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.log.LogView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.views.log"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_gitREHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.common.snippets.internal.ui.SnippetsView" label="Snippets" iconURI="platform:/plugin/org.eclipse.wst.common.snippets/icons/snippets_view.gif" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.common.snippets.internal.ui.SnippetsView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.common.snippets"/>
<tags>View</tags>
<tags>categoryTag:General</tags>
</descriptors>
<descriptors xmi:id="_git4IHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.internet.monitor.view" label="TCP/IP Monitor" iconURI="platform:/plugin/org.eclipse.wst.internet.monitor.ui/icons/cview16/monitorView.gif" tooltip="" category="Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.internet.monitor.ui.internal.view.MonitorView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.internet.monitor.ui"/>
<tags>View</tags>
<tags>categoryTag:Debug</tags>
</descriptors>
<descriptors xmi:id="_giufMHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.TypeHierarchy" label="Hierarchy" iconURI="platform:/plugin/org.eclipse.wst.jsdt.ui/icons/full/eview16/class_hi.gif" tooltip="" category="JavaScript" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.jsdt.internal.ui.typehierarchy.TypeHierarchyViewPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.jsdt.ui"/>
<tags>View</tags>
<tags>categoryTag:JavaScript</tags>
</descriptors>
<descriptors xmi:id="_givtUHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.PackageExplorer" label="Script Explorer" iconURI="platform:/plugin/org.eclipse.wst.jsdt.ui/icons/full/eview16/package.gif" tooltip="" category="JavaScript" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.jsdt.internal.ui.packageview.PackageExplorerPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.jsdt.ui"/>
<tags>View</tags>
<tags>categoryTag:JavaScript</tags>
</descriptors>
<descriptors xmi:id="_giwUYHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.callhierarchy.view" label="Call Hierarchy" iconURI="platform:/plugin/org.eclipse.wst.jsdt.ui/icons/full/eview16/call_hierarchy.gif" tooltip="" category="JavaScript" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.jsdt.internal.ui.callhierarchy.CallHierarchyViewPart"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.jsdt.ui"/>
<tags>View</tags>
<tags>categoryTag:JavaScript</tags>
</descriptors>
<descriptors xmi:id="_giw7cHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.SourceView" label="Declaration" iconURI="platform:/plugin/org.eclipse.wst.jsdt.ui/icons/full/eview16/source.gif" tooltip="" category="JavaScript" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.jsdt.internal.ui.infoviews.SourceView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.jsdt.ui"/>
<tags>View</tags>
<tags>categoryTag:JavaScript</tags>
</descriptors>
<descriptors xmi:id="_gixigHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.JavadocView" label="Documentation" iconURI="platform:/plugin/org.eclipse.wst.jsdt.ui/icons/full/eview16/javadoc.gif" tooltip="JavaScript Documentation" category="JavaScript" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.jsdt.internal.ui.infoviews.JavadocView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.jsdt.ui"/>
<tags>View</tags>
<tags>categoryTag:JavaScript</tags>
</descriptors>
<descriptors xmi:id="_giyJkHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.server.ui.ServersView" label="Servers" iconURI="platform:/plugin/org.eclipse.wst.server.ui/icons/cview16/servers_view.gif" tooltip="" category="Server" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.server.ui.internal.cnf.ServersView2"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.server.ui"/>
<tags>View</tags>
<tags>categoryTag:Server</tags>
</descriptors>
<descriptors xmi:id="_giywoHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.xml.ui.views.annotations.XMLAnnotationsView" label="Documentation" iconURI="platform:/plugin/org.eclipse.wst.xml.ui/icons/full/obj16/comment_obj.gif" tooltip="" category="XML" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.xml.ui.internal.views.annotations.XMLAnnotationsView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.xml.ui"/>
<tags>View</tags>
<tags>categoryTag:XML</tags>
</descriptors>
<descriptors xmi:id="_gizXsHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.xml.ui.contentmodel.view" label="Content Model" iconURI="platform:/plugin/org.eclipse.wst.xml.ui/icons/full/view16/hierarchy.gif" tooltip="" category="XML" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.xml.ui.internal.views.contentmodel.ContentModelView"/>
<persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.xml.ui"/>
<tags>View</tags>
<tags>categoryTag:XML</tags>
</descriptors>
<descriptors xmi:id="__nrG8Jr-EeiGr6L2zFyJzw" elementId="tern.eclipse.ide.ui.views.TernOutlineView" label="Tern Outline" iconURI="platform:/plugin/tern.eclipse.ide.ui/icons/full/eview16/tern-outline.png" tooltip="" category="JavaScript" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
<persistedState key="originalCompatibilityViewClass" value="tern.eclipse.ide.internal.ui.views.TernOutlineView"/>
<persistedState key="originalCompatibilityViewBundle" value="tern.eclipse.ide.ui"/>
<tags>View</tags>
<tags>categoryTag:JavaScript</tags>
</descriptors>
<menuContributions xmi:id="_gc15qHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.window.customizePerspective" contributorURI="platform:/plugin/org.eclipse.platform" positionInParent="popup:toolbar">
<children xsi:type="menu:HandledMenuItem" xmi:id="_gc15qXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.window.customizePerspective" contributorURI="platform:/plugin/org.eclipse.platform" label="%command.name.customize" command="_gc15qnukEeiLc70_J18rYQ"/>
</menuContributions>
<trimContributions xmi:id="_2r10UF9tEeO-yojH_y4TJA" elementId="org.eclipse.ui.ide.application.trimcontribution.QuickAccess" contributorURI="platform:/plugin/org.eclipse.ui.ide.application" toBeRendered="false" parentId="org.eclipse.ui.main.toolbar" positionInParent="last">
<children xsi:type="menu:ToolControl" xmi:id="_76uUAF9tEeO-yojH_y4TJA" elementId="Spacer Glue" contributorURI="platform:/plugin/org.eclipse.ui.ide.application" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.LayoutModifierToolControl">
<tags>glue</tags>
<tags>move_after:PerspectiveSpacer</tags>
<tags>SHOW_RESTORE_MENU</tags>
</children>
<children xsi:type="menu:ToolControl" xmi:id="_8tJPcF9tEeO-yojH_y4TJA" elementId="SearchField" contributorURI="platform:/plugin/org.eclipse.ui.ide.application" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.quickaccess.SearchField">
<tags>move_after:Spacer Glue</tags>
<tags>HIDEABLE</tags>
<tags>SHOW_RESTORE_MENU</tags>
</children>
<children xsi:type="menu:ToolControl" xmi:id="_9LgmcF9tEeO-yojH_y4TJA" elementId="Search-PS Glue" contributorURI="platform:/plugin/org.eclipse.ui.ide.application" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.LayoutModifierToolControl">
<tags>glue</tags>
<tags>move_after:SearchField</tags>
<tags>SHOW_RESTORE_MENU</tags>
</children>
</trimContributions>
<commands xmi:id="_gc15qnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.window.customizePerspective" contributorURI="platform:/plugin/org.eclipse.platform"/>
<commands xmi:id="_gdbvgHukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.navigate.gototype" commandName="Go to Type" description="Go to Type" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdbvgXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.select.pageUp" commandName="Select Page Up" description="Select to the top of the page" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdbvgnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.toggleWordWrap" commandName="Toggle Word Wrap" description="Toggle word wrap in the current text editor" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdey0HukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.history.ResetQuickdiffBaseline" commandName="Reset quickdiff baseline" category="_gdYFI3ukEeiLc70_J18rYQ">
<parameters xmi:id="_gdey0XukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.history.ResetQuickdiffBaselineTarget" name="Reset target (HEAD, HEAD^1)" optional="false"/>
</commands>
<commands xmi:id="_gdey0nukEeiLc70_J18rYQ" elementId="org.eclipse.php.composer.ui.command.injectAutoload" commandName="Inject Composer Autoload-Statement" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdey03ukEeiLc70_J18rYQ" elementId="org.eclipse.tm.terminal.maximize" commandName="Maximize Active View or Editor" category="_gdXeKHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdey1HukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.deletePreviousWord" commandName="Delete Previous Word" description="Delete the previous word" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdfZ4HukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.commands.showElementInTypeHierarchyView" commandName="Show JavaScript Element Type Hierarchy" description="Show a JavaScript element in the Type Hierarchy view" category="_gdXeHXukEeiLc70_J18rYQ">
<parameters xmi:id="_gdfZ4XukEeiLc70_J18rYQ" elementId="elementRef" name="JavaScript element reference" typeId="org.eclipse.wst.jsdt.ui.commands.javaElementReference" optional="false"/>
</commands>
<commands xmi:id="_gdfZ4nukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.delimiter.unix" commandName="Convert Line Delimiters to Unix (LF, \n, 0A, ¶)" description="Converts the line delimiters to Unix (LF, \n, 0A, ¶)" category="_gdXeIXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdfZ43ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.references.in.working.set" commandName="References in Working Set" description="Search for references to the selected element in a working set" category="_gdXeKXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdfZ5HukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.history.Edit" commandName="Edit Commit" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdfZ5XukEeiLc70_J18rYQ" elementId="org.eclipse.epp.mpc.ui.command.showMarketplaceWizard" commandName="Eclipse Marketplace" description="Show the Eclipse Marketplace wizard" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdfZ5nukEeiLc70_J18rYQ" elementId="org.eclipse.egit.gitflow.ui.command.hotfixPublish" commandName="Publish Hotfix" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdfZ53ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.js.grunt.commands.gruntLaunch" commandName="Run as Grunt Task" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdfZ6HukEeiLc70_J18rYQ" elementId="org.eclipse.ui.navigate.addToWorkingSet" commandName="Add to Working Set" description="Adds the selected object to a working set." category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdfZ6XukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.callhierarchy.view" commandName="JavaScript Call Hierarchy" description="Show the Call Hierarchy view" category="_gdXeEXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdfZ6nukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.wikitext.ui.editor.showCheatSheetCommand" commandName="Show Markup Cheat Sheet" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdfZ63ukEeiLc70_J18rYQ" elementId="org.eclipse.team.ui.TeamSynchronizingPerspective" commandName="Team Synchronizing" description="Open the Team Synchronizing Perspective" category="_gdXeLnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdfZ7HukEeiLc70_J18rYQ" elementId="org.eclipse.gef.ui.palette_view" commandName="Palette" category="_gdXeEXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdfZ7XukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.context.ui.commands.task.clearContext" commandName="Clear Context" category="_gdXeGnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdfZ7nukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.write.access.in.working.set" commandName="Write Access in Working Set" description="Search for write references to the selected element in a working set" category="_gdXeKXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdfZ73ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.read.access.in.hierarchy" commandName="Read Access in Hierarchy" description="Search for read references of the selected element in its hierarchy" category="_gdXeKXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdfZ8HukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.pull.up" commandName="Pull Up" description="Move members to a superclass" category="_gdYFJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdfZ8XukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.commands.ToggleLineBreakpoint" commandName="Toggle Line Breakpoint" description="Creates or removes a line breakpoint" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdfZ8nukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.command.searchForTask" commandName="Search Repository for Task" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdfZ83ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.folding.collapseMembers" commandName="Collapse Members" description="Collapse all members" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdfZ9HukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.write.access.in.project" commandName="Write Access in Project" description="Search for write references to the selected element in the enclosing project" category="_gdXeKXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdgA8HukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.open.type.hierarchy" commandName="Open Type Hierarchy" description="Open a type hierarchy on the selected element" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdgA8XukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.internal.reflog.CheckoutCommand" commandName="Checkout" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdgA8nukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.move" commandName="Move..." description="Move the selected item" category="_gdXeIXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdgA83ukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.command.maximizePart" commandName="Maximize Part" description="Maximize Part" category="_gdXeFXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdgA9HukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.show.outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdgA9XukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.commands.openElementInEditor" commandName="Open JavaScript Element" description="Open a JavaScript element in its editor" category="_gdXeHXukEeiLc70_J18rYQ">
<parameters xmi:id="_gdgA9nukEeiLc70_J18rYQ" elementId="elementRef" name="JavaScript element reference" typeId="org.eclipse.wst.jsdt.ui.commands.javaElementReference" optional="false"/>
</commands>
<commands xmi:id="_gdgA93ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.TypesView" commandName="JavaScript Types" description="Show the Types view" category="_gdXeEXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdgA-HukEeiLc70_J18rYQ" elementId="org.eclipse.compare.ignoreWhiteSpace" commandName="Ignore White Space" description="Ignore white space where applicable" category="_gdXeI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdgA-XukEeiLc70_J18rYQ" elementId="org.eclipse.oomph.setup.editor.importProjects" commandName="Import Projects" category="_gdXeF3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdgA-nukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.write.access.in.hierarchy" commandName="Write Access in Hierarchy" description="Search for write references of the selected element in its hierarchy" category="_gdXeKXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdgA-3ukEeiLc70_J18rYQ" elementId="org.eclipse.egit.gitflow.ui.command.featurePublish" commandName="Publish Feature" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdgA_HukEeiLc70_J18rYQ" elementId="org.eclipse.wst.xml.ui.disable.grammar.constraints" commandName="Turn off Grammar Constraints" description="Turn off grammar Constraints" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdgA_XukEeiLc70_J18rYQ" elementId="org.eclipse.ui.navigate.goToResource" commandName="Go to" description="Go to a particular resource in the active view" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdgA_nukEeiLc70_J18rYQ" elementId="org.eclipse.ui.window.resetPerspective" commandName="Reset Perspective" description="Reset the current perspective to its default state" category="_gdXeJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdgA_3ukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.wikitext.ui.quickOutlineCommand" commandName="Quick Outline" description="Open a popup dialog with a quick outline of the current document" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdgBAHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.references.in.project" commandName="References in Project" description="Search for references to the selected element in the enclosing project" category="_gdXeKXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdgBAXukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.MembersView" commandName="JavaScript Members" description="Show the Members view" category="_gdXeEXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdgBAnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.project.buildLast" commandName="Repeat Working Set Build" description="Repeat the last working set build" category="_gdXeJ3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdgBA3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.project.buildProject" commandName="Build Project" description="Build the selected project" category="_gdXeJ3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdgBBHukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.navigate.open.type.in.hierarchy" commandName="Open Type in Hierarchy" description="Open a type in the type hierarchy view" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdgBBXukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.discoveryWizardCommand" commandName="Discovery Wizard" description="shows the connector discovery wizard" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdgBBnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.goto.textStart" commandName="Text Start" description="Go to the beginning of the text" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdgBB3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.paste" commandName="Paste" description="Paste from the clipboard" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdgBCHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.declarations.in.working.set" commandName="Declaration in Working Set" description="Search for declarations of the selected element in a working set" category="_gdXeKXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdgBCXukEeiLc70_J18rYQ" elementId="org.eclipse.egit.gitflow.ui.command.featureCheckout" commandName="Checkout Feature" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdgBCnukEeiLc70_J18rYQ" elementId="org.eclipse.oomph.setup.editor.refreshCache" commandName="Refresh Remote Cache" category="_gdXeF3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdgBC3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.correction.qualifyField" commandName="Quick Fix - Qualify var access" description="Invokes quick assist and selects 'Qualify var access'" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdgBDHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.navigate.previous" commandName="Previous" description="Navigate to the previous item" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdhPEHukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.clean" commandName="Clean..." category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdhPEXukEeiLc70_J18rYQ" elementId="org.eclipse.php.server.ui.phpServerShortcut.debug" commandName="Debug PHP Web Application" description="Debug PHP Web Application" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdhPEnukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.quick.format" commandName="Format Element" description="Format enclosing text element" category="_gdXeE3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdhPE3ukEeiLc70_J18rYQ" elementId="org.eclipse.php.ui.newWizard" commandName="New" description="Open the New item wizard" category="_gdXeIXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdhPFHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.rename" commandName="Rename" description="Rename the selected item" category="_gdXeIXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdhPFXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.project.buildAll" commandName="Build All" description="Build all projects" category="_gdXeJ3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdhPFnukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.history.OpenInTextEditorCommand" commandName="Open in Text Editor" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdhPF3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.cut.line.to.beginning" commandName="Cut to Beginning of Line" description="Cut to the beginning of a line of text" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdhPGHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.enclosing" commandName="Select Enclosing Element" description="Expand selection to include enclosing element" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdhPGXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.editors.revisions.rendering.cycle" commandName="Cycle Revision Coloring Mode" description="Cycles through the available coloring modes for revisions" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdhPGnukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.debug.ui.script.opensource" commandName="Open Source" description="Shows the JavaScript source for the selected script element" category="_gdXeIHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdhPG3ukEeiLc70_J18rYQ" elementId="org.eclipse.ltk.ui.refactoring.commands.moveResources" commandName="Move Resources" description="Move the selected resources and notify LTK participants." category="_gdXeL3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdhPHHukEeiLc70_J18rYQ" elementId="org.eclipse.pdt.ui.edit.text.php.show.outline" commandName="Quick Outline" description="Shows the quick outline for the editor input" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdhPHXukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.commands.StepInto" commandName="Step Into" description="Step into" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdhPHnukEeiLc70_J18rYQ" elementId="org.eclipse.e4.ui.importer.openDirectory" commandName="Open Projects from File System..." category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdhPH3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.sse.ui.structure.select.previous" commandName="Select Previous Element" description="Expand selection to include previous sibling" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdhPIHukEeiLc70_J18rYQ" elementId="org.eclipse.php.debug.ui.commands.Inspect" commandName="Inspect" description="Inspect result of evaluating selected text" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdhPIXukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.RepositoriesViewClearCredentials" commandName="Clear Credentials" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdhPInukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.add.import" commandName="Add Import" description="Create import statement on selection" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdhPI3ukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.wikitext.ui.convertToMarkupCommand" commandName="Generate Markup" category="_gdYFI3ukEeiLc70_J18rYQ">
<parameters xmi:id="_gdhPJHukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.wikitext.ui.targetLanguage" name="TargetLanguage" optional="false"/>
</commands>
<commands xmi:id="_gdhPJXukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.add.unimplemented.constructors" commandName="Generate Constructors from Superclass" description="Evaluate and add constructors from superclass" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdhPJnukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.command.showToolTip" commandName="Show Tooltip Description" category="_gdXeHHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdhPJ3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.debug.ui.breakpoint.properties" commandName="JavaScript Breakpoint Properties" description="View and edit the properties for a given JavaScript breakpoint" category="_gdXeIHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdhPKHukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.context.ui.commands.task.copyContext" commandName="Copy Context" category="_gdXeGnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdhPKXukEeiLc70_J18rYQ" elementId="org.eclipse.tm.terminal.view.ui.command.launchToolbar" commandName="Open Local Terminal on Selection" category="_gdXeInukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2IHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.window.showViewMenu" commandName="Show View Menu" description="Show the view menu" category="_gdXeJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2IXukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.Commit" commandName="Commit..." category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2InukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.shiftRight" commandName="Shift Right" description="Shift a block of text to the right" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2I3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.navigate.backwardHistory" commandName="Backward History" description="Move backward in the editor navigation history" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2JHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.implementors.in.working.set" commandName="Implementors in Working Set" description="Search for implementors of the selected interface in a working set" category="_gdXeKXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2JXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.removeTrailingWhitespace" commandName="Remove Trailing Whitespace" description="Removes the trailing whitespace of each line" category="_gdXeIXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2JnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.findIncremental" commandName="Incremental Find" description="Incremental find" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2J3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.correction.inlineLocal.assist" commandName="Quick Assist - Inline local variable" description="Invokes quick assist and selects 'Inline local variable'" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2KHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.convert.anonymous.to.nested" commandName="Convert Anonymous Class to Nested" description="Convert an anonymous class to a nested class" category="_gdYFJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2KXukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.ImportChangedProjectsCommandId" commandName="Import Changed Projects" description="Import or create in local Git repository" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2KnukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.format" commandName="Format" description="Format the selected text" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2K3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.change.type" commandName="Generalize Declared Type" description="Change the declaration of a selected variable to a more general type consistent with usage" category="_gdYFJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2LHukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.RepositoriesViewNewRemote" commandName="Create Remote..." category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2LXukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.generate.hashcode.equals" commandName="Generate hashCode() and equals()" description="Generates hashCode() and equals() functions for the type" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2LnukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.commands.Restart" commandName="Restart" description="Restart a process or debug target without terminating and re-launching" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2L3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.delete.line" commandName="Delete Line" description="Delete a line of text" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2MHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.organize.imports" commandName="Organize Imports" description="Evaluate all required imports and replace the current imports" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2MXukEeiLc70_J18rYQ" elementId="org.eclipse.php.ui.edit.text.open.editor" commandName="Open Selection" description="Opens an editor with the selected element" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2MnukEeiLc70_J18rYQ" elementId="org.eclipse.oomph.setup.editor.performDropdown" commandName="Perform Dropdown" category="_gdXeF3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2M3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.create.getter.setter" commandName="Generate Getters and Setters" description="Generate Getter and Setter functions for type's vars" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2NHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.findReplace" commandName="Find and Replace" description="Find and replace text" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2NXukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.MergeTool" commandName="Merge Tool" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2NnukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.command.shareProject" commandName="Share with Git" description="Share the project using Git" category="_gdYFI3ukEeiLc70_J18rYQ">
<parameters xmi:id="_gdh2N3ukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.command.projectNameParameter" name="Project" optional="false"/>
</commands>
<commands xmi:id="_gdh2OHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.window.fullscreenmode" commandName="Toggle Full Screen" description="Toggles the window between full screen and normal" category="_gdXeJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2OXukEeiLc70_J18rYQ" elementId="org.eclipse.equinox.p2.ui.sdk.installationDetails" commandName="Installation Details" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2OnukEeiLc70_J18rYQ" elementId="org.eclipse.team.ui.synchronizeAll" commandName="Synchronize..." description="Synchronize resources in the workspace with another location" category="_gdXeEHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2O3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.window.nextEditor" commandName="Next Editor" description="Switch to the next editor" category="_gdXeJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2PHukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.internal.reflog.CopyCommand" commandName="Copy SHA-1" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2PXukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.command.new.subtask" commandName="New Subtask" category="_gdXeHHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2PnukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.JavaBrowsingPerspective" commandName="JavaScript Browsing" description="Show the JavaScript Browsing perspective" category="_gdXeLnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2P3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.help.helpContents" commandName="Help Contents" description="Open the help contents" category="_gdXeJXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2QHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.remove.block.comment" commandName="Remove Block Comment" description="Remove the block comment enclosing the selection" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2QXukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.Reset" commandName="Reset..." category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2QnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.delete" commandName="Delete" description="Delete the selection" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2Q3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.delete.line.to.beginning" commandName="Delete to Beginning of Line" description="Delete to the beginning of a line of text" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2RHukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.RenameBranch" commandName="Rename Branch..." category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2RXukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.Synchronize" commandName="Synchronize" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2RnukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.refactor.quickMenu" commandName="Show Refactor Quick Menu" description="Shows the refactor quick menu" category="_gdYFJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2R3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.findPrevious" commandName="Find Previous" description="Find previous item" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdh2SHukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.commands.ToggleBreakpoint" commandName="Toggle Breakpoint" description="Creates or removes a breakpoint" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdidMHukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.commit.Revert" commandName="Revert Commit" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdidMXukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.commit.StashDrop" commandName="Delete Stashed Commit..." category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdidMnukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.command.openTask" commandName="Open Task" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdidM3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.scroll.lineUp" commandName="Scroll Line Up" description="Scroll up one line of text" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdidNHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.clean.up" commandName="Clean Up" description="Solve problems and improve code style on selected resources" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdidNXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.folding.toggle" commandName="Toggle Folding" description="Toggles folding in the current editor" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdidNnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.toggleShowWhitespaceCharacters" commandName="Show Whitespace Characters" description="Shows whitespace characters in current text editor" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdidN3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.file.revert" commandName="Revert" description="Revert to the last saved state" category="_gdXeIXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdidOHukEeiLc70_J18rYQ" elementId="org.eclipse.oomph.ui.ToggleOfflineMode" commandName="Toggle Offline Mode" category="_gdYFInukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdidOXukEeiLc70_J18rYQ" elementId="org.eclipse.oomph.setup.editor.openLog" commandName="Open Setup Log" category="_gdXeF3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdidOnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.project.buildAutomatically" commandName="Build Automatically" description="Toggle the workspace build automatically function" category="_gdXeJ3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdidO3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.file.import" commandName="Import" description="Import" category="_gdXeIXukEeiLc70_J18rYQ">
<parameters xmi:id="_gdidPHukEeiLc70_J18rYQ" elementId="importWizardId" name="Import Wizard"/>
</commands>
<commands xmi:id="_gdidPXukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.history.Merge" commandName="Merge" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdidPnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.window.switchToEditor" commandName="Switch to Editor" description="Switch to an editor" category="_gdXeJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdidP3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.find.broken.nls.keys" commandName="Find Broken Externalized Strings" description="Finds undefined, duplicate and unused externalized string keys in property files" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdidQHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.help.dynamicHelp" commandName="Show Contextual Help" description="Open the contextual help" category="_gdXeJXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdidQXukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.command.activateTask" commandName="Activate Task" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdidQnukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.history.CreateTag" commandName="Create Tag..." category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdidQ3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.goto.next.member" commandName="Go to Next Member" description="Move the caret to the next member of the JavaScript file" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdidRHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.toggleInsertMode" commandName="Toggle Insert Mode" description="Toggle insert mode" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdidRXukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.RepositoriesViewDelete" commandName="Delete Repository" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdidRnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.file.closePart" commandName="Close Part" description="Close the active workbench part" category="_gdXeJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdidR3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.editors.revisions.id.toggle" commandName="Toggle Revision Id Display" description="Toggles the display of the revision id" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdidSHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.project.cleanAction" commandName="Build Clean" description="Discard old built state" category="_gdXeJ3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdidSXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.navigate.back" commandName="Back" description="Navigate back" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdidSnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.select.wordNext" commandName="Select Next Word" description="Select the next word" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdidS3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.goto.pageDown" commandName="Page Down" description="Go down one page" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdidTHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.implementors.in.project" commandName="Implementors in Project" description="Search for implementors of the selected interface in the enclosing project" category="_gdXeKXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdidTXukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.GarbageCollect" commandName="Collect Garbage" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdidTnukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.history.CompareWithWorkingTree" commandName="Compare with Working Tree" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdidT3ukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.indent" commandName="Correct &Indentation" description="&Indents the current line or selection depending on surrounding source code" category="_gdXeE3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdidUHukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.Branch" commandName="Branch" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdidUXukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.ProjectsView" commandName="JavaScript Projects" description="Show the Projects view" category="_gdXeEXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdidUnukEeiLc70_J18rYQ" elementId="org.eclipse.wst.xml.ui.previousSibling" commandName="Previous Sibling" description="Go to Previous Sibling" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdidU3ukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.RepositoriesViewConfigurePush" commandName="Configure Push..." category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdidVHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.findIncrementalReverse" commandName="Incremental Find Reverse" description="Incremental find reverse" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdidVXukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.introduce.factory" commandName="Introduce Factory" description="Introduce a factory function to encapsulate invocation of the selected constructor" category="_gdYFJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjEQHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.correction.convertAnonymousToLocal.assist" commandName="Quick Assist - Convert anonymous to local class" description="Invokes quick assist and selects 'Convert anonymous to local class'" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjEQXukEeiLc70_J18rYQ" elementId="org.eclipse.pdt.ui.edit.text.select.previous" commandName="Select Previous Element" description="Expands selection to include previous sibling" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjEQnukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.stash.apply" commandName="Apply Stashed Changes" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjEQ3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.goto.columnNext" commandName="Next Column" description="Go to the next column" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjERHukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.history.Squash" commandName="Squash Commits" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjERXukEeiLc70_J18rYQ" elementId="org.eclipse.search.ui.performTextSearchWorkingSet" commandName="Find Text in Working Set" description="Searches the files in the working set for specific text." category="_gdXeKXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjERnukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.occurrences.in.file.quickMenu" commandName="Show Occurrences in File Quick Menu" description="Shows the Occurrences in File quick menu" category="_gdXeKXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjER3ukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.testing.testingShortcut.rerunFailedFirst" commandName="Rerun testing Test - Failures First" description="Rerun testing Test - Failures First" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjESHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.goto.wordNext" commandName="Next Word" description="Go to the next word" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjESXukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.correction.convertLocalToField.assist" commandName="Quick Assist - Convert local variable to var" description="Invokes quick assist and selects 'Convert local variable to var'" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjESnukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.move.element" commandName="Move - Refactoring " description="Move the selected element to a new location" category="_gdYFJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjES3ukEeiLc70_J18rYQ" elementId="org.eclipse.quickdiff.toggle" commandName="Quick Diff Toggle" description="Toggles quick diff information display on the line number ruler" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjETHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.deleteNext" commandName="Delete Next" description="Delete the next character" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjETXukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.FetchGerritChange" commandName="Fetch From Gerrit" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjETnukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.open.call.hierarchy" commandName="Open Call Hierarchy" description="Open a call hierarchy on the selected element" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjET3ukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.command.SynchronizeAll" commandName="Synchronize Changed" category="_gdXeHHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjEUHukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.history.Reword" commandName="Reword Commit" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjEUXukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.wikitext.context.ui.editor.folding.auto" commandName="Toggle Active Folding" description="Toggle Active Folding" category="_gdXeH3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjEUnukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.OpenCommit" commandName="Open Git Commit" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjEU3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.server.stop" commandName="Stop" description="Stop the server" category="_gdXeHnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjEVHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.help.displayHelp" commandName="Display Help" description="Display a Help topic" category="_gdXeJXukEeiLc70_J18rYQ">
<parameters xmi:id="_gdjEVXukEeiLc70_J18rYQ" elementId="href" name="Help topic href"/>
</commands>
<commands xmi:id="_gdjEVnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.select.pageDown" commandName="Select Page Down" description="Select to the bottom of the page" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjEV3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.join.lines" commandName="Join Lines" description="Join lines of text" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjEWHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.window.showContextMenu" commandName="Show Context Menu" description="Show the context menu" category="_gdXeJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjEWXukEeiLc70_J18rYQ" elementId="org.eclipse.php.ui.edit.text.show.in.explorer.view" commandName="Show in PHP Explorer View" description="Shows the selected element in the PHP Explorer" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjEWnukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.comment" commandName="Comment" description="Turn the selected lines into DLTK comments" category="_gdXeE3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjEW3ukEeiLc70_J18rYQ" elementId="org.eclipse.oomph.p2.ui.ExploreRepository" commandName="Explore Repository" category="_gdXeLHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjEXHukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.folding.collapseComments" commandName="Collapse Comments" description="Collapse all comments" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjEXXukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.search.references.in.project" commandName="Find References In Project" description="Finds all references to the selection in the project" category="_gdXeKXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjEXnukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.goto.next.member" commandName="Go to Next Member" description="Move the caret to the next member of the compilation unit" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjEX3ukEeiLc70_J18rYQ" elementId="org.eclipse.jdt.ui.edit.text.java.correction.assist.proposals" commandName="Quick Fix" description="Suggest possible fixes for a problem" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjEYHukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.add.block.comment" commandName="Add Block Comment" description="Enclose the selection with a block comment" category="_gdXeE3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjEYXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.window.nextPerspective" commandName="Next Perspective" description="Switch to the next perspective" category="_gdXeJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjEYnukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.command.UpdateRepositoryConfiguration" commandName="Update Repository Configuration" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjEY3ukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.commit.StashApply" commandName="Apply Stashed Changes" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjrUHukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.history.ShowVersions" commandName="Open" category="_gdYFI3ukEeiLc70_J18rYQ">
<parameters xmi:id="_gdjrUXukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.history.CompareMode" name="Compare mode"/>
</commands>
<commands xmi:id="_gdjrUnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.navigate.nextTab" commandName="Next Tab" description="Switch to the next tab" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjrU3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.window.quickAccess" commandName="Quick Access" description="Quickly access UI elements" category="_gdXeJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjrVHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.showInformation" commandName="Show Tooltip Description" description="Displays information for the current caret location in a focused hover" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjrVXukEeiLc70_J18rYQ" elementId="org.eclipse.egit.gitflow.ui.command.releasePublish" commandName="Publish Release" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjrVnukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.command.attachment.open" commandName="Open Attachment" category="_gdXeFXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjrV3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.correction.extractLocal.assist" commandName="Quick Assist - Extract local variable" description="Invokes quick assist and selects 'Extract local variable'" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjrWHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.correction.renameInFile.assist" commandName="Quick Assist - Rename in file" description="Invokes quick assist and selects 'Rename in file'" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjrWXukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.commands.toggleMemoryMonitorsPane" commandName="Toggle Memory Monitors Pane" description="Toggle visibility of the Memory Monitors Pane" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjrWnukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.ConfigureUpstreamFetch" commandName="Configure Upstream Fetch" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjrW3ukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.Discard" commandName="Replace with File in Index" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjrXHukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.toggle.comment" commandName="Toggle Comment" description="Toggle comment the selected lines" category="_gdXeE3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjrXXukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.testing.testingShortcut.run" commandName="Run testing Test" description="Run testing Test" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjrXnukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.RepositoriesViewCreateBranch" commandName="Create Branch..." category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjrX3ukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.RepositoriesViewCopyPath" commandName="Copy Path to Clipboard" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjrYHukEeiLc70_J18rYQ" elementId="org.eclipse.oomph.setup.editor.perform.startup" commandName="Perform Setup Tasks (Startup)" category="_gdXeF3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjrYXukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.JavaPerspective" commandName="JavaScript" description="Show the JavaScript perspective" category="_gdXeLnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjrYnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.showRulerAnnotationInformation" commandName="Show Ruler Annotation Tooltip" description="Displays annotation information for the caret line in a focused hover" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjrY3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.modify.method.parameters" commandName="Change Function Signature" description="Change function signature includes parameter names and parameter order" category="_gdYFJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjrZHukEeiLc70_J18rYQ" elementId="org.eclipse.php.server.ui.phpServerShortcut.run" commandName="Run PHP Web Application" description="Run PHP Web Application" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjrZXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.browser.openBrowser" commandName="Open Browser" description="Opens the default web browser." category="_gdXeJHukEeiLc70_J18rYQ">
<parameters xmi:id="_gdjrZnukEeiLc70_J18rYQ" elementId="url" name="URL"/>
<parameters xmi:id="_gdjrZ3ukEeiLc70_J18rYQ" elementId="browserId" name="Browser Id"/>
<parameters xmi:id="_gdjraHukEeiLc70_J18rYQ" elementId="name" name="Browser Name"/>
<parameters xmi:id="_gdjraXukEeiLc70_J18rYQ" elementId="tooltip" name="Browser Tooltip"/>
</commands>
<commands xmi:id="_gdjranukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.extract.constant" commandName="Extract Constant" description="Extracts a constant into a new static var and uses the new static var" category="_gdYFJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjra3ukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.history.DeleteBranch" commandName="Delete Branch..." category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjrbHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.contentAssist.contextInformation" commandName="Context Information" description="Show Context Information" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjrbXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.file.saveAs" commandName="Save As" description="Save the current contents to another location" category="_gdXeIXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjrbnukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.read.access.in.workspace" commandName="Read Access in Workspace" description="Search for read references to the selected element in the workspace" category="_gdXeKXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjrb3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.window.previousPerspective" commandName="Previous Perspective" description="Switch to the previous perspective" category="_gdXeJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjrcHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.window.splitEditor" commandName="Toggle Split Editor" description="Split or join the currently active editor." category="_gdXeJHukEeiLc70_J18rYQ">
<parameters xmi:id="_gdjrcXukEeiLc70_J18rYQ" elementId="Splitter.isHorizontal" name="Orientation" optional="false"/>
</commands>
<commands xmi:id="_gdjrcnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.navigate.collapseAll" commandName="Collapse All" description="Collapse the current tree" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjrc3ukEeiLc70_J18rYQ" elementId="org.eclipse.compare.copyAllRightToLeft" commandName="Copy All from Right to Left" description="Copy All Changes from Right to Left" category="_gdXeI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjrdHukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.command.deactivateSelectedTask" commandName="Deactivate Selected Task" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjrdXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.window.lockToolBar" commandName="Lock the Toolbars" description="Lock the Toolbars" category="_gdXeJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjrdnukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.commands.Disconnect" commandName="Disconnect" description="Disconnect" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjrd3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.extract.interface" commandName="Extract Interface" description="Extract a set of members into a new interface and try to use the new interface" category="_gdYFJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjreHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.navigate.removeFromWorkingSet" commandName="Remove From Working Set" description="Removes the selected object from a working set." category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdjreXukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.command.openSelectedTask" commandName="Open Selected Task" category="_gdXeHHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSYHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.correction.changeToStatic" commandName="Quick Fix - Change to static access" description="Invokes quick assist and selects 'Change to static access'" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSYXukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.RepositoriesLinkWithSelection" commandName="Link with Selection" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSYnukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.context.ui.commands.toggle.focus.active.view" commandName="Focus on Active Task" description="Toggle the focus on active task for the active view" category="_gdXeGnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSY3ukEeiLc70_J18rYQ" elementId="org.eclipse.php.perspective" commandName="PHP" description="Shows the PHP perspective" category="_gdXeLnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSZHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.ide.deleteCompleted" commandName="Delete Completed Tasks" description="Delete the tasks marked as completed" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSZXukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.command.goToNextUnread" commandName="Go To Next Unread Task" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSZnukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.RebaseInteractiveCurrent" commandName="%RebaseInteractiveCurrentHandler.name" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSZ3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.correction.addCast" commandName="Quick Fix - Add cast" description="Invokes quick assist and selects 'Add cast'" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSaHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.window.openEditorDropDown" commandName="Quick Switch Editor" description="Open the editor drop down list" category="_gdXeJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSaXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.deleteNextWord" commandName="Delete Next Word" description="Delete the next word" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSanukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.SkipRebase" commandName="Skip commit and continue" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSa3ukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.history.SetQuickdiffBaseline" commandName="Set quickdiff baseline" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSbHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.undo" commandName="Undo" description="Undo the last operation" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSbXukEeiLc70_J18rYQ" elementId="org.eclipse.php.composer.ui.command.install" commandName="Install Dependencies" description="Install dependencies (excluding require-dev)" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSbnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.file.newQuickMenu" commandName="New menu" description="Open the New menu" category="_gdXeIXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSb3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.correction.addSuppressWarnings" commandName="Quick Fix - Add @SuppressWarnings" description="Invokes quick fix and selects 'Add @SuppressWarnings' " category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkScHukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.actions.WatchCommand" commandName="Watch" description="Create a watch expression from the current selection and add it to the Expressions view" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkScXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.file.openWorkspace" commandName="Switch Workspace" description="Open the workspace selection dialog" category="_gdXeIXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkScnukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.remove.occurrence.annotations" commandName="Remove Occurrence Annotations" description="Removes the occurrence annotations from the current editor" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSc3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.file.closeAll" commandName="Close All" description="Close all editors" category="_gdXeIXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSdHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.cut" commandName="Cut" description="Cut the selection to the clipboard" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSdXukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.Merge" commandName="Merge" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSdnukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.ReplaceWithRef" commandName="Replace with branch, tag, or reference" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSd3ukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.command.submitTask" commandName="Submit Task" description="Submits the currently open task" category="_gdXeFXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSeHukEeiLc70_J18rYQ" elementId="org.eclipse.php.composer.ui.command.update" commandName="Update Dependencies" description="Update dependencies (excluding require-dev)" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSeXukEeiLc70_J18rYQ" elementId="org.eclipse.wst.xml.ui.reload.dependencies" commandName="Reload Dependencies" description="Reload Dependencies" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSenukEeiLc70_J18rYQ" elementId="org.eclipse.wst.sse.ui.generate.xml" commandName="&XML File..." category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSe3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.toggleShowSelectedElementOnly" commandName="Show Selected Element Only" description="Show Selected Element Only" category="_gdXeJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSfHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.correction.addImport" commandName="Quick Fix - Add import" description="Invokes quick assist and selects 'Add import'" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSfXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.file.export" commandName="Export" description="Export" category="_gdXeIXukEeiLc70_J18rYQ">
<parameters xmi:id="_gdkSfnukEeiLc70_J18rYQ" elementId="exportWizardId" name="Export Wizard"/>
</commands>
<commands xmi:id="_gdkSf3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.xsd.ui.refactor.makeTypeGlobal" commandName="Make &Anonymous Type Global" description="Promotes anonymous type to global level and replaces its references" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSgHukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.goto.matching.bracket" commandName="Go to Matching Bracket" description="Moves the cursor to the matching bracket" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSgXukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.ApplyPatch" commandName="Apply Patch" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSgnukEeiLc70_J18rYQ" elementId="org.eclipse.php.ui.edit.text.source.quickMenu" commandName="Show Source Quick Menu" description="Shows the source quick menu" category="_gdYFIXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSg3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.ide.copyConfigCommand" commandName="Copy Configuration Data To Clipboard" description="Copies the configuration data (system properties, installed bundles, etc) to the clipboard." category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkShHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.navigate.forwardHistory" commandName="Forward History" description="Move forward in the editor navigation history" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkShXukEeiLc70_J18rYQ" elementId="org.eclipse.search.ui.performTextSearchProject" commandName="Find Text in Project" description="Searches the files in the project for specific text." category="_gdXeKXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkShnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.project.rebuildAll" commandName="Rebuild All" description="Rebuild all projects" category="_gdXeJ3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSh3ukEeiLc70_J18rYQ" elementId="org.eclipse.gef.zoom_in" commandName="Zoom In" description="Zoom In" category="_gdXeMHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSiHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.openLocalFile" commandName="Open File..." description="Open a file" category="_gdXeIXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSiXukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.Disconnect" commandName="Disconnect" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSinukEeiLc70_J18rYQ" elementId="org.eclipse.ui.file.refresh" commandName="Refresh" description="Refresh the selected items" category="_gdXeIXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSi3ukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.RepositoriesViewChangeCredentials" commandName="Change Credentials" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSjHukEeiLc70_J18rYQ" elementId="org.eclipse.php.internal.ui.assignToLocal.assist" commandName="Quick Assist - Assign to local variable" description="Invokes quick assist and selects Assign to local variable" category="_gdYFIXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSjXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.window.closeAllPerspectives" commandName="Close All Perspectives" description="Close all open perspectives" category="_gdXeJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSjnukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.correction.addThrowsDecl" commandName="Quick Fix - Add throws declaration" description="Invokes quick assist and selects 'Add throws declaration'" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSj3ukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.command.disconnected" commandName="Disconnected" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdkSkHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.select.lineStart" commandName="Select Line Start" description="Select to the beginning of the line of text" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdk5cHukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.commit.Reword" commandName="Reword Commit" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdk5cXukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.toggleMarkOccurrences" commandName="Toggle Mark Occurrences" description="Toggles mark occurrences in JavaScript editors" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdk5cnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.editors.lineNumberToggle" commandName="Show Line Numbers" description="Toggle display of line numbers" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdk5c3ukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.github.ui.command.createGist" commandName="Create Gist" description="Create Gist based on selection" category="_gdYFI3ukEeiLc70_J18rYQ">
<parameters xmi:id="_gdk5dHukEeiLc70_J18rYQ" elementId="publicGist" name="Public Gist"/>
</commands>
<commands xmi:id="_gdk5dXukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.search.references.in.workspace" commandName="References in Workspace" description="Search for references to the selected element in the workspace" category="_gdXeKXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdk5dnukEeiLc70_J18rYQ" elementId="org.eclipse.php.ui.edit.text.refactor.quickMenu" commandName="Show Refactor Quick Menu" description="Shows the Refactor Quick Menu" category="_gdYFIXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdk5d3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.infer.type.arguments" commandName="Infer Generic Type Arguments" description="Infer type arguments for references to generic classes and remove unnecessary casts" category="_gdYFJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdk5eHukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.index.ui.command.ResetIndex" commandName="Refresh Search Index" category="_gdXeHHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdk5eXukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.github.ui.command.rebasePullRequest" commandName="Rebase pull request" description="Rebase onto destination branch" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdk5enukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.RepositoriesToggleBranchCommit" commandName="Toggle Latest Branch Commit" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdk5e3ukEeiLc70_J18rYQ" elementId="org.eclipse.tm.terminal.paste" commandName="Paste" category="_gdXeKHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdk5fHukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.history.PushCommit" commandName="Push Commit..." category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdk5fXukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.correction.assignToField.assist" commandName="Quick Assist - Assign to var" description="Invokes quick assist and selects 'Assign to var'" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdk5fnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.ide.showInSystemExplorer" commandName="Show In (System Explorer)" description="Show in system's explorer (file manager)" category="_gdXeHXukEeiLc70_J18rYQ">
<parameters xmi:id="_gdk5f3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.ide.showInSystemExplorer.path" name="Resource System Path Parameter"/>
</commands>
<commands xmi:id="_gdk5gHukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.command.new.local.task" commandName="New Local Task" category="_gdXeHHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdk5gXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.select.lineDown" commandName="Select Line Down" description="Extend the selection to the next line of text" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdk5gnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.lowerCase" commandName="To Lower Case" description="Changes the selection to lower case" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdk5g3ukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.CompareWithIndex" commandName="Compare with Index" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdk5hHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.zoomOut" commandName="Zoom Out" description="Zoom out text, decrease default font size for text editors" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdk5hXukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.command.markTaskIncomplete" commandName="Mark Task Incomplete" category="_gdXeHHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdk5hnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.file.save" commandName="Save" description="Save the current contents" category="_gdXeIXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdk5h3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.introduce.indirection" commandName="Introduce Indirection" description="Introduce an indirection to encapsulate invocations of a selected function" category="_gdYFJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdk5iHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.occurrences.in.file" commandName="Search All Occurrences in File" description="Search for all occurrences of the selected element in its declaring file" category="_gdXeKXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdk5iXukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.specific_content_assist.command" commandName="Content Assist" description="A parameterizable command that invokes content assist with a single completion proposal category" category="_gdXeEnukEeiLc70_J18rYQ">
<parameters xmi:id="_gdk5inukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.specific_content_assist.category_id" name="type" optional="false"/>
</commands>
<commands xmi:id="_gdk5i3ukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.command.markTaskReadGoToNextUnread" commandName="Mark Task Read and Go To Next Unread Task" category="_gdXeHHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdk5jHukEeiLc70_J18rYQ" elementId="org.eclipse.team.ui.applyPatch" commandName="Apply Patch..." description="Apply a patch to one or more workspace projects." category="_gdXeEHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdk5jXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.select.lineEnd" commandName="Select Line End" description="Select to the end of the line of text" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdk5jnukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.command.markTaskRead" commandName="Mark Task Read" category="_gdXeHHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdk5j3ukEeiLc70_J18rYQ" elementId="org.eclipse.php.ui.edit.text.add.description" commandName="Generate Element Comment " description="Generate Element Comment" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdk5kHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.select.wordPrevious" commandName="Select Previous Word" description="Select the previous word" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdk5kXukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.indent" commandName="Indent Line" description="Indents the current line" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdlggHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.quick.format" commandName="Format Element" description="Format enclosing text element" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmHkHukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.commands.StepOver" commandName="Step Over" description="Step over" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmHkXukEeiLc70_J18rYQ" elementId="org.eclipse.compare.selectPreviousChange" commandName="Select Previous Change" description="Select Previous Change" category="_gdXeI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmHknukEeiLc70_J18rYQ" elementId="org.eclipse.ui.file.exit" commandName="Exit" description="Exit the application" category="_gdXeIXukEeiLc70_J18rYQ">
<parameters xmi:id="_gdmHk3ukEeiLc70_J18rYQ" elementId="mayPrompt" name="may prompt"/>
</commands>
<commands xmi:id="_gdmHlHukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.CompareWithHead" commandName="Compare with HEAD Revision" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmHlXukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.CompareWithCommit" commandName="Compare with Commit..." category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmHlnukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.RepositoriesViewOpen" commandName="Open" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmHl3ukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.command.deactivateAllTasks" commandName="Deactivate Task" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmHmHukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.ShowHistory" commandName="Show in History" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmHmXukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.surround.with.quickMenu" commandName="Surround With Quick Menu" description="Shows the Surround With quick menu" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmHmnukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.debug.ui.commands.ScriptInspect" commandName="Inspect" description="Inspect result of evaluating selected text" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmHm3ukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.SimplePush" commandName="Push to Upstream" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmHnHukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.commands.addMemoryMonitor" commandName="Add Memory Block" description="Add memory block" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmHnXukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.navigate.gototype" commandName="Go to Type" description="Go to Type" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmHnnukEeiLc70_J18rYQ" elementId="org.eclipse.php.ui.editor.organize.use.statements" commandName="Organize Use Statements" description="Sort the use statements for class" category="_gdYFIXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmHn3ukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.PushHeadToGerrit" commandName="Push Current Head to Gerrit" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmHoHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.selectAll" commandName="Select All" description="Select all" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmHoXukEeiLc70_J18rYQ" elementId="org.eclipse.php.ui.navigate.open.method" commandName="Opens a method in a PHP editor" description="Opens a method in a PHP editor" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmHonukEeiLc70_J18rYQ" elementId="org.eclipse.ui.project.rebuildProject" commandName="Rebuild Project" description="Rebuild the selected projects" category="_gdXeJ3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmHo3ukEeiLc70_J18rYQ" elementId="org.eclipse.egit.gitflow.ui.command.init" commandName="Init Git Flow" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmHpHukEeiLc70_J18rYQ" elementId="org.eclipse.egit.gitflow.ui.command.releaseStart" commandName="Start Release" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmHpXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.copyLineDown" commandName="Copy Lines" description="Duplicates the selected lines and moves the selection to the copy" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmHpnukEeiLc70_J18rYQ" elementId="org.eclipse.egit.gitflow.ui.command.compareWithDevelop" commandName="Compare with develop branch" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmHp3ukEeiLc70_J18rYQ" elementId="org.eclipse.oomph.setup.editor.perform" commandName="Perform Setup Tasks" category="_gdXeF3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmHqHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.help.installationDialog" commandName="Installation Information" description="Open the installation dialog" category="_gdXeJXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmHqXukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.refactor.create.refactoring.script" commandName="Create Script" description="Create a refactoring script from refactorings on the local workspace" category="_gdYFJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmHqnukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.type.hierarchy" commandName="Open Type Hierarchy" description="Open a type hierarchy on the selected element" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmHq3ukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.commands.ToggleStepFilters" commandName="Use Step Filters" description="Toggles enablement of debug step filters" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmHrHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.goto.lineUp" commandName="Line Up" description="Go up one line of text" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmHrXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.goto.windowStart" commandName="Window Start" description="Go to the start of the window" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmHrnukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.commons.ui.command.AddRepository" commandName="Add Repository" category="_gdYFIHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmHr3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.correction.addNonNLS" commandName="Quick Fix - Add non-NLS tag" description="Invokes quick assist and selects 'Add non-NLS tag'" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmHsHukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.AssumeUnchanged" commandName="Assume Unchanged" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmHsXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.window.closePerspective" commandName="Close Perspective" description="Close the current perspective" category="_gdXeJHukEeiLc70_J18rYQ">
<parameters xmi:id="_gdmuoHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.window.closePerspective.perspectiveId" name="Perspective Id"/>
</commands>
<commands xmi:id="_gdmuoXukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.add.block.comment" commandName="Add Block Comment" description="Enclose the selection with a block comment" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmuonukEeiLc70_J18rYQ" elementId="org.eclipse.wst.xml.ui.nextSibling" commandName="Next Sibling" description="Go to Next Sibling" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmuo3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.extract.local.variable" commandName="Extract Local Variable" description="Extracts an expression into a new local variable and uses the new local variable" category="_gdYFJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmupHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.navigate.open.type" commandName="Open Type" description="Open a type in a JavaScript editor" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmupXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.cheatsheets.openCheatSheetURL" commandName="Open Cheat Sheet from URL" description="Open a Cheat Sheet from file at a specified URL." category="_gdXeJXukEeiLc70_J18rYQ">
<parameters xmi:id="_gdmupnukEeiLc70_J18rYQ" elementId="cheatSheetId" name="Identifier" optional="false"/>
<parameters xmi:id="_gdmup3ukEeiLc70_J18rYQ" elementId="name" name="Name" optional="false"/>
<parameters xmi:id="_gdmuqHukEeiLc70_J18rYQ" elementId="url" name="URL" optional="false"/>
</commands>
<commands xmi:id="_gdmuqXukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.PushBranch" commandName="Push Branch..." category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmuqnukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.rename.element" commandName="Rename - Refactoring " description="Rename the selected element" category="_gdYFJXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmuq3ukEeiLc70_J18rYQ" elementId="org.eclipse.php.ui.edit.text.php.open.type.hierarchy" commandName="Open Type Hierarchy" description="Opens a type hierarchy for the selected element" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmurHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.chromium.debug.ui.breakpoint.properties" commandName="Breakpoint Properties..." description="Modify breakpoint properties" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmurXukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.navigate.gotopackage" commandName="Go to Folder" description="Go to Folder" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmurnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.file.closeAllSaved" commandName="Close All Saved" description="Close all saved editors" category="_gdXeIXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmur3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.server.launchShortcut.run" commandName="Run on Server" description="Run the current selection on a server" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmusHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.move.inner.to.top.level" commandName="Convert Member Type to Top Level" description="Convert member type to top level" category="_gdYFJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmusXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.redo" commandName="Redo" description="Redo the last operation" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmusnukEeiLc70_J18rYQ" elementId="org.eclipse.wst.server.launchShortcut.debug" commandName="Debug on Server" description="Debug the current selection on a server" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmus3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.navigate.selectWorkingSets" commandName="Select Working Sets" description="Select the working sets that are applicable for this window." category="_gdXeJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmutHukEeiLc70_J18rYQ" elementId="org.eclipse.tm.terminal.view.ui.command.newview" commandName="New Terminal View" category="_gdXeInukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmutXukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.correction.extractConstant.assist" commandName="Quick Assist - Extract constant" description="Invokes quick assist and selects 'Extract constant'" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmutnukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.history.CherryPick" commandName="Cherry Pick" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmut3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.file.close" commandName="Close" description="Close the active editor" category="_gdXeIXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmuuHukEeiLc70_J18rYQ" elementId="org.eclipse.egit.gitflow.ui.command.featureStart" commandName="Start Feature" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmuuXukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.history.Reset" commandName="Reset..." category="_gdYFI3ukEeiLc70_J18rYQ">
<parameters xmi:id="_gdmuunukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.history.ResetMode" name="Reset mode" optional="false"/>
</commands>
<commands xmi:id="_gdmuu3ukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.testing.gotoTest" commandName="Referring Tests" description="Referring Tests" category="_gdXeKXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmuvHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.navigate.previousSubTab" commandName="Previous Sub-Tab" description="Switch to the previous sub-tab" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmuvXukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.js.gulp.commands.gulpLaunch" commandName="Run as Gulp Task" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmuvnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.navigate.showIn" commandName="Show In" category="_gdXeHXukEeiLc70_J18rYQ">
<parameters xmi:id="_gdmuv3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.navigate.showIn.targetId" name="Show In Target Id" optional="false"/>
</commands>
<commands xmi:id="_gdmuwHukEeiLc70_J18rYQ" elementId="sed.tabletree.collapseAll" commandName="Collapse All" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmuwXukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.RepositoriesViewRemoveRemote" commandName="Delete Remote" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmuwnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.dialogs.openInputDialog" commandName="Open Input Dialog" description="Open an Input Dialog" category="_gdXeK3ukEeiLc70_J18rYQ">
<parameters xmi:id="_gdmuw3ukEeiLc70_J18rYQ" elementId="title" name="Title"/>
<parameters xmi:id="_gdmuxHukEeiLc70_J18rYQ" elementId="message" name="Message"/>
<parameters xmi:id="_gdmuxXukEeiLc70_J18rYQ" elementId="initialValue" name="Initial Value"/>
<parameters xmi:id="_gdmuxnukEeiLc70_J18rYQ" elementId="cancelReturns" name="Return Value on Cancel"/>
</commands>
<commands xmi:id="_gdmux3ukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.RebaseCurrent" commandName="Rebase" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmuyHukEeiLc70_J18rYQ" elementId="org.eclipse.php.composer.ui.command.addComposerSupport" commandName="Add Composer Support" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmuyXukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.command.markTaskComplete" commandName="Mark Task Complete" category="_gdXeHHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmuynukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.select.windowStart" commandName="Select Window Start" description="Select to the start of the window" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmuy3ukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.history.Revert" commandName="Revert Commit" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmuzHukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.RepositoriesViewImportProjects" commandName="Import Projects..." description="Import or create in local Git repository" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmuzXukEeiLc70_J18rYQ" elementId="org.eclipse.compare.copyAllLeftToRight" commandName="Copy All from Left to Right" description="Copy All Changes from Left to Right" category="_gdXeI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmuznukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.debug.ui.evaluate.command" commandName="Evaluate" description="Evaluates the selected text in the JavaScript editor" category="_gdXeIHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmuz3ukEeiLc70_J18rYQ" elementId="org.eclipse.search.ui.openFileSearchPage" commandName="File Search" description="Open the Search dialog's file search page" category="_gdXeKXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmu0HukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.RepositoriesViewAddRepository" commandName="Add a Git Repository" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmu0XukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.command.task.clearActiveTime" commandName="Clear Active Time" category="_gdXeHHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmu0nukEeiLc70_J18rYQ" elementId="org.eclipse.ui.ide.copyBuildIdCommand" commandName="Copy Build Id To Clipboard" description="Copies the build id to the clipboard." category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmu03ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.select.textEnd" commandName="Select Text End" description="Select to the end of the text" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmu1HukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.context.ui.commands.task.attachContext" commandName="Attach Context" category="_gdXeGnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdmu1XukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.goto.wordPrevious" commandName="Previous Word" description="Go to the previous word" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnVsHukEeiLc70_J18rYQ" elementId="org.eclipse.tm.terminal.connector.local.command.launch" commandName="Open Local Terminal on Selection" category="_gdXeInukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnVsXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.window.preferences" commandName="Preferences" description="Open the preferences dialog" category="_gdXeJHukEeiLc70_J18rYQ">
<parameters xmi:id="_gdnVsnukEeiLc70_J18rYQ" elementId="preferencePageId" name="Preference Page"/>
</commands>
<commands xmi:id="_gdnVs3ukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.commit.Squash" commandName="Squash Commits" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnVtHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.copy" commandName="Copy" description="Copy the selection to the clipboard" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnVtXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.window.nextView" commandName="Next View" description="Switch to the next view" category="_gdXeJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnVtnukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.debug.ui.commands.ScriptWatch" commandName="Watch" description="Create new watch expression" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnVt3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.revertToSaved" commandName="Revert to Saved" description="Revert to the last saved state" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnVuHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.views.properties.NewPropertySheetCommand" commandName="Properties" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnVuXukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.commands.RunToLine" commandName="Run to Line" description="Resume and break when execution reaches the current line" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnVunukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.navigate.java.open.structure" commandName="Open Structure" description="Show the structure of the selected element" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnVu3ukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.RepositoriesViewPaste" commandName="Paste Repository Path or URI" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnVvHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.showChangeRulerInformation" commandName="Show Quick Diff Ruler Tooltip" description="Displays quick diff or revision information for the caret line in a focused hover" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnVvXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.upperCase" commandName="To Upper Case" description="Changes the selection to upper case" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnVvnukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.ConfigureFetch" commandName="Configure Upstream Fetch" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnVv3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.navigate.goInto" commandName="Go Into" description="Navigate into the selected item" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnVwHukEeiLc70_J18rYQ" elementId="org.eclipse.pdt.ui.edit.text.select.next" commandName="Select Next Element" description="Expands selection to include next sibling" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnVwXukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.ConfigureUpstreamPush" commandName="Configure Upstream Push" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnVwnukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.commands.OpenRunConfigurations" commandName="Run..." description="Open run launch configuration dialog" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnVw3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.select.windowEnd" commandName="Select Window End" description="Select to the end of the window" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnVxHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.window.minimizePart" commandName="Minimize Active View or Editor" description="Minimizes the active view or editor" category="_gdXeJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnVxXukEeiLc70_J18rYQ" elementId="org.eclipse.tm.terminal.command1" commandName="Terminal view insert" category="_gdXeKHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnVxnukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.Untrack" commandName="Untrack" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnVx3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.sse.ui.add.block.comment" commandName="Add Block Comment" description="Add Block Comment" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnVyHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.window.showSystemMenu" commandName="Show System Menu" description="Show the system menu" category="_gdXeJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnVyXukEeiLc70_J18rYQ" elementId="org.eclipse.egit.gitflow.ui.command.replaceWithDevelop" commandName="Replace with develop branch" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnVynukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.history.OpenInCommitViewerCommand" commandName="Open in Commit Viewer" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnVy3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.window.savePerspective" commandName="Save Perspective As" description="Save the current perspective" category="_gdXeJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnVzHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.use.supertype" commandName="Use Supertype Where Possible" description="Change occurrences of a type to use a supertype instead" category="_gdYFJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnVzXukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.command.configureTrace" commandName="Configure Git Debug Trace" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnVznukEeiLc70_J18rYQ" elementId="org.eclipse.php.ui.editor.goto.matching.bracket" commandName="Go to Matching Bracket" description="Moves the cursor to the matching bracket" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnVz3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.navigate.linkWithEditor" commandName="Toggle Link with Editor" description="Toggles linking of a view's selection with the active editor's selection" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnV0HukEeiLc70_J18rYQ" elementId="org.eclipse.wst.sse.ui.open.file.from.source" commandName="Open Selection" description="Open an editor on the selected link" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnV0XukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.toggleBlockSelectionMode" commandName="Toggle Block Selection" description="Toggle block / column selection in the current text editor" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnV0nukEeiLc70_J18rYQ" elementId="org.eclipse.wst.sse.ui.goto.matching.bracket" commandName="Matching Character" description="Go to Matching Character" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnV03ukEeiLc70_J18rYQ" elementId="org.eclipse.php.ui.edit.text.show.phpdoc" commandName="Show Tooltip Description" description="Shows the tooltip description for the element at the cursor" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnV1HukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.CompareIndexWithHead" commandName="Compare File in Index with HEAD Revision" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnV1XukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.references.in.workspace" commandName="References in Workspace" description="Search for references to the selected element in the workspace" category="_gdXeKXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnV1nukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.wikitext.ui.convert@todocbookCommand" commandName="Generate Docbook" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnV13ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.part.nextPage" commandName="Next Page" description="Switch to the next page" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnV2HukEeiLc70_J18rYQ" elementId="org.eclipse.pdt.ui.edit.text.select.last" commandName="Restore Last Selection" description="Restores last selection" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnV2XukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.history.CreateBranch" commandName="Create Branch" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnV2nukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.folding.collapseComments" commandName="Collapse Comments" description="Collapse all comments" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnV23ukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.RepositoriesViewClone" commandName="Clone a Git Repository" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnV3HukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.clear.mark" commandName="Clear Mark" description="Clear the mark" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnV3XukEeiLc70_J18rYQ" elementId="org.eclipse.wst.sse.ui.quick_outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnV3nukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.inline" commandName="Inline" description="Inline a constant, local variable or function" category="_gdYFJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnV33ukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.RepositoriesViewRemove" commandName="Remove Repository" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnV4HukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.PackagesView" commandName="JavaScript Folders" description="Show the Folders view" category="_gdXeEXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnV4XukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.github.ui.command.mergePullRequest" commandName="Merge pull request" description="Merge into destination branch" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnV4nukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.RepositoriesViewCreateRepository" commandName="Create a Repository" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnV43ukEeiLc70_J18rYQ" elementId="org.eclipse.egit.gitflow.ui.command.featureFinish" commandName="Finish Feature" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnV5HukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.PushTags" commandName="Push Tags..." category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnV5XukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.ContinueRebase" commandName="Continue Rebase" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnV5nukEeiLc70_J18rYQ" elementId="org.eclipse.help.ui.closeTray" commandName="Close User Assistance Tray" description="Close the user assistance tray containing context help information and cheat sheets." category="_gdXeJXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnV53ukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.history.CreatePatch" commandName="Create Patch" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnV6HukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.commands.Resume" commandName="Resume" description="Resume" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnV6XukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.toggle.comment" commandName="Toggle Comment" description="Toggle comment the selected lines" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnV6nukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.context.ui.commands.open.context.dialog" commandName="Show Context Quick View" description="Show Context Quick View" category="_gdXeGnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnV63ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.file.restartWorkbench" commandName="Restart" description="Restart the workbench" category="_gdXeIXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnV7HukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.read.access.in.project" commandName="Read Access in Project" description="Search for read references to the selected element in the enclosing project" category="_gdXeKXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnV7XukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.CompareWithRef" commandName="Compare with Branch, Tag or Reference..." category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdnV7nukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.context.ui.commands.attachment.retrieveContext" commandName="Retrieve Context Attachment" category="_gdXeGnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn8wHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.toggleOverwrite" commandName="Toggle Overwrite" description="Toggle overwrite mode" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn8wXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.folding.collapse_all" commandName="Collapse All" description="Collapses all folded regions" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn8wnukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.surround.with.try.catch" commandName="Surround with try/catch Block" description="Surround the selected text with a try/catch block" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn8w3ukEeiLc70_J18rYQ" elementId="org.eclipse.php.ui.edit.text.add.objectoperator" commandName="Create Object Operator" description="Dynamically create object operator" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn8xHukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.command.RefreshRepositoryTasks" commandName="Synchronize Changed" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn8xXukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.commands.ToggleWatchpoint" commandName="Toggle Watchpoint" description="Creates or removes a watchpoint" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn8xnukEeiLc70_J18rYQ" elementId="org.eclipse.equinox.p2.ui.discovery.commands.ShowRepositoryCatalog" commandName="Show Repository Catalog" category="_gdYFI3ukEeiLc70_J18rYQ">
<parameters xmi:id="_gdn8x3ukEeiLc70_J18rYQ" elementId="org.eclipse.equinox.p2.ui.discovery.commands.RepositoryParameter" name="P2 Repository URI"/>
</commands>
<commands xmi:id="_gdn8yHukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.commands.closeRendering" commandName="Close Rendering" description="Close the selected rendering." category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn8yXukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.RepositoriesViewOpenInEditor" commandName="Open in Editor" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn8ynukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.introduce.parameter" commandName="Introduce Parameter" description="Introduce a new function parameter based on the selected expression" category="_gdYFJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn8y3ukEeiLc70_J18rYQ" elementId="org.eclipse.php.composer.ui.command.installDev" commandName="Install dependencies (dev)" description="Install dependencies (including require-dev)" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn8zHukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.submodule.update" commandName="Update Submodule" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn8zXukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.commands.ProfileLast" commandName="Profile" description="Launch in profile mode" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn8znukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.Pull" commandName="Pull" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn8z3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.TypeHierarchy" commandName="JavaScript Type Hierarchy" description="Show the Type Hierarchy view" category="_gdXeEXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn80HukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.swap.mark" commandName="Swap Mark" description="Swap the mark with the cursor position" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn80XukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.context.ui.commands.interest.increment" commandName="Make Landmark" description="Make Landmark" category="_gdXeGnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn80nukEeiLc70_J18rYQ" elementId="org.eclipse.egit.gitflow.ui.command.developCheckout" commandName="Checkout Develop" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn803ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.add.javadoc.comment" commandName="Add JSDoc Comment" description="Add a JSDoc comment stub to the member element" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn81HukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.hierarchy" commandName="Quick Hierarchy" description="Show the quick hierarchy of the selected element" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn81XukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureFetch" commandName="Configure Fetch..." category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn81nukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.show.outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn813ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.shiftLeft" commandName="Shift Left" description="Shift a block of text to the left" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn82HukEeiLc70_J18rYQ" elementId="org.eclipse.wst.sse.ui.structure.select.next" commandName="Select Next Element" description="Expand selection to include next sibling" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn82XukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.Push" commandName="Push..." category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn82nukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.testing.testingShortcut.debug" commandName="Debug testing Test" description="Debug testing Test" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn823ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.generate.javadoc" commandName="Generate JSDoc" description="Generates JSDoc for a selectable set of JavaScript resources" category="_gdXeJ3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn83HukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.stash.drop" commandName="Delete Stashed Commit..." category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn83XukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.DebugPerspective" commandName="Debug" description="Open the debug perspective" category="_gdXeLnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn83nukEeiLc70_J18rYQ" elementId="org.eclipse.php.refactoring.ui.commands.extractMethod" commandName="Extract Variable" category="_gdXeJnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn833ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.source.quickMenu" commandName="Show Source Quick Menu" description="Shows the source quick menu" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn84HukEeiLc70_J18rYQ" elementId="org.eclipse.egit.gitflow.ui.command.hotfixFinish" commandName="Finish Hotfix" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn84XukEeiLc70_J18rYQ" elementId="org.eclipse.ui.navigate.expandAll" commandName="Expand All" description="Expand the current tree" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn84nukEeiLc70_J18rYQ" elementId="org.eclipse.ui.file.saveAll" commandName="Save All" description="Save all current contents" category="_gdXeIXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn843ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.goto.matching.bracket" commandName="Go to Matching Bracket" description="Moves the cursor to the matching bracket" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn85HukEeiLc70_J18rYQ" elementId="org.eclipse.ui.file.closeOthers" commandName="Close Others" description="Close all editors except the one that is active" category="_gdXeIXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn85XukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.rename.element" commandName="Rename - Refactoring " description="Rename the selected element" category="_gdYFJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn85nukEeiLc70_J18rYQ" elementId="org.eclipse.ui.editors.quickdiff.revertLine" commandName="Revert Line" description="Revert the current line" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn853ukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.commands.OpenDebugConfigurations" commandName="Debug..." description="Open debug launch configuration dialog" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn86HukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.SimpleFetch" commandName="Fetch from Upstream" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn86XukEeiLc70_J18rYQ" elementId="org.eclipse.ui.window.previousEditor" commandName="Previous Editor" description="Switch to the previous editor" category="_gdXeJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn86nukEeiLc70_J18rYQ" elementId="org.eclipse.php.composer.ui.command.removeComposerSupport" commandName="Remove Composer Support" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn863ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.zoomIn" commandName="Zoom In" description="Zoom in text, increase default font size for text editors" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn87HukEeiLc70_J18rYQ" elementId="org.eclipse.ui.ide.OpenMarkersView" commandName="Open Another" description="Open another view" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn87XukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.PackageExplorer" commandName="JavaScript Script Explorer" description="Show the Script Explorer" category="_gdXeEXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn87nukEeiLc70_J18rYQ" elementId="org.eclipse.php.ui.edit.text.php.open.manual" commandName="Open manual" description="Open function manual in an internal web browser" category="_gdYFIXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn873ukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.commands.newRendering" commandName="New Rendering" description="Add a new rendering." category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn88HukEeiLc70_J18rYQ" elementId="org.eclipse.ui.project.closeUnrelatedProjects" commandName="Close Unrelated Projects" description="Close unrelated projects" category="_gdXeJ3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn88XukEeiLc70_J18rYQ" elementId="org.eclipse.search.ui.performTextSearchWorkspace" commandName="Find Text in Workspace" description="Searches the files in the workspace for specific text." category="_gdXeKXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn88nukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.extract.superclass" commandName="Extract Superclass" description="Extract a set of members into a new superclass and try to use the new superclass" category="_gdYFJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn883ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.sse.ui.remove.block.comment" commandName="Remove Block Comment" description="Remove Block Comment" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn89HukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.toggleMarkOccurrences" commandName="Toggle Mark Occurrences" description="%toggleMarkOccurrences.description" category="_gdXeE3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn89XukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.generate.constructor.using.fields" commandName="Generate Constructor using Vars" description="Choose vars to initialize and constructor from superclass to call " category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn89nukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.addBookmark" commandName="Add Bookmark" description="Add a bookmark" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn893ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.xsd.ui.refactor.rename.element" commandName="&Rename XSD element" description="Rename XSD element" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn8-HukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.set.mark" commandName="Set Mark" description="Set the mark" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn8-XukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.command.goToPreviousUnread" commandName="Go To Previous Unread Task" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn8-nukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.next" commandName="Select Next Element" description="Expand selection to include next sibling" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdn8-3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.views.showView" commandName="Show View" description="Shows a particular view" category="_gdXeEXukEeiLc70_J18rYQ">
<parameters xmi:id="_gdn8_HukEeiLc70_J18rYQ" elementId="org.eclipse.ui.views.showView.viewId" name="View"/>
<parameters xmi:id="_gdn8_XukEeiLc70_J18rYQ" elementId="org.eclipse.ui.views.showView.secondaryId" name="Secondary Id"/>
<parameters xmi:id="_gdn8_nukEeiLc70_J18rYQ" elementId="org.eclipse.ui.views.showView.makeFast" name="As FastView"/>
</commands>
<commands xmi:id="_gdn8_3ukEeiLc70_J18rYQ" elementId="org.eclipse.php.deubg.ui.phpexeShortcut.debug" commandName="Debug CLI Application" description="Debug CLI Application" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj0HukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.Ignore" commandName="Ignore" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj0XukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.commit.Edit" commandName="Edit Commit" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj0nukEeiLc70_J18rYQ" elementId="org.eclipse.ui.navigate.showResourceByPath" commandName="Show Resource in Navigator" description="Show a resource in the Navigator given its path" category="_gdXeHXukEeiLc70_J18rYQ">
<parameters xmi:id="_gdoj03ukEeiLc70_J18rYQ" elementId="resourcePath" name="Resource Path" typeId="org.eclipse.ui.ide.resourcePath" optional="false"/>
</commands>
<commands xmi:id="_gdoj1HukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.commands.SkipAllBreakpoints" commandName="Skip All Breakpoints" description="Sets whether or not any breakpoint should suspend execution" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj1XukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.delimiter.windows" commandName="Convert Line Delimiters to Windows (CRLF, \r\n, 0D0A, ¤¶)" description="Converts the line delimiters to Windows (CRLF, \r\n, 0D0A, ¤¶)" category="_gdXeIXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj1nukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.findNext" commandName="Find Next" description="Find next item" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj13ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.window.hidetrimbars" commandName="Toggle visibility of the window toolbars" description="Toggle the visibility of the toolbars of the current window" category="_gdXeJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj2HukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.declarations.in.workspace" commandName="Declaration in Workspace" description="Search for declarations of the selected element in the workspace" category="_gdXeKXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj2XukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.super.implementation" commandName="Open Super Implementation" description="Open the Implementation in the Super Type" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj2nukEeiLc70_J18rYQ" elementId="org.eclipse.wst.server.debug" commandName="Debug" description="Debug server" category="_gdXeHnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj23ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.navigate.nextSubTab" commandName="Next Sub-Tab" description="Switch to the next sub-tab" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj3HukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.command.addTaskRepository" commandName="Add Task Repository..." category="_gdXeHHukEeiLc70_J18rYQ">
<parameters xmi:id="_gdoj3XukEeiLc70_J18rYQ" elementId="connectorKind" name="Repository Type"/>
</commands>
<commands xmi:id="_gdoj3nukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.addTask" commandName="Add Task..." description="Add a task" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj33ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.sse.ui.structure.select.enclosing" commandName="Select Enclosing Element" description="Expand selection to include enclosing element" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj4HukEeiLc70_J18rYQ" elementId="org.eclipse.ui.cheatsheets.openCheatSheet" commandName="Open Cheat Sheet" description="Open a Cheat Sheet." category="_gdXeJXukEeiLc70_J18rYQ">
<parameters xmi:id="_gdoj4XukEeiLc70_J18rYQ" elementId="cheatSheetId" name="Identifier"/>
</commands>
<commands xmi:id="_gdoj4nukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.viewSource.command" commandName="View Unformatted Text" category="_gdXeHHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj43ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.moveLineDown" commandName="Move Lines Down" description="Moves the selected lines down" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj5HukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.SourceView" commandName="JavaScript Declaration" description="Show the Declaration view" category="_gdXeEXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj5XukEeiLc70_J18rYQ" elementId="org.eclipse.equinox.p2.ui.sdk.update" commandName="Check for Updates" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj5nukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.goto.textEnd" commandName="Text End" description="Go to the end of the text" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj53ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.part.previousPage" commandName="Previous Page" description="Switch to the previous page" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj6HukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.override.methods" commandName="Override/Implement Functions" description="Override or implement functions from super types" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj6XukEeiLc70_J18rYQ" elementId="org.eclipse.ui.project.closeProject" commandName="Close Project" description="Close the selected project" category="_gdXeJ3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj6nukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.PullWithOptions" commandName="Pull..." category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj63ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.refactor.migrate.jar" commandName="Migrate JAR File" description="Migrate a JAR File to a new version" category="_gdYFJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj7HukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.editor" commandName="Open Declaration" description="Open an editor on the selected element" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj7XukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.github.ui.command.checkoutPullRequest" commandName="Checkout Pull Request" description="Checkout pull request into topic branch" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj7nukEeiLc70_J18rYQ" elementId="org.eclipse.wst.server.publish" commandName="Publish" description="Publish to server" category="_gdXeHnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj73ukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.navigate.open.type" commandName="Open Type" description="Open a type in a DLTK editor" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj8HukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.commit.CherryPick" commandName="Cherry Pick" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj8XukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.command.markTaskUnread" commandName="Mark Task Unread" category="_gdXeHHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj8nukEeiLc70_J18rYQ" elementId="org.eclipse.search.ui.performTextSearchFile" commandName="Find Text in File" description="Searches the files in the file for specific text." category="_gdXeKXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj83ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.sse.ui.structure.select.last" commandName="Restore Last Selection" description="Restore last selection" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj9HukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.sort.members" commandName="Sort Members" description="Sort all members using the member order preference" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj9XukEeiLc70_J18rYQ" elementId="org.eclipse.php.ui.navigate.open.type" commandName="Open Type" description="Opens a type in a PHP editor" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj9nukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.cut.line" commandName="Cut Line" description="Cut a line of text, or multiple lines when invoked again without interruption" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj93ukEeiLc70_J18rYQ" elementId="org.eclipse.tm.terminal.view.ui.command.launch" commandName="Open Terminal on Selection" category="_gdXeInukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj-HukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.folding.expand_all" commandName="Expand All" description="Expands all folded regions" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj-XukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.commands.showElementInPackageView" commandName="Show JavaScript Element in Script Explorer" description="Select JavaScript element in the Script Explorer view" category="_gdXeHXukEeiLc70_J18rYQ">
<parameters xmi:id="_gdoj-nukEeiLc70_J18rYQ" elementId="elementRef" name="JavaScript element reference" typeId="org.eclipse.wst.jsdt.ui.commands.javaElementReference" optional="false"/>
</commands>
<commands xmi:id="_gdoj-3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.xsd.ui.refactor.makeElementGlobal" commandName="Make Local Element &Global" description="Promotes local element to global level and replaces its references" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj_HukEeiLc70_J18rYQ" elementId="org.eclipse.oomph.setup.editor.openEditorDropdown" commandName="Open Setup Editor" category="_gdXeF3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj_XukEeiLc70_J18rYQ" elementId="org.eclipse.php.ui.edit.text.move.element" commandName="Move - Refactoring " description="Moves the selected element to a new location" category="_gdXeJnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj_nukEeiLc70_J18rYQ" elementId="org.eclipse.ui.help.quickStartAction" commandName="Welcome" description="Show help for beginning users" category="_gdXeJXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdoj_3ukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.mylyn.editor.folding.auto" commandName="Toggle Active Folding" description="Toggle Active Folding" category="_gdXeGXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdokAHukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.ReplaceWithPrevious" commandName="Replace with Previous Revision" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdokAXukEeiLc70_J18rYQ" elementId="org.eclipse.oomph.setup.ui.questionnaire" commandName="Configuration Questionnaire" description="Review the IDE's most fiercely contested preferences" category="_gdXeF3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdokAnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.window.hideShowEditors" commandName="Toggle Shared Area Visibility" description="Toggles the visibility of the shared area" category="_gdXeJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdokA3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.folding.restore" commandName="Reset Structure" description="Resets the folding structure" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdokBHukEeiLc70_J18rYQ" elementId="org.eclipse.help.ui.indexcommand" commandName="Index" description="Show Keyword Index" category="_gdXeJXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdokBXukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.refactor.quickMenu" commandName="Show Refactor Quick Menu" description="Shows the refactor quick menu" category="_gdYFJXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdokBnukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.create.delegate.methods" commandName="Generate Delegate Functions" description="Add delegate functions for a type's vars" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdokB3ukEeiLc70_J18rYQ" elementId="org.eclipse.php.composer.ui.command.updateDev" commandName="Update dependencies (dev)" description="Update dependencies (including require-dev)" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdokCHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.navigate.forward" commandName="Forward" description="Navigate forward" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdokCXukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.last" commandName="Restore Last Selection" description="Restore last selection" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdokCnukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.history.DeleteTag" commandName="&Delete Tag" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdokC3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.window.pinEditor" commandName="Pin Editor" description="Pin the current editor" category="_gdXeJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdokDHukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.testing.testingShortcut.rerunLast" commandName="Rerun testing Test" description="Rerun testing Test" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdokDXukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.github.ui.command.fetchPullRequest" commandName="Fetch Pull Request Commits" description="Fetch commits from pull request" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdokDnukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.show.in.package.view" commandName="Show in Script Explorer" description="Show the selected element in the Script Explorer" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdokD3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.goto.pageUp" commandName="Page Up" description="Go up one page" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpK4HukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.submodule.sync" commandName="Sync Submodule" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpK4XukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.DeleteBranch" commandName="Delete Branch" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpK4nukEeiLc70_J18rYQ" elementId="org.eclipse.tm.terminal.copy" commandName="Copy" category="_gdXeKHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpK43ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.goto.columnPrevious" commandName="Previous Column" description="Go to the previous column" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpK5HukEeiLc70_J18rYQ" elementId="org.eclipse.compare.selectNextChange" commandName="Select Next Change" description="Select Next Change" category="_gdXeI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpK5XukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.remove.block.comment" commandName="Remove Block Comment" description="Remove the block comment enclosing the selection" category="_gdXeE3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpK5nukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.correction.splitJoinVariableDeclaration.assist" commandName="Quick Assist - Split/Join variable declaration" description="Invokes quick assist and selects 'Split/Join variable declaration'" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpK53ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.correction.assignParamToField.assist" commandName="Quick Assist - Assign parameter to var" description="Invokes quick assist and selects 'Assign parameter to var'" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpK6HukEeiLc70_J18rYQ" elementId="org.eclipse.ltk.ui.refactoring.commands.renameResource" commandName="Rename Resource" description="Rename the selected resource and notify LTK participants." category="_gdXeL3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpK6XukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.Rebase" commandName="Rebase on" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpK6nukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.commit.ShowInHistory" commandName="Show in History" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpK63ukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.command.previousTask" commandName="Previous Task Command" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpK7HukEeiLc70_J18rYQ" elementId="org.eclipse.ui.file.properties" commandName="Properties" description="Display the properties of the selected item" category="_gdXeIXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpK7XukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.copy.qualified.name" commandName="Copy Qualified Name" description="Copy a fully qualified name to the system clipboard" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpK7nukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.ReplaceWithHead" commandName="Replace with HEAD revision" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpK73ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.references.in.hierarchy" commandName="References in Hierarchy" description="Search for references of the selected element in its hierarchy" category="_gdXeKXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpK8HukEeiLc70_J18rYQ" elementId="org.eclipse.ui.activeContextInfo" commandName="Show activeContext Info" category="_gdXeJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpK8XukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.command.markTaskReadGoToPreviousUnread" commandName="Mark Task Read and Go To Previous Unread Task" category="_gdXeHHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpK8nukEeiLc70_J18rYQ" elementId="org.eclipse.php.composer.ui.command.graph" commandName="Dependency Graph" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpK83ukEeiLc70_J18rYQ" elementId="org.eclipse.php.ui.edit.text.php.open.call.hierarchy" commandName="Open Call Hierarchy" description="Opens a call hierarchy for the selected element" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpK9HukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.call.hierarchy" commandName="Open Call Hierarchy" description="Open a call hierarchy on the selected element" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpK9XukEeiLc70_J18rYQ" elementId="org.eclipse.php.refactoring.ui.commands.extractVariable" commandName="Extract Variable" category="_gdXeJnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpK9nukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.select.textStart" commandName="Select Text Start" description="Select to the beginning of the text" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpK93ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.sse.ui.cleanup.document" commandName="Cleanup Document..." description="Cleanup document" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpK-HukEeiLc70_J18rYQ" elementId="org.eclipse.egit.gitflow.ui.command.releaseFinish" commandName="Finish Release" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpK-XukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.ConfigurePush" commandName="Configure Upstream Push" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpK-nukEeiLc70_J18rYQ" elementId="org.eclipse.pdt.ui.edit.text.select.enclosing" commandName="Select Enclosing Element" description="Expands selection to include enclosing element" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpK-3ukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.command.nextpage" commandName="Next Page of Memory" description="Load next page of memory" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpK_HukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.command.gotoaddress" commandName="Go to Address" description="Go to Address" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpK_XukEeiLc70_J18rYQ" elementId="org.eclipse.egit.gitflow.ui.command.hotfixStart" commandName="Start Hotfix" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpK_nukEeiLc70_J18rYQ" elementId="org.eclipse.ui.window.maximizePart" commandName="Maximize Active View or Editor" description="Toggles maximize/restore state of active view or editor" category="_gdXeJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpK_3ukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.navigate.script.open.structure" commandName="Open Structure" description="Show the structure of the selected element" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpLAHukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.folding.collapseMembers" commandName="Collapse Members" description="Collapse all members" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpLAXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.window.newEditor" commandName="New Editor" description="Open another editor on the active editor's input" category="_gdXeJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpLAnukEeiLc70_J18rYQ" elementId="org.eclipse.wst.sse.ui.format" commandName="Format" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpLA3ukEeiLc70_J18rYQ" elementId="org.eclipse.search.ui.openSearchDialog" commandName="Open Search Dialog" description="Open the Search dialog" category="_gdXeKXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpLBHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.contentAssist.proposals" commandName="Content Assist" description="Content Assist" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpLBXukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.externalize.strings" commandName="Externalize Strings" description="Finds all strings that are not externalized and moves them into a separate property file" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpLBnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.navigate.up" commandName="Up" description="Navigate up one level" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpLB3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.window.activateEditor" commandName="Activate Editor" description="Activate the editor" category="_gdXeJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpLCHukEeiLc70_J18rYQ" elementId="sed.tabletree.expandAll" commandName="Expand All" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpLCXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.delete.line.to.end" commandName="Delete to End of Line" description="Delete to the end of a line of text" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpLCnukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.commit.CreateBranch" commandName="Create Branch..." category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpLC3ukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.commands.Terminate" commandName="Terminate" description="Terminate" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpLDHukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.ShowRepositoriesView" commandName="Show Git Repositories View" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpLDXukEeiLc70_J18rYQ" elementId="org.eclipse.help.ui.ignoreMissingPlaceholders" commandName="Do not warn of missing documentation" description="Sets the help preferences to no longer report a warning about the current set of missing documents." category="_gdXeJXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpLDnukEeiLc70_J18rYQ" elementId="org.eclipse.compare.compareWithOther" commandName="Compare With Other Resource" description="Compare resources, clipboard contents or editors" category="_gdXeI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpLD3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.external.javadoc" commandName="Open External JSDoc" description="Open the JSDoc of the selected element in an external browser" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpLEHukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.CreatePatch" commandName="Create Patch" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpLEXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.editors.revisions.author.toggle" commandName="Toggle Revision Author Display" description="Toggles the display of the revision author" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpLEnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.goto.windowEnd" commandName="Window End" description="Go to the end of the window" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpLE3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.perspectives.showPerspective" commandName="Show Perspective" description="Show a particular perspective" category="_gdXeLnukEeiLc70_J18rYQ">
<parameters xmi:id="_gdpLFHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.perspectives.showPerspective.perspectiveId" name="Parameter"/>
<parameters xmi:id="_gdpLFXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.perspectives.showPerspective.newWindow" name="In New Window"/>
</commands>
<commands xmi:id="_gdpLFnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.goto.line" commandName="Go to Line" description="Go to a specified line of text" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpLF3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.editors.quickdiff.revert" commandName="Revert Lines" description="Revert the current selection, block or deleted lines" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpLGHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.implement.occurrences" commandName="Search Implement Occurrences in File" description="Search for implement occurrences of a selected type" category="_gdXeKXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpLGXukEeiLc70_J18rYQ" elementId="org.eclipse.wst.xml.ui.gotoMatchingTag" commandName="Matching Tag" description="Go to Matching Tag" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpLGnukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.specific_content_assist.command" commandName="Content Assist(DLTK)" description="A parameterizable command that invokes content assist with a single completion proposal category" category="_gdXeEnukEeiLc70_J18rYQ">
<parameters xmi:id="_gdpLG3ukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.specific_content_assist.category_id" name="type" optional="false"/>
</commands>
<commands xmi:id="_gdpLHHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.select.lineUp" commandName="Select Line Up" description="Extend the selection to the previous line of text" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpLHXukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.open.hierarchy" commandName="Quick Hierarchy" description="Show the quick hierarchy of the selected element" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpLHnukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.submodule.add" commandName="Add Submodule" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpLH3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.cut.line.to.end" commandName="Cut to End of Line" description="Cut to the end of a line of text" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpx8HukEeiLc70_J18rYQ" elementId="org.eclipse.compare.copyLeftToRight" commandName="Copy from Left to Right" description="Copy Current Change from Left to Right" category="_gdXeI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpx8XukEeiLc70_J18rYQ" elementId="org.eclipse.ui.project.openProject" commandName="Open Project" description="Open a project" category="_gdXeJ3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpx8nukEeiLc70_J18rYQ" elementId="org.eclipse.php.ui.explorer" commandName="PHP Script Explorer" description="Shows the Script Explorer" category="_gdXeEXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpx83ukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.history.ShowBlame" commandName="Show Revision Information" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpx9HukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.org.eclipse.egit.ui.AbortRebase" commandName="Abort Rebase" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpx9XukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.push.down" commandName="Push Down" description="Move members to subclasses" category="_gdYFJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpx9nukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.open.editor" commandName="Open Declaration" description="Open an editor on the selected element" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpx93ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.project.properties" commandName="Properties" description="Display the properties of the selected item's project " category="_gdXeJ3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpx-HukEeiLc70_J18rYQ" elementId="org.eclipse.php.ui.edit.text.toggleMarkOccurrences" commandName="Mark Occurrences" description="Toggles mark occurrences in PHP editors" category="_gdYFIXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpx-XukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.history.CompareVersionsInTree" commandName="Compare in Tree" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpx-nukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.testing.ResultView" commandName="DLTK Testing" description="Testing" category="_gdXeEXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpx-3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.select.columnPrevious" commandName="Select Previous Column" description="Select the previous column" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpx_HukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.github.ui.command.cloneGist" commandName="Clone Gist" description="Clone Gist into Git repository" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpx_XukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.debug.ui.commands.ScriptDisplay" commandName="Display" description="Display result of evaluating selected text" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpx_nukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.RepositoriesToggleBranchHierarchy" commandName="Toggle Branch Representation" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpx_3ukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.uncomment" commandName="Uncomment" description="Uncomment the selected DLTK comment lines" category="_gdXeE3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyAHukEeiLc70_J18rYQ" elementId="org.eclipse.ltk.ui.refactoring.commands.deleteResources" commandName="Delete Resources" description="Delete the selected resources and notify LTK participants." category="_gdXeL3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyAXukEeiLc70_J18rYQ" elementId="org.eclipse.php.deubg.ui.phpexeShortcut.run" commandName="Run CLI Application" description="Run CLI Application" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyAnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.file.print" commandName="Print" description="Print" category="_gdXeIXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyA3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.sse.ui.format.active.elements" commandName="Format Active Elements" description="Format active elements" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyBHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.showRulerContextMenu" commandName="Show Ruler Context Menu" description="Show the context menu for the ruler" category="_gdXeJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyBXukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.command.task.clearOutgoing" commandName="Clear Outgoing Changes" category="_gdXeHHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyBnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.folding.collapse" commandName="Collapse" description="Collapses the folded region at the current selection" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyB3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.smartEnterInverse" commandName="Insert Line Above Current Line" description="Adds a new line above the current line" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyCHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.window.spy" commandName="Show Contributing Plug-in" description="Shows contribution information for the currently selected element" category="_gdXeJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyCXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.help.helpSearch" commandName="Help Search" description="Open the help search" category="_gdXeJXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyCnukEeiLc70_J18rYQ" elementId="org.eclipse.egit.gitflow.ui.command.featureTrack" commandName="Track Feature" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyC3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.goto.lineDown" commandName="Line Down" description="Go down one line of text" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyDHukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.commit.Checkout" commandName="Checkout" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyDXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.gotoLastEditPosition" commandName="Last Edit Location" description="Last edit location" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyDnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.open.hyperlink" commandName="Open Hyperlink" description="Opens the hyperlink at the caret location or opens a chooser if more than one hyperlink is available" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyD3ukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.wikitext.ui.convertToEclipseHelpCommand" commandName="Generate Eclipse Help (*.html and *-toc.xml)" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyEHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.exception.occurrences" commandName="Search Exception Occurrences in File" description="Search for exception occurrences of a selected exception type" category="_gdXeKXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyEXukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.command.prevpage" commandName="Previous Page of Memory" description="Load previous page of memory" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyEnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.ide.configureFilters" commandName="Configure Contents..." description="Configure the filters to apply to the markers view" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyE3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.navigate.previousTab" commandName="Previous Tab" description="Switch to the previous tab" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyFHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.declarations.in.hierarchy" commandName="Declaration in Hierarchy" description="Search for declarations of the selected element in its hierarchy" category="_gdXeKXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyFXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.dialogs.openMessageDialog" commandName="Open Message Dialog" description="Open a Message Dialog" category="_gdXeK3ukEeiLc70_J18rYQ">
<parameters xmi:id="_gdpyFnukEeiLc70_J18rYQ" elementId="title" name="Title"/>
<parameters xmi:id="_gdpyF3ukEeiLc70_J18rYQ" elementId="message" name="Message"/>
<parameters xmi:id="_gdpyGHukEeiLc70_J18rYQ" elementId="imageType" name="Image Type Constant" typeId="org.eclipse.ui.dialogs.Integer"/>
<parameters xmi:id="_gdpyGXukEeiLc70_J18rYQ" elementId="defaultIndex" name="Default Button Index" typeId="org.eclipse.ui.dialogs.Integer"/>
<parameters xmi:id="_gdpyGnukEeiLc70_J18rYQ" elementId="buttonLabel0" name="First Button Label"/>
<parameters xmi:id="_gdpyG3ukEeiLc70_J18rYQ" elementId="buttonLabel1" name="Second Button Label"/>
<parameters xmi:id="_gdpyHHukEeiLc70_J18rYQ" elementId="buttonLabel2" name="Third Button Label"/>
<parameters xmi:id="_gdpyHXukEeiLc70_J18rYQ" elementId="buttonLabel3" name="Fourth Button Label"/>
<parameters xmi:id="_gdpyHnukEeiLc70_J18rYQ" elementId="cancelReturns" name="Return Value on Cancel"/>
</commands>
<commands xmi:id="_gdpyH3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.goto.lineEnd" commandName="Line End" description="Go to the end of the line of text" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyIHukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.commit.CreateTag" commandName="Create Tag..." category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyIXukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.extract.method" commandName="Extract Function" description="Extract a set of statements or an expression into a new function and use the new function" category="_gdYFJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyInukEeiLc70_J18rYQ" elementId="org.eclipse.wst.xml.ui.referencedFileErrors" commandName="Show Details..." description="Show Details..." category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyI3ukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.commands.RunLast" commandName="Run" description="Launch in run mode" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyJHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.externalTools.commands.OpenExternalToolsConfigurations" commandName="External Tools..." description="Open external tools launch configuration dialog" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyJXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.deletePrevious" commandName="Delete Previous" description="Delete the previous character" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyJnukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.CompareWithPrevious" commandName="Compare with Previous Revision" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyJ3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.select.columnNext" commandName="Select Next Column" description="Select the next column" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyKHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.implementors.in.workspace" commandName="Implementors in Workspace" description="Search for implementors of the selected interface" category="_gdXeKXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyKXukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.commands.TerminateAndRelaunch" commandName="Terminate and Relaunch" description="Terminate and Relaunch" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyKnukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.declarations.in.project" commandName="Declaration in Project" description="Search for declarations of the selected element in the enclosing project" category="_gdXeKXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyK3ukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.Tag" commandName="Tag" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyLHukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.NoAssumeUnchanged" commandName="No Assume Unchanged" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyLXukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.JavadocView" commandName="Documentation" description="Show the JavaScript Documentation view" category="_gdXeEXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyLnukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.commands.RemoveAllBreakpoints" commandName="Remove All Breakpoints" description="Removes all breakpoints" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyL3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.navigator.resources.nested.changeProjectPresentation" commandName="P&rojects Presentation" category="_gdYFI3ukEeiLc70_J18rYQ">
<parameters xmi:id="_gdpyMHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.navigator.resources.nested.enabled" name="&Hierarchical"/>
<parameters xmi:id="_gdpyMXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.commands.radioStateParameter" name="Nested Project view - Radio State" optional="false"/>
</commands>
<commands xmi:id="_gdpyMnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.window.showKeyAssist" commandName="Show Key Assist" description="Show the key assist dialog" category="_gdXeJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdpyM3ukEeiLc70_J18rYQ" elementId="org.eclipse.gef.zoom_out" commandName="Zoom Out" description="Zoom Out" category="_gdXeMHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZAHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.uncomment" commandName="Uncomment" description="Uncomment the selected JavaScript comment lines" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZAXukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.AddToIndex" commandName="Add to Index" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZAnukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.discovery.ui.discoveryWizardCommand" commandName="Discovery Wizard" description="shows the connector discovery wizard" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZA3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.read.access.in.working.set" commandName="Read Access in Working Set" description="Search for read references to the selected element in a working set" category="_gdXeKXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZBHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.sse.ui.toggle.comment" commandName="Toggle Comment" description="Toggle Comment" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZBXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.help.tipsAndTricksAction" commandName="Tips and Tricks" description="Open the tips and tricks help page" category="_gdXeJXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZBnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.smartEnter" commandName="Insert Line Below Current Line" description="Adds a new line below the current line" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZB3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.previous" commandName="Select Previous Element" description="Expand selection to include previous sibling" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZCHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.goto.lineStart" commandName="Line Start" description="Go to the start of the line of text" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZCXukEeiLc70_J18rYQ" elementId="org.eclipse.oomph.setup.editor.synchronizePreferences" commandName="Synchronize Preferences" category="_gdXeF3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZCnukEeiLc70_J18rYQ" elementId="org.eclipse.wst.xml.ui.cmnd.contentmodel.sych" commandName="Synch" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZC3ukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureBranch" commandName="Configure Branch" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZDHukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.commands.Suspend" commandName="Suspend" description="Suspend" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZDXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.hippieCompletion" commandName="Word Completion" description="Context insensitive completion" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZDnukEeiLc70_J18rYQ" elementId="org.eclipse.wst.xsd.ui.refactor.renameTargetNamespace" commandName="Rename Target Namespace" description="Changes the target namespace of the schema" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZD3ukEeiLc70_J18rYQ" elementId="org.eclipse.team.ui.synchronizeLast" commandName="Repeat last synchronization" description="Repeat the last synchronization" category="_gdXeEHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZEHukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureGerritRemote" commandName="Gerrit Configuration..." category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZEXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.ide.configureColumns" commandName="Configure Columns..." description="Configure the columns in the markers view" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZEnukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.ReplaceWithCommit" commandName="Replace with commit" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZE3ukEeiLc70_J18rYQ" elementId="org.eclipse.tm.terminal.quickaccess" commandName="Quick Access" category="_gdXeKHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZFHukEeiLc70_J18rYQ" elementId="org.eclipse.php.ui.navigate.open.type.in.hierarchy" commandName="Open Type in Hierarchy" description="Opens a type in the type hierarchy view" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZFXukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.commands.DebugLast" commandName="Debug" description="Launch in debug mode" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZFnukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.wikitext.ui.convertToHtmlCommand" commandName="Generate HTML" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZF3ukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.format" commandName="Format" description="Format the selected text" category="_gdXeE3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZGHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.window.previousView" commandName="Previous View" description="Switch to the previous view" category="_gdXeJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZGXukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.self.encapsulate.field" commandName="Encapsulate Var" description="Create getting and setting functions for the var and use only those to access the var" category="_gdYFJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZGnukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.commands.DropToFrame" commandName="Drop to Frame" description="Drop to Frame" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZG3ukEeiLc70_J18rYQ" elementId="org.eclipse.php.debug.ui.addExceptionBreakpoint" commandName="Add PHP Exception Breakpoint" description="Add PHP Exception Breakpoint" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZHHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.promote.local.variable" commandName="Convert Local Variable to Var" description="Convert a local variable to a var" category="_gdYFJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZHXukEeiLc70_J18rYQ" elementId="org.eclipse.php.composer.ui.command.selfupdate" commandName="Self-Update Composer" description="Execute self-update command" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZHnukEeiLc70_J18rYQ" elementId="org.eclipse.tm.terminal.view.ui.command.disconnect" commandName="Disconnect Terminal" category="_gdXeInukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZH3ukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.ShowBlame" commandName="Show Revision Information" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZIHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.folding.expand" commandName="Expand" description="Expands the folded region at the current selection" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZIXukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.command.openRemoteTask" commandName="Open Remote Task" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZInukEeiLc70_J18rYQ" elementId="org.eclipse.php.debug.ui.commands.InspectDelegate" commandName="Inspect" description="Inspect result of evaluating selected text" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZI3ukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.commands.nextMemoryBlock" commandName="Next Memory Monitor" description="Show renderings from next memory monitor." category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZJHukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.internal.reflog.OpenInCommitViewerCommand" commandName="Open in Commit Viewer" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZJXukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.context.ui.commands.task.retrieveContext" commandName="Retrieve Context" category="_gdXeGnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZJnukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.Fetch" commandName="Fetch" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZJ3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.chromium.debug.ui.commands.Inspect" commandName="Inspect" description="Inspect result of evaluating selected text" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZKHukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.task.ui.editor.QuickOutline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_gdXeHHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZKXukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.add.javadoc.comment" commandName="Add Javadoc Comment" description="Add a Scriptdoc comment stub to the member element" category="_gdXeE3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZKnukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.goto.previous.member" commandName="Go to Previous Member" description="Move the caret to the previous member of the compilation unit" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZK3ukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.commands.eof" commandName="EOF" description="Send end of file" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZLHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.navigate.showInQuickMenu" commandName="Show In..." description="Open the Show In menu" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZLXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.copyLineUp" commandName="Duplicate Lines" description="Duplicates the selected lines and leaves the selection unchanged" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZLnukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.commands.ToggleMethodBreakpoint" commandName="Toggle Method Breakpoint" description="Creates or removes a method breakpoint" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZL3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.correction.assignToLocal.assist" commandName="Quick Assist - Assign to local variable" description="Invokes quick assist and selects 'Assign to local variable'" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZMHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.navigate.next" commandName="Next" description="Navigate to the next item" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZMXukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.bugs.commands.newTaskFromMarker" commandName="New Task from Marker..." description="Report as Bug from Marker" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZMnukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.refactor.apply.refactoring.script" commandName="Apply Script" description="Perform refactorings from a refactoring script on the local workspace" category="_gdYFJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZM3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.server.run" commandName="Run" description="Run server" category="_gdXeHnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZNHukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.context.ui.commands.focus.view" commandName="Focus View" category="_gdYFI3ukEeiLc70_J18rYQ">
<parameters xmi:id="_gdqZNXukEeiLc70_J18rYQ" elementId="viewId" name="View ID to Focus" optional="false"/>
</commands>
<commands xmi:id="_gdqZNnukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.commands.StepReturn" commandName="Step Return" description="Step return" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZN3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.browser.openBundleResource" commandName="Open Resource in Browser" description="Opens a bundle resource in the default web browser." category="_gdXeJHukEeiLc70_J18rYQ">
<parameters xmi:id="_gdqZOHukEeiLc70_J18rYQ" elementId="plugin" name="Plugin"/>
<parameters xmi:id="_gdqZOXukEeiLc70_J18rYQ" elementId="path" name="Path"/>
</commands>
<commands xmi:id="_gdqZOnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.help.aboutAction" commandName="About" description="Open the about dialog" category="_gdXeJXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZO3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.common.project.facet.ui.ConvertProjectToFacetedForm" commandName="Convert to Faceted Form..." category="_gdXeIXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZPHukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.stash.create" commandName="Stash Changes..." category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZPXukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.replace.invocations" commandName="Replace Invocations" description="Replace invocations of the selected function" category="_gdYFJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZPnukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.history.CheckoutCommand" commandName="Checkout" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZP3ukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.command.activateSelectedTask" commandName="Activate Selected Task" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZQHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.sse.ui.format.document" commandName="Format" description="Format selection" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZQXukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.search.write.access.in.workspace" commandName="Write Access in Workspace" description="Search for write references to the selected element in the workspace" category="_gdXeKXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZQnukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.team.RemoveFromIndex" commandName="Remove from Index" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZQ3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.newWizard" commandName="New" description="Open the New item wizard" category="_gdXeIXukEeiLc70_J18rYQ">
<parameters xmi:id="_gdqZRHukEeiLc70_J18rYQ" elementId="newWizardId" name="New Wizard"/>
</commands>
<commands xmi:id="_gdqZRXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.window.newWindow" commandName="New Window" description="Open another window" category="_gdXeJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZRnukEeiLc70_J18rYQ" elementId="org.eclipse.e4.ui.importer.configureProject" commandName="Configure and Detect Nested Projects..." category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZR3ukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.history.CompareVersions" commandName="Compare with each other" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZSHukEeiLc70_J18rYQ" elementId="org.eclipse.equinox.p2.ui.sdk.install" commandName="Install New Software..." category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZSXukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.context.ui.commands.interest.decrement" commandName="Make Less Interesting" description="Make Less Interesting" category="_gdXeGnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZSnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.externaltools.ExternalToolMenuDelegateToolbar" commandName="Run Last Launched External Tool" description="Runs the last launched external Tool" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZS3ukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.CheckoutCommand" commandName="Checkout" category="_gdXeLXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZTHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.moveLineUp" commandName="Move Lines Up" description="Moves the selected lines up" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZTXukEeiLc70_J18rYQ" elementId="org.eclipse.equinox.p2.ui.discovery.commands.ShowBundleCatalog" commandName="Show Bundle Catalog" category="_gdYFI3ukEeiLc70_J18rYQ">
<parameters xmi:id="_gdqZTnukEeiLc70_J18rYQ" elementId="org.eclipse.equinox.p2.ui.discovery.commands.DirectoryParameter" name="Directory URL"/>
<parameters xmi:id="_gdqZT3ukEeiLc70_J18rYQ" elementId="org.eclipse.equinox.p2.ui.discovery.commands.TagsParameter" name="Tags"/>
</commands>
<commands xmi:id="_gdqZUHukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.open.super.implementation" commandName="Open Super Implementation" description="Open the Implementation in the Super Type" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZUXukEeiLc70_J18rYQ" elementId="org.eclipse.compare.copyRightToLeft" commandName="Copy from Right to Left" description="Copy Current Change from Right to Left" category="_gdXeI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZUnukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.commands.OpenProfileConfigurations" commandName="Profile..." description="Open profile launch configuration dialog" category="_gdXeKnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZU3ukEeiLc70_J18rYQ" elementId="org.eclipse.egit.gitflow.ui.command.featureRebase" commandName="Rebase Feature" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZVHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.ide.markCompleted" commandName="Mark Completed" description="Mark the selected tasks as completed" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZVXukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.comment" commandName="Comment" description="Turn the selected lines into JavaScript comments" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZVnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.recenter" commandName="Recenter" description="Scroll cursor line to center, top and bottom" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZV3ukEeiLc70_J18rYQ" elementId="org.eclipse.php.composer.ui.command.updateBuildpath" commandName="Update Build Path" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZWHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.edit.text.scroll.lineDown" commandName="Scroll Line Down" description="Scroll down one line of text" category="_gdXeGHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZWXukEeiLc70_J18rYQ" elementId="org.eclipse.wst.sse.ui.search.find.occurrences" commandName="Occurrences in File" description="Find occurrences of the selection in the file" category="_gdXeEnukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZWnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.ToggleCoolbarAction" commandName="Toggle Main Toolbar Visibility" description="Toggles the visibility of the window toolbar" category="_gdXeJHukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZW3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.navigate.open.type.in.hierarchy" commandName="Open Type in Hierarchy" description="Open a type in the type hierarchy view" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdqZXHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.sse.ui.outline.customFilter" commandName="&Filters" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdrAEHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.navigate.openResource" commandName="Open Resource" description="Open an editor on a particular resource" category="_gdXeHXukEeiLc70_J18rYQ">
<parameters xmi:id="_gdrAEXukEeiLc70_J18rYQ" elementId="filePath" name="File Path" typeId="org.eclipse.ui.ide.resourcePath"/>
</commands>
<commands xmi:id="_gdrAEnukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.correction.addBlock.assist" commandName="Quick Assist - Replace statement with block" description="Invokes quick assist and selects 'Replace statement with block'" category="_gdXeG3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gdrAE3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.goto.previous.member" commandName="Go to Previous Member" description="Move the caret to the previous member of the JavaScript file" category="_gdXeHXukEeiLc70_J18rYQ"/>
<commands xmi:id="_gxQDYHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.RunWithConfigurationAction" commandName="Run As" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gxRRgHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.RunHistoryMenuAction" commandName="Run History" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gxR4kHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.RunDropDownAction" commandName="Run" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gxSfoHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.DebugWithConfigurationAction" commandName="Debug As" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gxTGsHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.DebugHistoryMenuAction" commandName="Debug History" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gxTtwHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.DebugDropDownAction" commandName="Debug" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gxVi8HukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.debug.ui.profileActionSet/org.eclipse.debug.internal.ui.actions.ProfileDropDownAction" commandName="Profile" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gxWKAHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.debug.ui.profileActionSet/org.eclipse.debug.internal.ui.actions.ProfileWithConfigurationAction" commandName="Profile As" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gxWKAXukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.debug.ui.profileActionSet/org.eclipse.debug.internal.ui.actions.ProfileHistoryMenuAction" commandName="Profile History" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gxi-UHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.mylyn.dltk.actionSet.browsing/org.eclipse.dltk.mylyn.actions.ApplyMylynToBrowsingPerspectiveAction" commandName="Focus Browsing Perspective" description="Focus Script Browsing Views on Active Task" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gxjlYHukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.move.element" commandName="Move..." category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gxjlYXukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.search.write.access.in.working.set" commandName="Working Set..." category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gxkMcHukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.search.write.access.in.hierarchy" commandName="Hierarchy" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gxkMcXukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.search.write.access.in.project" commandName="Project" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gxkzgHukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.search.write.access.in.workspace" commandName="Workspace" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gxkzgXukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.search.read.access.in.working.set" commandName="Working Set..." category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gxod4HukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.search.read.access.in.hierarchy" commandName="Hierarchy" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gxod4XukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.search.read.access.in.project" commandName="Project" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gxqTEHukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.search.read.access.in.workspace" commandName="Workspace" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gxrhMHukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.search.implementors.in.working.set" commandName="Working Set..." category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gxwZsHukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.search.implementors.in.project" commandName="Project" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gxwZsXukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.search.implementors.in.workspace" commandName="Workspace" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gxxAwHukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.search.declarations.in.working.set" commandName="Working Set..." category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gxxAwXukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.search.declarations.in.hierarchy" commandName="Hierarchy" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gxxn0HukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.search.declarations.in.project" commandName="Project" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gxxn0XukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.search.declarations.in.workspace" commandName="Workspace" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gxyO4HukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.search.references.in.working.set" commandName="Working Set..." category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gxy18HukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.edit.text.script.search.references.in.hierarchy" commandName="Hierarchy" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gxzdAHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.mylyn.doc.actionSet/org.eclipse.mylyn.tasks.ui.bug.report" commandName="Report Bug or Enhancement..." description="Report Bug or Enhancement" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gx0EEHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.mylyn.tasks.ui.navigation.additions/org.eclipse.mylyn.tasks.ui.navigate.task.history" commandName="Activate Previous Task" description="Activate Previous Task" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gx0rIHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.php.debug.ui.actionSet/org.eclipse.php.debug.ui.WatchAction" commandName="Watch" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gx1SMHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.php.ui.SearchActionSet/org.eclipse.pdt.ui.actions.OpenPHPSearchPage" commandName="PHP..." category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gx2gUHukEeiLc70_J18rYQ" elementId="org.eclipse.php.ui.edit.text.search.method.exits" commandName="MethodExitOccurrences.label" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gx3HYHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.ui.cheatsheets.actionSet/org.eclipse.ui.cheatsheets.actions.CheatSheetHelpMenuAction" commandName="Cheat Sheets..." category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gx3ucHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.search.searchActionSet/org.eclipse.search.OpenSearchDialogPage" commandName="Search..." description="Search" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gx4VgHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.team.ui.actionSet/org.eclipse.team.ui.synchronizeAll" commandName="Synchronize..." description="Synchronize..." category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyFw4HukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.team.ui.actionSet/org.eclipse.team.ui.ConfigureProject" commandName="Share Project..." description="Share the project with others using a version and configuration management system." category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyGX8HukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.ui.externaltools.ExternalToolsSet/org.eclipse.ui.externaltools.ExternalToolMenuDelegateMenu" commandName="External Tools" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyHmEHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.wst.jsdt.chromium.debug.ui.actionSets/org.eclipse.wst.jsdt.chromium.debug.ui.actions.AddExceptionBreakpointAction" commandName="Add V8/Chrome JavaScript Exception Breakpoint" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyJbQHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.wst.jsdt.ui.JavaElementCreationActionSet/org.eclipse.wst.jsdt.ui.actions.OpenFileWizard" commandName="JavaScript Source File" description="New JavaScript file" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyLQcHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.wst.jsdt.ui.JavaElementCreationActionSet/org.eclipse.wst.jsdt.ui.actions.OpenProjectWizard" commandName="JavaScript Project..." description="New JavaScript Project" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyL3gHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.refactor.show.refactoring.history" commandName="History..." category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyNssHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.wst.jsdt.ui.SearchActionSet/org.eclipse.wst.jsdt.ui.actions.OpenJavaSearchPage" commandName="JavaScript..." category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyOTwHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.wst.server.ui.new.actionSet/org.eclipse.wst.server.ui.action.new.server" commandName="Create Server" description="Create Server" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyO60HukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.wst.server.ui.internal.webbrowser.actionSet/org.eclipse.wst.server.ui.internal.webbrowser.action.open" commandName="Open Web Browser" description="Open Web Browser" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyPh4HukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.wst.server.ui.internal.webbrowser.actionSet/org.eclipse.wst.server.ui.internal.webbrowser.action.switch" commandName="Web Browser" description="Web Browser" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyPh4XukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.wst.web.ui.wizardsActionSet/org.eclipse.wst.web.ui.actions.newCSSFile" commandName="CSS" description="Create a new Cascading Style Sheet" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyQI8HukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.wst.web.ui.wizardsActionSet/org.eclipse.wst.web.ui.actions.newJSFile" commandName="JavaScript" description="Create a new JavaScript file" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyQwAHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.wst.web.ui.wizardsActionSet/org.eclipse.wst.web.ui.actions.newHTMLFile" commandName="HTML" description="Create a new HTML page" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyQwAXukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.php.editor.ruler.actions/org.eclipse.php.internal.ui.editor.PhpSelectRulerAction" commandName="PHP Editor Ruler Single-Click" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyRXEHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.ui.texteditor.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Text Editor Bookmark Ruler Action" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyRXEXukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.ui.texteditor.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Text Editor Ruler Single-Click" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyR-IHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.wst.css.core.csssource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyR-IXukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.wst.css.core.csssource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyTMQHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.wst.dtd.core.dtdsource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyTMQXukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.wst.dtd.core.dtdsource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyTzUHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.wst.html.core.htmlsource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyVBcHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.wst.html.core.htmlsource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyVBcXukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.wst.jsdt.chromium.debug.ui.editors.JsEditor.editorActions/org.eclipse.wst.jsdt.chromium.debug.ui.editor.ruler.doubleClickBreakpointAction" commandName="Not Used" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyVogHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.wst.jsdt.debug.ui.togglebreakpoint/org.eclipse.wst.jsdt.debug.ui.RulerToggleBreakpoint" commandName="Toggle Breakpoint" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyWPkHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.wst.jsdt.internal.ui.CompilationUnitEditor.ruler.actions/org.eclipse.wst.jsdt.internal.ui.javaeditor.BookmarkRulerAction" commandName="JavaScript Editor Bookmark Ruler Action" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyWPkXukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.wst.jsdt.internal.ui.CompilationUnitEditor.ruler.actions/org.eclipse.wst.jsdt.internal.ui.javaeditor.JavaSelectRulerAction" commandName="JavaScript Editor Ruler Single-Click" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gycWMHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.wst.jsdt.internal.ui.ClassFileEditor.ruler.actions/org.eclipse.wst.jsdt.internal.ui.javaeditor.JavaSelectRulerAction" commandName="JavaScript Editor Ruler Single-Click" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyc9QHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.wst.jsdt.internal.ui.PropertiesFileEditor.ruler.actions/org.eclipse.wst.jsdt.internal.ui.propertiesfileeditor.BookmarkRulerAction" commandName="JavaScript Editor Bookmark Ruler Action" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gydkUHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.wst.jsdt.internal.ui.PropertiesFileEditor.ruler.actions/org.eclipse.wst.jsdt.internal.ui.propertiesfileeditor.SelectRulerAction" commandName="JavaScript Editor Ruler Single-Click" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gydkUXukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.wst.json.core.jsonsource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="%AddBookmark.label" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyeLYHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.wst.json.core.jsonsource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="%SelectRuler.label" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyeLYXukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.core.runtime.xml.source.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyeLYnukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.core.runtime.xml.source.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyeycHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.wst.xsd.core.xsdsource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyeycXukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.wst.xsd.core.xsdsource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyfZgHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.debug.ui.PulldownActions/org.eclipse.debug.ui.debugview.pulldown.ViewManagementAction" commandName="View Management..." category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyfZgXukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.debug.ui.debugview.toolbar/org.eclipse.debug.ui.debugview.toolbar.removeAllTerminated" commandName="Remove All Terminated" description="Remove All Terminated Launches" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gygAkHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.removeAll" commandName="Remove All" description="Remove All Breakpoints" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gygAkXukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.linkWithDebugView" commandName="Link with Debug View" description="Link with Debug View" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gygnoHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.workingSets" commandName="Working Sets..." description="Manage Working Sets" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gygnoXukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.clearDefaultBreakpointGroup" commandName="Deselect Default Working Set" description="Deselect Default Working Set" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyhOsHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.setDefaultBreakpointGroup" commandName="Select Default Working Set..." description="Select Default Working Set" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyhOsXukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.groupByAction" commandName="Group By" description="Show" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyh1wHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.debug.ui.expressionsView.toolbar/org.eclipse.debug.ui.expresssionsView.toolbar.removeAll" commandName="Remove All" description="Remove All Expressions" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyic0HukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.debug.ui.expressionsView.toolbar/org.eclipse.debug.ui.expresssionsView.toolbar.AddWatchExpression" commandName="Add Watch Expression..." description="Create a new watch expression" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gykSAHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.PinMemoryBlockAction" commandName="Pin Memory Monitor" description="Pin Memory Monitor" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyk5EHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.NewMemoryViewAction" commandName="New Memory View" description="New Memory View" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyk5EXukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.togglemonitors" commandName="Toggle Memory Monitors Pane" description="Toggle Memory Monitors Pane" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gylgIHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.linkrenderingpanes" commandName="Link Memory Rendering Panes" description="Link Memory Rendering Panes" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gylgIXukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.tablerendering.preferencesaction" commandName="Table Renderings Preferences..." description="&Table Renderings Preferences..." category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gymHMHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.togglesplitpane" commandName="Toggle Split Pane" description="Toggle Split Pane" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gymHMXukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.switchMemoryBlock" commandName="Switch Memory Monitor" description="Switch Memory Monitor" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gymuQHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.memoryViewPreferencesAction" commandName="Preferences..." description="&Preferences..." category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gymuQXukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.mylyn.dltk.explorer.contribution/org.eclipse.mylyn.dltk.actions.focus.packageExplorer" commandName="Focus on Active Task" description="Focus on Active Task (Alt+click to reveal filtered elements)" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gynVUHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.dltk.mylyn.markers.breakpoints.contribution/org.eclipse.dltk.mylyn.actions.focus.markers.breakpoints" commandName="Focus on Active Task" description="Focus on Active Task" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gynVUXukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.mylyn.ui.debug.view.contribution/org.eclipse.mylyn.ui.actions.FilterResourceNavigatorAction" commandName="Focus on Active Task (Experimental)" description="Focus on Active Task (Experimental)" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gynVUnukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.mylyn.context.ui.outline.contribution/org.eclipse.mylyn.context.ui.contentOutline.focus" commandName="Focus on Active Task" description="Focus on Active Task (Alt+click to reveal filtered elements)" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyn8YHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.mylyn.ui.projectexplorer.filter/org.eclipse.mylyn.ide.ui.actions.focus.projectExplorer" commandName="Focus on Active Task" description="Focus on Active Task (Alt+click to reveal filtered elements)" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyn8YXukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.mylyn.ui.resource.navigator.filter/org.eclipse.mylyn.ide.ui.actions.focus.resourceNavigator" commandName="Focus on Active Task" description="Focus on Active Task (Alt+click to reveal filtered elements)" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyxGUHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.mylyn.problems.contribution/org.eclipse.mylyn.ide.ui.actions.focus.markers.problems" commandName="Focus on Active Task" description="Focus on Active Task" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyxGUXukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.mylyn.markers.all.contribution/org.eclipse.mylyn.ide.ui.actions.focus.markers.all" commandName="Focus on Active Task" description="Focus on Active Task" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyxtYHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.mylyn.markers.tasks.contribution/org.eclipse.mylyn.ide.ui.actions.focus.markers.tasks" commandName="Focus on Active Task" description="Focus on Active Task" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyxtYXukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.mylyn.markers.bookmarks.contribution/org.eclipse.mylyn.ide.ui.actions.focus.markers.bookmarks" commandName="Focus on Active Task" description="Focus on Active Task" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyyUcHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.mylyn.tasks.ui.actions.view/org.eclipse.mylyn.tasks.ui.search.open" commandName="Search Repository..." category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyyUcXukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.mylyn.tasks.ui.actions.view/org.eclipse.mylyn.tasks.ui.synchronize.changed" commandName="Synchronize Changed" description="Synchronize Changed" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyy7gHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.mylyn.tasks.ui.actions.view/org.eclipse.mylyn.tasks.ui.tasks.restore" commandName="Restore Tasks from History..." category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyy7gXukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.mylyn.tasks.ui.actions.view/org.eclipse.mylyn.tasks.ui.open.repositories.view" commandName="Show Task Repositories View" description="Show Task Repositories View" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyy7gnukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.mylyn.tasks.ui.actions.view/org.eclipse.mylyn.doc.legend.show.action" commandName="Show UI Legend" description="Show Tasks UI Legend" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gyzikHukEeiLc70_J18rYQ" elementId="AUTOGEN:::org.eclipse.mylyn.tasks.ui.actions.view/org.eclipse.mylyn.context.ui.actions.tasklist.focus" commandName="Focus on Workweek" description="Focus on Workweek" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gy0JoHukEeiLc70_J18rYQ" elementId="AUTOGEN:::breakpointsViewActions/org.eclipse.wst.jsdt.debug.ui.add.scriptload.breakpoint" commandName="Add Script Load Breakpoint" description="Add Script Load Breakpoint" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gy0wsHukEeiLc70_J18rYQ" elementId="AUTOGEN:::breakpointsViewActions/org.eclipse.jdt.debug.ui.breakpointViewActions.ShowQualified" commandName="Suspend For All Script Loads" description="Suspends when any script is loaded" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gy0wsXukEeiLc70_J18rYQ" elementId="AUTOGEN:::breakpointsViewActions/org.eclipse.wst.jsdt.debug.ui.suspend.on.exceptions" commandName="Suspend On JavaScript Exceptions" description="Suspend on all JavaScript exceptions" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gy1XwHukEeiLc70_J18rYQ" elementId="AUTOGEN:::debugViewActions/org.eclipse.wst.jsdt.debug.ui.show.all.scripts" commandName="Show All Scripts" description="Shows or hides all scripts loaded in the visible targets" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gy1XwXukEeiLc70_J18rYQ" elementId="AUTOGEN:::variableViewActions/org.eclipse.wst.jsdt.debug.ui.variableview.show.functions" commandName="Show function variables" description="Show or hide function variables" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gy1-0HukEeiLc70_J18rYQ" elementId="AUTOGEN:::variableViewActions/org.eclipse.wst.jsdt.debug.ui.variableview.show.this" commandName="Show 'this' variable" description="Show or hide the this variable" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="_gy1-0XukEeiLc70_J18rYQ" elementId="AUTOGEN:::variableViewActions/org.eclipse.wst.jsdt.debug.ui.variableview.show.prototypes" commandName="Show proto variables" description="Show or hide proto variables" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="__hiCsJr-EeiGr6L2zFyJzw" elementId="basheditor.editor.commands.source.toggleComment" commandName="Toggle comment" description="Toggle comment in selected line(s)" category="__hhboJr-EeiGr6L2zFyJzw"/>
<commands xmi:id="__hiCsZr-EeiGr6L2zFyJzw" elementId="basheditor.editor.commands.quickoutline" commandName="Quick outline" description="Show quick outline dialog" category="__hhboJr-EeiGr6L2zFyJzw"/>
<commands xmi:id="__hiCspr-EeiGr6L2zFyJzw" elementId="testNameGenerator.commands.generateusingphrase" commandName="PHPUnit Generate Test Method using phrase" category="__hg0kZr-EeiGr6L2zFyJzw"/>
<commands xmi:id="__hiCs5r-EeiGr6L2zFyJzw" elementId="basheditor.editor.commands.source.validate" commandName="Validate bash script" description="Validate bash script" category="__hhboJr-EeiGr6L2zFyJzw"/>
<commands xmi:id="__hipwJr-EeiGr6L2zFyJzw" elementId="org.eclipse.mylyn.wikitext.ui.convertToDocbookCommand" commandName="Generate Docbook" category="_gdYFI3ukEeiLc70_J18rYQ"/>
<commands xmi:id="__hipwZr-EeiGr6L2zFyJzw" elementId="basheditor.command.openWithBashEditor" commandName="Open with bash editor" description="Open file with bash editor" category="__hhboJr-EeiGr6L2zFyJzw"/>
<commands xmi:id="__hipwpr-EeiGr6L2zFyJzw" elementId="tern.eclipse.ide.ui.convertProjectToTern" commandName="Convert to Tern Project..." category="_gdXeIXukEeiLc70_J18rYQ"/>
<commands xmi:id="__hipw5r-EeiGr6L2zFyJzw" elementId="basheditor.editor.commands.gotomatchingbracket" commandName="Goto matching bracket" description="Goto matching bracket inside gradle document" category="__hhboJr-EeiGr6L2zFyJzw"/>
<addons xmi:id="_gc15q3ukEeiLc70_J18rYQ" elementId="org.eclipse.e4.core.commands.service" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.core.commands/org.eclipse.e4.core.commands.CommandServiceAddon"/>
<addons xmi:id="_gc15rHukEeiLc70_J18rYQ" elementId="org.eclipse.e4.ui.contexts.service" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.services/org.eclipse.e4.ui.services.ContextServiceAddon"/>
<addons xmi:id="_gc15rXukEeiLc70_J18rYQ" elementId="org.eclipse.e4.ui.bindings.service" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.bindings/org.eclipse.e4.ui.bindings.BindingServiceAddon"/>
<addons xmi:id="_gc15rnukEeiLc70_J18rYQ" elementId="org.eclipse.e4.ui.workbench.commands.model" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.workbench/org.eclipse.e4.ui.internal.workbench.addons.CommandProcessingAddon"/>
<addons xmi:id="_gc15r3ukEeiLc70_J18rYQ" elementId="org.eclipse.e4.ui.workbench.contexts.model" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.workbench/org.eclipse.e4.ui.internal.workbench.addons.ContextProcessingAddon"/>
<addons xmi:id="_gc15sHukEeiLc70_J18rYQ" elementId="org.eclipse.e4.ui.workbench.bindings.model" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.swt/org.eclipse.e4.ui.workbench.swt.util.BindingProcessingAddon"/>
<addons xmi:id="_gc15sXukEeiLc70_J18rYQ" elementId="Cleanup Addon" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.cleanupaddon.CleanupAddon"/>
<addons xmi:id="_gc15snukEeiLc70_J18rYQ" elementId="DnD Addon" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.dndaddon.DnDAddon"/>
<addons xmi:id="_gc15s3ukEeiLc70_J18rYQ" elementId="MinMax Addon" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.minmax.MinMaxAddon"/>
<addons xmi:id="_gc15tHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.workbench.addon.0" contributorURI="platform:/plugin/org.eclipse.platform" contributionURI="bundleclass://org.eclipse.e4.ui.workbench/org.eclipse.e4.ui.internal.workbench.addons.HandlerProcessingAddon"/>
<addons xmi:id="_gc_qoHukEeiLc70_J18rYQ" elementId="SplitterAddon" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.splitteraddon.SplitterAddon"/>
<addons xmi:id="_IYS0IKimEeS11vbz3f9ezw" elementId="org.eclipse.ui.ide.addon.0" contributorURI="platform:/plugin/org.eclipse.ui.ide" contributionURI="bundleclass://org.eclipse.ui.ide/org.eclipse.ui.internal.ide.addons.SaveAllDirtyPartsAddon"/>
<addons xmi:id="_dz0JgGOlEeSMMaPQU2nlzw" elementId="org.eclipse.ui.ide.application.addon.0" contributorURI="platform:/plugin/org.eclipse.ui.ide.application" contributionURI="bundleclass://org.eclipse.ui.ide.application/org.eclipse.ui.internal.ide.application.addons.ModelCleanupAddon"/>
<categories xmi:id="_gdXeEHukEeiLc70_J18rYQ" elementId="org.eclipse.team.ui.category.team" name="Team" description="Actions that apply when working with a Team"/>
<categories xmi:id="_gdXeEXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.category.views" name="Views" description="Commands for opening views"/>
<categories xmi:id="_gdXeEnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.category.edit" name="Edit"/>
<categories xmi:id="_gdXeE3ukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.category.source" name="Script Source"/>
<categories xmi:id="_gdXeFHukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.wikitext.ui.editor.category" name="WikiText Markup Editing Commands" description="commands for editing lightweight markup"/>
<categories xmi:id="_gdXeFXukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.category.editor" name="Task Editor"/>
<categories xmi:id="_gdXeFnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.ide.markerContents" name="Contents" description="The category for menu contents"/>
<categories xmi:id="_gdXeF3ukEeiLc70_J18rYQ" elementId="org.eclipse.oomph.setup.category" name="Oomph Setup"/>
<categories xmi:id="_gdXeGHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.category.textEditor" name="Text Editing" description="Text Editing Commands"/>
<categories xmi:id="_gdXeGXukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.mylyn.commands" name="DLTK Context" description="DLTK Task-Focused Interface Commands"/>
<categories xmi:id="_gdXeGnukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.context.ui.commands" name="Focused UI" description="Task-Focused Interface"/>
<categories xmi:id="_gdXeG3ukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.category.source" name="Source" description="JavaScript Source Actions"/>
<categories xmi:id="_gdXeHHukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.tasks.ui.commands" name="Task Repositories"/>
<categories xmi:id="_gdXeHXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.category.navigate" name="Navigate"/>
<categories xmi:id="_gdXeHnukEeiLc70_J18rYQ" elementId="org.eclipse.wst.server.ui" name="Server" description="Server"/>
<categories xmi:id="_gdXeH3ukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.wikitext.context.ui.commands" name="%commands.category.name" description="%commands.category.description"/>
<categories xmi:id="_gdXeIHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.debug.ui.category" name="JavaScript Debug" description="Tooling for debugging JavaScript"/>
<categories xmi:id="_gdXeIXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.category.file" name="File"/>
<categories xmi:id="_gdXeInukEeiLc70_J18rYQ" elementId="org.eclipse.tm.terminal.view.ui.commands.category" name="Terminal Commands"/>
<categories xmi:id="_gdXeI3ukEeiLc70_J18rYQ" elementId="org.eclipse.compare.ui.category.compare" name="Compare" description="Compare command category"/>
<categories xmi:id="_gdXeJHukEeiLc70_J18rYQ" elementId="org.eclipse.ui.category.window" name="Window"/>
<categories xmi:id="_gdXeJXukEeiLc70_J18rYQ" elementId="org.eclipse.ui.category.help" name="Help"/>
<categories xmi:id="_gdXeJnukEeiLc70_J18rYQ" elementId="org.eclipse.php.ui.category.refactoring" name="Refactor - PHP" description="PHP Refactoring Actions"/>
<categories xmi:id="_gdXeJ3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.category.project" name="Project"/>
<categories xmi:id="_gdXeKHukEeiLc70_J18rYQ" elementId="org.eclipse.tm.terminal.category1" name="Terminal view commands" description="Terminal view commands"/>
<categories xmi:id="_gdXeKXukEeiLc70_J18rYQ" elementId="org.eclipse.search.ui.category.search" name="Search" description="Search command category"/>
<categories xmi:id="_gdXeKnukEeiLc70_J18rYQ" elementId="org.eclipse.debug.ui.category.run" name="Run/Debug" description="Run/Debug command category"/>
<categories xmi:id="_gdXeK3ukEeiLc70_J18rYQ" elementId="org.eclipse.ui.category.dialogs" name="Dialogs" description="Commands for opening dialogs"/>
<categories xmi:id="_gdXeLHukEeiLc70_J18rYQ" elementId="org.eclipse.oomph" name="Oomph"/>
<categories xmi:id="_gdXeLXukEeiLc70_J18rYQ" elementId="org.eclipse.egit.ui.commandCategory" name="Git"/>
<categories xmi:id="_gdXeLnukEeiLc70_J18rYQ" elementId="org.eclipse.ui.category.perspectives" name="Perspectives" description="Commands for opening perspectives"/>
<categories xmi:id="_gdXeL3ukEeiLc70_J18rYQ" elementId="org.eclipse.ltk.ui.category.refactoring" name="Refactoring"/>
<categories xmi:id="_gdXeMHukEeiLc70_J18rYQ" elementId="org.eclipse.gef.category.view" name="View" description="View"/>
<categories xmi:id="_gdYFIHukEeiLc70_J18rYQ" elementId="org.eclipse.mylyn.commons.repositories.ui.category.Team" name="Team"/>
<categories xmi:id="_gdYFIXukEeiLc70_J18rYQ" elementId="org.eclipse.php.ui.category.source" name="Source" description="PHP Source Actions"/>
<categories xmi:id="_gdYFInukEeiLc70_J18rYQ" elementId="org.eclipse.oomph.commands" name="Oomph"/>
<categories xmi:id="_gdYFI3ukEeiLc70_J18rYQ" elementId="org.eclipse.core.commands.categories.autogenerated" name="Uncategorized" description="Commands that were either auto-generated or have no category"/>
<categories xmi:id="_gdYFJHukEeiLc70_J18rYQ" elementId="org.eclipse.wst.jsdt.ui.category.refactoring" name="Refactor - JavaScript" description="JavaScript Refactoring Actions"/>
<categories xmi:id="_gdYFJXukEeiLc70_J18rYQ" elementId="org.eclipse.dltk.ui.category.refactoring" name="Refactor - DLTK" description="DLTK Refactoring Actions"/>
<categories xmi:id="__hg0kZr-EeiGr6L2zFyJzw" elementId="testNameGenerator.commands.category" name="Code Helpers"/>
<categories xmi:id="__hhboJr-EeiGr6L2zFyJzw" elementId="basheditor.commands.category" name="Bash editor" description="Bash editor"/>
</application:Application>