workbench.xmi 514 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399
  1. <?xml version="1.0" encoding="ASCII"?>
  2. <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="_YO2S8T9AEemkJ6es1zdyvw" elementId="org.eclipse.e4.legacy.ide.application" contributorURI="platform:/plugin/org.eclipse.platform" selectedElement="_YO2S8j9AEemkJ6es1zdyvw" bindingContexts="_YO2S9D9AEemkJ6es1zdyvw">
  3. <persistedState key="memento" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?>&#xD;&#xA;&lt;workbench>&#xD;&#xA;&lt;mruList/>&#xD;&#xA;&lt;/workbench>"/>
  4. <tags>activeSchemeId:org.eclipse.ui.defaultAcceleratorConfiguration</tags>
  5. <tags>ModelMigrationProcessor.001</tags>
  6. <children xsi:type="basic:TrimmedWindow" xmi:id="_YO2S8j9AEemkJ6es1zdyvw" elementId="IDEWindow" contributorURI="platform:/plugin/org.eclipse.platform" selectedElement="_Y573UT9AEemkJ6es1zdyvw" label="%trimmedwindow.label.eclipseSDK" x="-32" y="5" width="1024" height="768">
  7. <persistedState key="coolBarVisible" value="true"/>
  8. <persistedState key="perspectiveBarVisible" value="true"/>
  9. <persistedState key="isRestored" value="true"/>
  10. <persistedState key="workingSets" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?>&#xD;&#xA;&lt;workingSets/>"/>
  11. <persistedState key="aggregateWorkingSetId" value="Aggregate for window 1551788171146"/>
  12. <persistedState key="show_in_time" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?>&#xD;&#xA;&lt;show_in_time/>"/>
  13. <tags>topLevel</tags>
  14. <tags>shellMaximized</tags>
  15. <children xsi:type="basic:PartSashContainer" xmi:id="_Y573UT9AEemkJ6es1zdyvw" selectedElement="_Y573Uj9AEemkJ6es1zdyvw" horizontal="true">
  16. <children xsi:type="advanced:PerspectiveStack" xmi:id="_Y573Uj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.ide.perspectivestack" containerData="7500" selectedElement="_ZpXJID9AEemkJ6es1zdyvw">
  17. <children xsi:type="advanced:Perspective" xmi:id="_ZpXJID9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.j2ee.J2EEPerspective" selectedElement="_ZpXJIT9AEemkJ6es1zdyvw" label="Java EE" iconURI="platform:/plugin/org.eclipse.jst.j2ee.ui/icons/full/cview16/j2ee_perspective.gif">
  18. <persistedState key="persp.hiddenItems" value="persp.hideToolbarSC:print,persp.hideToolbarSC:org.eclipse.ui.edit.undo,persp.hideToolbarSC:org.eclipse.ui.edit.redo,persp.hideToolbarSC:org.eclipse.ui.edit.text.toggleShowSelectedElementOnly,persp.hideToolbarSC:org.eclipse.debug.ui.commands.RunToLine,persp.hideToolbarSC:org.eclipse.jdt.ui.actions.OpenProjectWizard,"/>
  19. <tags>persp.actionSet:org.eclipse.mylyn.doc.actionSet</tags>
  20. <tags>persp.actionSet:org.eclipse.mylyn.tasks.ui.navigation</tags>
  21. <tags>persp.actionSet:org.eclipse.ui.cheatsheets.actionSet</tags>
  22. <tags>persp.actionSet:org.eclipse.rse.core.search.searchActionSet</tags>
  23. <tags>persp.actionSet:org.eclipse.search.searchActionSet</tags>
  24. <tags>persp.actionSet:org.eclipse.ui.edit.text.actionSet.annotationNavigation</tags>
  25. <tags>persp.actionSet:org.eclipse.ui.edit.text.actionSet.navigation</tags>
  26. <tags>persp.actionSet:org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo</tags>
  27. <tags>persp.actionSet:org.eclipse.ui.externaltools.ExternalToolsSet</tags>
  28. <tags>persp.actionSet:org.eclipse.ui.actionSet.keyBindings</tags>
  29. <tags>persp.actionSet:org.eclipse.ui.actionSet.openFiles</tags>
  30. <tags>persp.actionSet:org.eclipse.wst.jsdt.chromium.debug.ui.actionSets</tags>
  31. <tags>persp.actionSet:org.springsource.ide.eclipse.quicksearch.actionSet</tags>
  32. <tags>persp.actionSet:org.springsource.ide.eclipse.commons.launch.actionSet</tags>
  33. <tags>persp.actionSet:org.jkiss.dbeaver.search.searchActionSet</tags>
  34. <tags>persp.actionSet:org.eclipse.jst.j2ee.J2eeMainActionSet</tags>
  35. <tags>persp.actionSet:org.eclipse.jdt.ui.JavaActionSet</tags>
  36. <tags>persp.actionSet:org.eclipse.debug.ui.launchActionSet</tags>
  37. <tags>persp.actionSet:org.eclipse.debug.ui.debugActionSet</tags>
  38. <tags>persp.actionSet:org.eclipse.ui.NavigateActionSet</tags>
  39. <tags>persp.viewSC:org.eclipse.ui.navigator.ProjectExplorer</tags>
  40. <tags>persp.viewSC:org.eclipse.wst.server.ui.ServersView</tags>
  41. <tags>persp.viewSC:org.eclipse.datatools.connectivity.DataSourceExplorerNavigator</tags>
  42. <tags>persp.viewSC:org.eclipse.ui.views.BookmarkView</tags>
  43. <tags>persp.viewSC:org.eclipse.ui.views.ContentOutline</tags>
  44. <tags>persp.viewSC:org.eclipse.ui.views.PropertySheet</tags>
  45. <tags>persp.viewSC:org.eclipse.ui.views.ResourceNavigator</tags>
  46. <tags>persp.viewSC:org.eclipse.wst.common.snippets.internal.ui.SnippetsView</tags>
  47. <tags>persp.viewSC:org.eclipse.ui.views.AllMarkersView</tags>
  48. <tags>persp.viewSC:org.eclipse.mylyn.tasks.ui.views.tasks</tags>
  49. <tags>persp.viewSC:org.eclipse.search.ui.views.SearchView</tags>
  50. <tags>persp.viewSC:org.eclipse.ui.console.ConsoleView</tags>
  51. <tags>persp.showIn:org.eclipse.ui.navigator.ProjectExplorer</tags>
  52. <tags>persp.actionSet:org.eclipse.wst.ws.explorer.explorer</tags>
  53. <tags>persp.newWizSC:org.eclipse.m2e.core.wizards.Maven2ProjectWizard</tags>
  54. <tags>persp.showIn:com.genuitec.eclipse.meexplorer.MENavigator</tags>
  55. <tags>persp.newWizSC:org.springsource.ide.eclipse.commons.gettingstarted.wizard.boot.NewSpringBootWizard</tags>
  56. <tags>persp.newWizSC:org.springsource.ide.eclipse.gettingstarted.wizards.import.generic.newalias</tags>
  57. <tags>persp.showIn:org.eclipse.tm.terminal.view.ui.TerminalsView</tags>
  58. <tags>persp.perspSC:org.eclipse.debug.ui.DebugPerspective</tags>
  59. <tags>persp.perspSC:org.eclipse.jdt.ui.JavaPerspective</tags>
  60. <tags>persp.perspSC:org.eclipse.ui.resourcePerspective</tags>
  61. <tags>persp.perspSC:org.eclipse.wst.web.ui.webDevPerspective</tags>
  62. <tags>persp.newWizSC:org.eclipse.jst.j2ee.ui.project.facet.EarProjectWizard</tags>
  63. <tags>persp.newWizSC:org.eclipse.jst.servlet.ui.project.facet.WebProjectWizard</tags>
  64. <tags>persp.newWizSC:org.eclipse.jst.ejb.ui.project.facet.EjbProjectWizard</tags>
  65. <tags>persp.newWizSC:org.eclipse.jst.j2ee.jca.ui.internal.wizard.ConnectorProjectWizard</tags>
  66. <tags>persp.newWizSC:org.eclipse.jst.j2ee.ui.project.facet.appclient.AppClientProjectWizard</tags>
  67. <tags>persp.newWizSC:org.eclipse.wst.web.ui.internal.wizards.SimpleWebProjectWizard</tags>
  68. <tags>persp.newWizSC:org.eclipse.jpt.ui.wizard.newJpaProject</tags>
  69. <tags>persp.newWizSC:org.eclipse.jst.servlet.ui.internal.wizard.AddServletWizard</tags>
  70. <tags>persp.newWizSC:org.eclipse.jst.ejb.ui.internal.wizard.AddSessionBeanWizard</tags>
  71. <tags>persp.newWizSC:org.eclipse.jst.ejb.ui.internal.wizard.AddMessageDrivenBeanWizard</tags>
  72. <tags>persp.newWizSC:org.eclipse.jpt.ui.wizard.newEntity</tags>
  73. <tags>persp.newWizSC:org.eclipse.jst.ws.creation.ui.wizard.serverwizard</tags>
  74. <tags>persp.newWizSC:org.eclipse.ui.wizards.new.folder</tags>
  75. <tags>persp.newWizSC:org.eclipse.ui.wizards.new.file</tags>
  76. <tags>persp.actionSet:org.eclipse.wst.server.ui.internal.webbrowser.actionSet</tags>
  77. <tags>persp.actionSet:org.eclipse.debug.ui.breakpointActionSet</tags>
  78. <tags>persp.actionSet:org.eclipse.eclemma.ui.CoverageActionSet</tags>
  79. <tags>persp.showIn:org.eclipse.eclemma.ui.CoverageView</tags>
  80. <tags>persp.newWizSC:org.eclipse.jpt.jpa.ui.wizard.newJpaProject</tags>
  81. <tags>persp.perspSC:org.eclipse.jpt.ui.jpaPerspective</tags>
  82. <tags>persp.actionSet:org.eclipse.text.quicksearch.actionSet</tags>
  83. <children xsi:type="basic:PartSashContainer" xmi:id="_ZpXJIT9AEemkJ6es1zdyvw" selectedElement="_ZpXJJz9AEemkJ6es1zdyvw" horizontal="true">
  84. <children xsi:type="basic:PartStack" xmi:id="_ZpXJIj9AEemkJ6es1zdyvw" elementId="topLeft" containerData="2500" selectedElement="_ZpXJIz9AEemkJ6es1zdyvw">
  85. <children xsi:type="advanced:Placeholder" xmi:id="_ZpXJIz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigator.ProjectExplorer" ref="_Zd0AcD9AEemkJ6es1zdyvw" closeable="true">
  86. <tags>View</tags>
  87. <tags>categoryTag:General</tags>
  88. </children>
  89. <children xsi:type="advanced:Placeholder" xmi:id="_ZpXJJD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.ResourceNavigator" toBeRendered="false" ref="_Zd11oD9AEemkJ6es1zdyvw" closeable="true">
  90. <tags>View</tags>
  91. <tags>categoryTag:General</tags>
  92. </children>
  93. <children xsi:type="advanced:Placeholder" xmi:id="_ZpXJJT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.TypeHierarchy" toBeRendered="false" ref="_Zd2csD9AEemkJ6es1zdyvw" closeable="true">
  94. <tags>View</tags>
  95. <tags>categoryTag:Java</tags>
  96. </children>
  97. <children xsi:type="advanced:Placeholder" xmi:id="_ZpXJJj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.PackagesView" toBeRendered="false" ref="_Zo_8wD9AEemkJ6es1zdyvw" closeable="true">
  98. <tags>View</tags>
  99. <tags>categoryTag:Java Browsing</tags>
  100. </children>
  101. </children>
  102. <children xsi:type="basic:PartSashContainer" xmi:id="_ZpXJJz9AEemkJ6es1zdyvw" containerData="7500" selectedElement="_ZpXJKD9AEemkJ6es1zdyvw">
  103. <children xsi:type="basic:PartSashContainer" xmi:id="_ZpXJKD9AEemkJ6es1zdyvw" containerData="7000" selectedElement="_ZpXJKj9AEemkJ6es1zdyvw" horizontal="true">
  104. <children xsi:type="advanced:Placeholder" xmi:id="_ZpXJKT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.editorss" containerData="7000" ref="_ZdjhwD9AEemkJ6es1zdyvw"/>
  105. <children xsi:type="basic:PartStack" xmi:id="_ZpXJKj9AEemkJ6es1zdyvw" elementId="topRight" containerData="3000" selectedElement="_ZpXJKz9AEemkJ6es1zdyvw">
  106. <tags>active</tags>
  107. <children xsi:type="advanced:Placeholder" xmi:id="_ZpXJKz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.ContentOutline" ref="_ZpDnIj9AEemkJ6es1zdyvw" closeable="true">
  108. <tags>View</tags>
  109. <tags>categoryTag:General</tags>
  110. </children>
  111. <children xsi:type="advanced:Placeholder" xmi:id="_ZpXJLD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.views.tasks" ref="_ZpEOMD9AEemkJ6es1zdyvw" closeable="true">
  112. <tags>View</tags>
  113. <tags>categoryTag:Mylyn</tags>
  114. </children>
  115. <children xsi:type="advanced:Placeholder" xmi:id="_ZpXJLT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.minimap.MinimapView" toBeRendered="false" ref="_ZpIfoD9AEemkJ6es1zdyvw" closeable="true">
  116. <tags>View</tags>
  117. <tags>categoryTag:General</tags>
  118. </children>
  119. </children>
  120. </children>
  121. <children xsi:type="basic:PartStack" xmi:id="_ZpXJLj9AEemkJ6es1zdyvw" elementId="bottomRight" containerData="3000" selectedElement="_ZpXJLz9AEemkJ6es1zdyvw">
  122. <children xsi:type="advanced:Placeholder" xmi:id="_ZpXJLz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.AllMarkersView" ref="_ZpAj0D9AEemkJ6es1zdyvw" closeable="true">
  123. <tags>View</tags>
  124. <tags>categoryTag:General</tags>
  125. </children>
  126. <children xsi:type="advanced:Placeholder" xmi:id="_ZpXJMD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.PropertySheet" ref="_ZpBx8D9AEemkJ6es1zdyvw" closeable="true">
  127. <tags>View</tags>
  128. <tags>categoryTag:General</tags>
  129. </children>
  130. <children xsi:type="advanced:Placeholder" xmi:id="_ZpXJMT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.server.ui.ServersView" ref="_ZpBx8T9AEemkJ6es1zdyvw" closeable="true">
  131. <tags>View</tags>
  132. <tags>categoryTag:Server</tags>
  133. </children>
  134. <children xsi:type="advanced:Placeholder" xmi:id="_ZpXJMj9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.connectivity.DataSourceExplorerNavigator" ref="_ZpCZAD9AEemkJ6es1zdyvw" closeable="true">
  135. <tags>View</tags>
  136. <tags>categoryTag:Data Management</tags>
  137. </children>
  138. <children xsi:type="advanced:Placeholder" xmi:id="_ZpXJMz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.common.snippets.internal.ui.SnippetsView" ref="_ZpCZAT9AEemkJ6es1zdyvw" closeable="true">
  139. <tags>View</tags>
  140. <tags>categoryTag:General</tags>
  141. </children>
  142. <children xsi:type="advanced:Placeholder" xmi:id="_ZpXJND9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.ProblemView" toBeRendered="false" ref="_ZpDAED9AEemkJ6es1zdyvw" closeable="true">
  143. <tags>View</tags>
  144. <tags>categoryTag:General</tags>
  145. </children>
  146. <children xsi:type="advanced:Placeholder" xmi:id="_ZpXJNT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.TaskList" toBeRendered="false" ref="_ZpDAET9AEemkJ6es1zdyvw" closeable="true">
  147. <tags>View</tags>
  148. <tags>categoryTag:General</tags>
  149. </children>
  150. <children xsi:type="advanced:Placeholder" xmi:id="_ZpXwMD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.console.ConsoleView" toBeRendered="false" ref="_ZpDAEj9AEemkJ6es1zdyvw" closeable="true">
  151. <tags>View</tags>
  152. <tags>categoryTag:General</tags>
  153. </children>
  154. <children xsi:type="advanced:Placeholder" xmi:id="_ZpXwMT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.BookmarkView" toBeRendered="false" ref="_ZpDAEz9AEemkJ6es1zdyvw" closeable="true">
  155. <tags>View</tags>
  156. <tags>categoryTag:General</tags>
  157. </children>
  158. <children xsi:type="advanced:Placeholder" xmi:id="_ZpXwMj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.ProgressView" toBeRendered="false" ref="_ZpDnID9AEemkJ6es1zdyvw" closeable="true">
  159. <tags>View</tags>
  160. <tags>categoryTag:General</tags>
  161. </children>
  162. <children xsi:type="advanced:Placeholder" xmi:id="_ZpXwMz9AEemkJ6es1zdyvw" elementId="org.eclipse.search.ui.views.SearchView" toBeRendered="false" ref="_ZpDnIT9AEemkJ6es1zdyvw" closeable="true">
  163. <tags>View</tags>
  164. <tags>categoryTag:General</tags>
  165. </children>
  166. </children>
  167. </children>
  168. </children>
  169. </children>
  170. </children>
  171. <children xsi:type="basic:PartStack" xmi:id="_Y573Uz9AEemkJ6es1zdyvw" elementId="stickyFolderRight" toBeRendered="false" containerData="2500">
  172. <children xsi:type="advanced:Placeholder" xmi:id="_Y573VD9AEemkJ6es1zdyvw" elementId="org.eclipse.help.ui.HelpView" toBeRendered="false" ref="_Y55bED9AEemkJ6es1zdyvw" closeable="true">
  173. <tags>View</tags>
  174. <tags>categoryTag:Help</tags>
  175. </children>
  176. <children xsi:type="advanced:Placeholder" xmi:id="_Y573VT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.internal.introview" toBeRendered="false" ref="_Y57QQD9AEemkJ6es1zdyvw" closeable="true">
  177. <tags>View</tags>
  178. <tags>categoryTag:General</tags>
  179. </children>
  180. <children xsi:type="advanced:Placeholder" xmi:id="_Y573Vj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.cheatsheets.views.CheatSheetView" toBeRendered="false" ref="_Y573UD9AEemkJ6es1zdyvw" closeable="true">
  181. <tags>View</tags>
  182. <tags>categoryTag:Help</tags>
  183. </children>
  184. </children>
  185. </children>
  186. <sharedElements xsi:type="basic:Part" xmi:id="_Y55bED9AEemkJ6es1zdyvw" 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">
  187. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.help.ui.internal.views.HelpView"/>
  188. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.help.ui"/>
  189. <tags>View</tags>
  190. <tags>categoryTag:Help</tags>
  191. </sharedElements>
  192. <sharedElements xsi:type="basic:Part" xmi:id="_Y57QQD9AEemkJ6es1zdyvw" 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">
  193. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.ViewIntroAdapterPart"/>
  194. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui"/>
  195. <persistedState key="memento" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?>&#xD;&#xA;&lt;view>&#xD;&#xA;&lt;presentation currentPage=&quot;qroot&quot; restore=&quot;true&quot;/>&#xD;&#xA;&lt;standbyPart/>&#xD;&#xA;&lt;/view>"/>
  196. <tags>View</tags>
  197. <tags>categoryTag:General</tags>
  198. <menus xmi:id="_b7fj0D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.internal.introview">
  199. <tags>ViewMenu</tags>
  200. <tags>menuContribution:menu</tags>
  201. </menus>
  202. <toolbar xmi:id="_b7fj0T9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.internal.introview" visible="false"/>
  203. </sharedElements>
  204. <sharedElements xsi:type="basic:Part" xmi:id="_Y573UD9AEemkJ6es1zdyvw" 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">
  205. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.cheatsheets.views.CheatSheetView"/>
  206. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.cheatsheets"/>
  207. <tags>View</tags>
  208. <tags>categoryTag:Help</tags>
  209. </sharedElements>
  210. <sharedElements xsi:type="advanced:Area" xmi:id="_ZdjhwD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.editorss">
  211. <children xsi:type="basic:PartStack" xmi:id="_ZdjhwT9AEemkJ6es1zdyvw" elementId="org.eclipse.e4.primaryDataStack">
  212. <tags>org.eclipse.e4.primaryDataStack</tags>
  213. <tags>EditorStack</tags>
  214. </children>
  215. </sharedElements>
  216. <sharedElements xsi:type="basic:Part" xmi:id="_Zd0AcD9AEemkJ6es1zdyvw" 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.png" tooltip="" closeable="true">
  217. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.navigator.resources.ProjectExplorer"/>
  218. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.navigator.resources"/>
  219. <persistedState key="memento" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?>&#xD;&#xA;&lt;view CommonNavigator.LINKING_ENABLED=&quot;0&quot; currentWorkingSetName=&quot;Aggregate for window 1551788171146&quot; org.eclipse.ui.navigator.resources.workingSets.showTopLevelWorkingSets=&quot;0&quot;>&#xD;&#xA;&lt;lastRecentlyUsedFilters/>&#xD;&#xA;&lt;/view>"/>
  220. <tags>View</tags>
  221. <tags>categoryTag:General</tags>
  222. <menus xmi:id="_ZqvpMD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigator.ProjectExplorer">
  223. <tags>ViewMenu</tags>
  224. <tags>menuContribution:menu</tags>
  225. </menus>
  226. <toolbar xmi:id="_ZqvpMT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigator.ProjectExplorer"/>
  227. </sharedElements>
  228. <sharedElements xsi:type="basic:Part" xmi:id="_Zd11oD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.ResourceNavigator" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Navigator" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/filenav_nav.png" tooltip="" closeable="true">
  229. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.views.navigator.ResourceNavigator"/>
  230. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
  231. <tags>View</tags>
  232. <tags>categoryTag:General</tags>
  233. </sharedElements>
  234. <sharedElements xsi:type="basic:Part" xmi:id="_Zd2csD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.TypeHierarchy" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Type Hierarchy" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/class_hi.png" tooltip="" closeable="true">
  235. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.typehierarchy.TypeHierarchyViewPart"/>
  236. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
  237. <tags>View</tags>
  238. <tags>categoryTag:Java</tags>
  239. </sharedElements>
  240. <sharedElements xsi:type="basic:Part" xmi:id="_Zo_8wD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.PackagesView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Packages" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/packages.png" tooltip="" closeable="true">
  241. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.browsing.PackagesView"/>
  242. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
  243. <tags>View</tags>
  244. <tags>categoryTag:Java Browsing</tags>
  245. </sharedElements>
  246. <sharedElements xsi:type="basic:Part" xmi:id="_ZpAj0D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.AllMarkersView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Markers" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/problems_view.png" tooltip="" closeable="true">
  247. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.markers.AllMarkersView"/>
  248. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
  249. <persistedState key="memento" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?>&#xD;&#xA;&lt;view PRIMARY_SORT_FIELD=&quot;org.eclipse.ui.ide.allSeverityField&quot; categoryGroup=&quot;org.eclipse.ui.ide.type&quot; markerContentGenerator=&quot;org.eclipse.ui.ide.allMarkersGenerator&quot; partName=&quot;Markers&quot;>&#xD;&#xA;&lt;columnWidths org.eclipse.ui.ide.allSeverityField=&quot;300&quot; org.eclipse.ui.ide.locationField=&quot;90&quot; org.eclipse.ui.ide.markerType=&quot;90&quot; org.eclipse.ui.ide.pathField=&quot;120&quot; org.eclipse.ui.ide.resourceField=&quot;90&quot;/>&#xD;&#xA;&lt;visible IMemento.internal.id=&quot;org.eclipse.ui.ide.allSeverityField&quot;/>&#xD;&#xA;&lt;visible IMemento.internal.id=&quot;org.eclipse.ui.ide.resourceField&quot;/>&#xD;&#xA;&lt;visible IMemento.internal.id=&quot;org.eclipse.ui.ide.pathField&quot;/>&#xD;&#xA;&lt;visible IMemento.internal.id=&quot;org.eclipse.ui.ide.locationField&quot;/>&#xD;&#xA;&lt;visible IMemento.internal.id=&quot;org.eclipse.ui.ide.markerType&quot;/>&#xD;&#xA;&lt;/view>"/>
  250. <tags>View</tags>
  251. <tags>categoryTag:General</tags>
  252. <menus xmi:id="_aLN5AD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.AllMarkersView">
  253. <tags>ViewMenu</tags>
  254. <tags>menuContribution:menu</tags>
  255. </menus>
  256. <toolbar xmi:id="_aLOgED9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.AllMarkersView"/>
  257. </sharedElements>
  258. <sharedElements xsi:type="basic:Part" xmi:id="_ZpBx8D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.PropertySheet" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Properties" iconURI="platform:/plugin/org.eclipse.ui.views/icons/full/eview16/prop_ps.png" tooltip="" closeable="true">
  259. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.views.properties.PropertySheet"/>
  260. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.views"/>
  261. <tags>View</tags>
  262. <tags>categoryTag:General</tags>
  263. </sharedElements>
  264. <sharedElements xsi:type="basic:Part" xmi:id="_ZpBx8T9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.server.ui.ServersView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Servers" iconURI="platform:/plugin/org.eclipse.wst.server.ui/icons/cview16/servers_view.gif" tooltip="" closeable="true">
  265. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.server.ui.internal.cnf.ServersView2"/>
  266. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.server.ui"/>
  267. <tags>View</tags>
  268. <tags>categoryTag:Server</tags>
  269. </sharedElements>
  270. <sharedElements xsi:type="basic:Part" xmi:id="_ZpCZAD9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.connectivity.DataSourceExplorerNavigator" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Data Source Explorer" iconURI="platform:/plugin/org.eclipse.datatools.connectivity.ui.dse/icons/full/cview16/enterprise_explorer.gif" tooltip="" closeable="true">
  271. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.datatools.connectivity.ui.dse.views.DataSourceExplorerView"/>
  272. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.datatools.connectivity.ui.dse"/>
  273. <tags>View</tags>
  274. <tags>categoryTag:Data Management</tags>
  275. </sharedElements>
  276. <sharedElements xsi:type="basic:Part" xmi:id="_ZpCZAT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.common.snippets.internal.ui.SnippetsView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Snippets" iconURI="platform:/plugin/org.eclipse.wst.common.snippets/icons/snippets_view.gif" tooltip="" closeable="true">
  277. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.common.snippets.internal.ui.SnippetsView"/>
  278. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.common.snippets"/>
  279. <tags>View</tags>
  280. <tags>categoryTag:General</tags>
  281. </sharedElements>
  282. <sharedElements xsi:type="basic:Part" xmi:id="_ZpDAED9AEemkJ6es1zdyvw" 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">
  283. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.markers.ProblemsView"/>
  284. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
  285. <tags>View</tags>
  286. <tags>categoryTag:General</tags>
  287. </sharedElements>
  288. <sharedElements xsi:type="basic:Part" xmi:id="_ZpDAET9AEemkJ6es1zdyvw" 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">
  289. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.markers.TasksView"/>
  290. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
  291. <tags>View</tags>
  292. <tags>categoryTag:General</tags>
  293. </sharedElements>
  294. <sharedElements xsi:type="basic:Part" xmi:id="_ZpDAEj9AEemkJ6es1zdyvw" 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">
  295. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.console.ConsoleView"/>
  296. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.console"/>
  297. <tags>View</tags>
  298. <tags>categoryTag:General</tags>
  299. </sharedElements>
  300. <sharedElements xsi:type="basic:Part" xmi:id="_ZpDAEz9AEemkJ6es1zdyvw" 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">
  301. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.markers.BookmarksView"/>
  302. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
  303. <tags>View</tags>
  304. <tags>categoryTag:General</tags>
  305. </sharedElements>
  306. <sharedElements xsi:type="basic:Part" xmi:id="_ZpDnID9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.ProgressView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Progress" iconURI="platform:/plugin/org.eclipse.ui.ide/icons/full/eview16/pview.png" tooltip="" closeable="true">
  307. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.progress.ProgressView"/>
  308. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
  309. <tags>View</tags>
  310. <tags>categoryTag:General</tags>
  311. </sharedElements>
  312. <sharedElements xsi:type="basic:Part" xmi:id="_ZpDnIT9AEemkJ6es1zdyvw" elementId="org.eclipse.search.ui.views.SearchView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Search" iconURI="platform:/plugin/org.eclipse.search/icons/full/eview16/searchres.png" tooltip="" closeable="true">
  313. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.search2.internal.ui.SearchView"/>
  314. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.search"/>
  315. <tags>View</tags>
  316. <tags>categoryTag:General</tags>
  317. </sharedElements>
  318. <sharedElements xsi:type="basic:Part" xmi:id="_ZpDnIj9AEemkJ6es1zdyvw" 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">
  319. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.views.contentoutline.ContentOutline"/>
  320. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.views"/>
  321. <persistedState key="memento" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?>&#xD;&#xA;&lt;view/>"/>
  322. <tags>View</tags>
  323. <tags>categoryTag:General</tags>
  324. <tags>active</tags>
  325. <tags>activeOnClose</tags>
  326. <menus xmi:id="_aDMlcD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.ContentOutline">
  327. <tags>ViewMenu</tags>
  328. <tags>menuContribution:menu</tags>
  329. </menus>
  330. <toolbar xmi:id="_aDMlcT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.ContentOutline"/>
  331. </sharedElements>
  332. <sharedElements xsi:type="basic:Part" xmi:id="_ZpEOMD9AEemkJ6es1zdyvw" 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">
  333. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.mylyn.internal.tasks.ui.views.TaskListView"/>
  334. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.mylyn.tasks.ui"/>
  335. <tags>View</tags>
  336. <tags>categoryTag:Mylyn</tags>
  337. </sharedElements>
  338. <sharedElements xsi:type="basic:Part" xmi:id="_ZpIfoD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.minimap.MinimapView" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView" label="Minimap" iconURI="platform:/plugin/org.eclipse.ui.workbench.texteditor/icons/full/eview16/minimap.png" tooltip="" closeable="true">
  339. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.minimap.MinimapView"/>
  340. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.workbench.texteditor"/>
  341. <tags>View</tags>
  342. <tags>categoryTag:General</tags>
  343. </sharedElements>
  344. <trimBars xmi:id="_Y6GPYD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.main.toolbar">
  345. <children xsi:type="menu:ToolBar" xmi:id="_ZDL58D9AEemkJ6es1zdyvw" elementId="group.file" toBeRendered="false">
  346. <tags>toolbarSeparator</tags>
  347. <children xsi:type="menu:ToolBarSeparator" xmi:id="_ZDL58T9AEemkJ6es1zdyvw" elementId="group.file" toBeRendered="false"/>
  348. </children>
  349. <children xsi:type="menu:ToolBar" xmi:id="_ZDQLYD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.workbench.file">
  350. <tags>Draggable</tags>
  351. <children xsi:type="menu:HandledToolItem" xmi:id="_i4MM8CfvEeq9j5-P04oEqA" elementId="print" visible="false" iconURI="platform:/plugin/org.eclipse.ui/icons/full/etool16/print_edit.png" tooltip="Print" command="_YQG3ND9AEemkJ6es1zdyvw"/>
  352. </children>
  353. <children xsi:type="menu:ToolBar" xmi:id="_ZDQycD9AEemkJ6es1zdyvw" elementId="group.edit" toBeRendered="false">
  354. <tags>toolbarSeparator</tags>
  355. <children xsi:type="menu:ToolBarSeparator" xmi:id="_ZDQycT9AEemkJ6es1zdyvw" elementId="group.edit" toBeRendered="false"/>
  356. </children>
  357. <children xsi:type="menu:ToolBar" xmi:id="_ZDQycj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.workbench.edit" visible="false">
  358. <tags>Draggable</tags>
  359. </children>
  360. <children xsi:type="menu:ToolBar" xmi:id="_ZDRZgD9AEemkJ6es1zdyvw" elementId="additions" toBeRendered="false">
  361. <tags>toolbarSeparator</tags>
  362. <children xsi:type="menu:ToolBarSeparator" xmi:id="_ZDRZgT9AEemkJ6es1zdyvw" elementId="additions" toBeRendered="false"/>
  363. </children>
  364. <children xsi:type="menu:ToolBar" xmi:id="_lFZrYCfvEeq9j5-P04oEqA">
  365. <tags>Draggable</tags>
  366. </children>
  367. <children xsi:type="menu:ToolBar" xmi:id="_aQjE8D9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.launchActionSet">
  368. <tags>Draggable</tags>
  369. </children>
  370. <children xsi:type="menu:ToolBar" xmi:id="_aPKk4D9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.j2ee.J2eeMainActionSet">
  371. <tags>Draggable</tags>
  372. </children>
  373. <children xsi:type="menu:ToolBar" xmi:id="_aP49oD9AEemkJ6es1zdyvw" elementId="org.eclipse.search.searchActionSet">
  374. <tags>Draggable</tags>
  375. </children>
  376. <children xsi:type="menu:ToolBar" xmi:id="_aPiYUD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.server.ui.internal.webbrowser.actionSet">
  377. <tags>Draggable</tags>
  378. </children>
  379. <children xsi:type="menu:ToolBar" xmi:id="_aQI1QD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.ws.explorer.explorer">
  380. <tags>Draggable</tags>
  381. </children>
  382. <children xsi:type="menu:ToolBar" xmi:id="_ZDSAkD9AEemkJ6es1zdyvw" elementId="group.nav" toBeRendered="false">
  383. <tags>toolbarSeparator</tags>
  384. <children xsi:type="menu:ToolBarSeparator" xmi:id="_ZDSAkT9AEemkJ6es1zdyvw" elementId="group.nav" toBeRendered="false"/>
  385. </children>
  386. <children xsi:type="menu:ToolBar" xmi:id="_ZDSnoD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.workbench.navigate">
  387. <tags>Draggable</tags>
  388. <children xsi:type="menu:HandledToolItem" xmi:id="_i4RFcCfvEeq9j5-P04oEqA" elementId="org.eclipse.ui.window.pinEditor" iconURI="platform:/plugin/org.eclipse.ui/icons/full/etool16/pin_editor.png" tooltip="Pin Editor" enabled="false" type="Check" command="_YQEbHD9AEemkJ6es1zdyvw"/>
  389. </children>
  390. <children xsi:type="menu:ToolBar" xmi:id="_ZDTOsD9AEemkJ6es1zdyvw" elementId="group.editor" toBeRendered="false">
  391. <tags>toolbarSeparator</tags>
  392. <children xsi:type="menu:ToolBarSeparator" xmi:id="_ZDTOsT9AEemkJ6es1zdyvw" elementId="group.editor" toBeRendered="false"/>
  393. </children>
  394. <children xsi:type="menu:ToolBar" xmi:id="_ZDT1wD9AEemkJ6es1zdyvw" elementId="group.help" toBeRendered="false">
  395. <tags>toolbarSeparator</tags>
  396. <children xsi:type="menu:ToolBarSeparator" xmi:id="_ZDT1wT9AEemkJ6es1zdyvw" elementId="group.help" toBeRendered="false"/>
  397. </children>
  398. <children xsi:type="menu:ToolBar" xmi:id="_ZDUc0D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.workbench.help" visible="false">
  399. <tags>Draggable</tags>
  400. </children>
  401. <children xsi:type="menu:ToolControl" xmi:id="_ZYliMD9AEemkJ6es1zdyvw" elementId="PerspectiveSpacer" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.LayoutModifierToolControl">
  402. <tags>stretch</tags>
  403. <tags>SHOW_RESTORE_MENU</tags>
  404. </children>
  405. <children xsi:type="menu:ToolControl" xmi:id="_ZYolgD9AEemkJ6es1zdyvw" elementId="PerspectiveSwitcher" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.e4.ui.workbench.addons.perspectiveswitcher.PerspectiveSwitcher">
  406. <tags>Draggable</tags>
  407. <tags>HIDEABLE</tags>
  408. <tags>SHOW_RESTORE_MENU</tags>
  409. </children>
  410. <children xsi:type="menu:ToolControl" xmi:id="_dqs3oD9AEemkJ6es1zdyvw" elementId="breadcrumb.toolcontrol" contributionURI="bundleclass://com.genuitec.eclipse.meexplorer/com.genuitec.eclipse.meexplorer.breadcrumb.e4.BreadCrumbContainer"/>
  411. </trimBars>
  412. <trimBars xmi:id="_ZZBnED9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.trim.status" side="Bottom">
  413. <children xsi:type="menu:ToolControl" xmi:id="_ZZN0UD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.StatusLine" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.StandardTrim">
  414. <tags>stretch</tags>
  415. </children>
  416. <children xsi:type="menu:ToolControl" xmi:id="_ZZjykD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.HeapStatus" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.StandardTrim">
  417. <tags>Draggable</tags>
  418. </children>
  419. <children xsi:type="menu:ToolControl" xmi:id="_ZZ37oD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.ProgressBar" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.StandardTrim">
  420. <tags>Draggable</tags>
  421. </children>
  422. </trimBars>
  423. <trimBars xmi:id="_ZaiC8D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.trim.vertical1" toBeRendered="false" side="Left">
  424. <children xsi:type="menu:ToolControl" xmi:id="_clQSgD9AEemkJ6es1zdyvw" 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">
  425. <tags>TrimStack</tags>
  426. <tags>Draggable</tags>
  427. </children>
  428. </trimBars>
  429. <trimBars xmi:id="_ZajRED9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.trim.vertical2" side="Right"/>
  430. </children>
  431. <bindingTables xmi:id="_YO2S8z9AEemkJ6es1zdyvw" contributorURI="platform:/plugin/org.eclipse.platform" bindingContext="_YO2S9D9AEemkJ6es1zdyvw">
  432. <bindings xmi:id="_YTeUQD9AEemkJ6es1zdyvw" keySequence="ALT+F11" command="_YP40xD9AEemkJ6es1zdyvw">
  433. <tags>platform:win32</tags>
  434. </bindings>
  435. <bindings xmi:id="_YThXlT9AEemkJ6es1zdyvw" keySequence="SHIFT+INSERT" command="_YP2Ymj9AEemkJ6es1zdyvw"/>
  436. <bindings xmi:id="_YTlpBT9AEemkJ6es1zdyvw" keySequence="ALT+PAGE_UP" command="_YP_ilz9AEemkJ6es1zdyvw"/>
  437. <bindings xmi:id="_YTlpBz9AEemkJ6es1zdyvw" keySequence="ALT+PAGE_DOWN" command="_YQD0BD9AEemkJ6es1zdyvw"/>
  438. <bindings xmi:id="_YTm3JT9AEemkJ6es1zdyvw" keySequence="SHIFT+DEL" command="_YP8fJj9AEemkJ6es1zdyvw"/>
  439. <bindings xmi:id="_YTsWtj9AEemkJ6es1zdyvw" keySequence="CTRL+A" command="_YP-7Yz9AEemkJ6es1zdyvw"/>
  440. <bindings xmi:id="_YTs9yj9AEemkJ6es1zdyvw" keySequence="CTRL+C" command="_YQAJoj9AEemkJ6es1zdyvw"/>
  441. <bindings xmi:id="_YTvaAD9AEemkJ6es1zdyvw" keySequence="ALT+/" command="_YQFCGz9AEemkJ6es1zdyvw">
  442. <tags>locale:zh</tags>
  443. </bindings>
  444. <bindings xmi:id="_YTwoIT9AEemkJ6es1zdyvw" keySequence="CTRL+1" command="_YP6p-T9AEemkJ6es1zdyvw"/>
  445. <bindings xmi:id="_YTzEYj9AEemkJ6es1zdyvw" keySequence="CTRL+6" command="_YP7RHz9AEemkJ6es1zdyvw"/>
  446. <bindings xmi:id="_YTzrcj9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+I" command="_YP6C6D9AEemkJ6es1zdyvw"/>
  447. <bindings xmi:id="_YTzrej9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+L" command="_YQIFVz9AEemkJ6es1zdyvw"/>
  448. <bindings xmi:id="_YT1gqz9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+D" command="_YQIsYD9AEemkJ6es1zdyvw"/>
  449. <bindings xmi:id="_YT2uyj9AEemkJ6es1zdyvw" keySequence="CTRL+X" command="_YP8fJj9AEemkJ6es1zdyvw"/>
  450. <bindings xmi:id="_YT3V0T9AEemkJ6es1zdyvw" keySequence="CTRL+Y" command="_YP_ihD9AEemkJ6es1zdyvw"/>
  451. <bindings xmi:id="_YT3V1D9AEemkJ6es1zdyvw" keySequence="CTRL+Z" command="_YP74KT9AEemkJ6es1zdyvw"/>
  452. <bindings xmi:id="_YT5LDD9AEemkJ6es1zdyvw" keySequence="CTRL+V" command="_YP2Ymj9AEemkJ6es1zdyvw"/>
  453. <bindings xmi:id="_YT7nST9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+SHIFT+F9" command="_YP-Udj9AEemkJ6es1zdyvw"/>
  454. <bindings xmi:id="_YT7nTT9AEemkJ6es1zdyvw" keySequence="CTRL+INSERT" command="_YQAJoj9AEemkJ6es1zdyvw"/>
  455. <bindings xmi:id="_YT81Yz9AEemkJ6es1zdyvw" keySequence="CTRL+PAGE_UP" command="_YQHeTT9AEemkJ6es1zdyvw"/>
  456. <bindings xmi:id="_YT81ZD9AEemkJ6es1zdyvw" keySequence="CTRL+PAGE_DOWN" command="_YP6qBD9AEemkJ6es1zdyvw"/>
  457. <bindings xmi:id="_YT81Zj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+F1" command="_YP404T9AEemkJ6es1zdyvw"/>
  458. <bindings xmi:id="_YT81Zz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+F2" command="_YQDz4j9AEemkJ6es1zdyvw"/>
  459. <bindings xmi:id="_YT81aD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+F3" command="_YQG3QD9AEemkJ6es1zdyvw"/>
  460. <bindings xmi:id="_YT_4sD9AEemkJ6es1zdyvw" keySequence="CTRL+F10" command="_YP3moT9AEemkJ6es1zdyvw"/>
  461. </bindingTables>
  462. <bindingTables xmi:id="_YQyMoD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.textEditorScope" bindingContext="_YQOzAj9AEemkJ6es1zdyvw">
  463. <bindings xmi:id="_YTYNoD9AEemkJ6es1zdyvw" keySequence="END" command="_YQHeWj9AEemkJ6es1zdyvw"/>
  464. <bindings xmi:id="_YTcfEj9AEemkJ6es1zdyvw" keySequence="INSERT" command="_YQCl7j9AEemkJ6es1zdyvw"/>
  465. <bindings xmi:id="_YTdGIz9AEemkJ6es1zdyvw" keySequence="F2" command="_YP6qBj9AEemkJ6es1zdyvw"/>
  466. <bindings xmi:id="_YThXkD9AEemkJ6es1zdyvw" keySequence="HOME" command="_YQIFbT9AEemkJ6es1zdyvw"/>
  467. <bindings xmi:id="_YThXkT9AEemkJ6es1zdyvw" keySequence="SHIFT+END" command="_YP-UYD9AEemkJ6es1zdyvw"/>
  468. <bindings xmi:id="_YTilsD9AEemkJ6es1zdyvw" keySequence="SHIFT+HOME" command="_YP9tQj9AEemkJ6es1zdyvw"/>
  469. <bindings xmi:id="_YTka4z9AEemkJ6es1zdyvw" keySequence="ALT+ARROW_UP" command="_YQJTfT9AEemkJ6es1zdyvw"/>
  470. <bindings xmi:id="_YTlB8T9AEemkJ6es1zdyvw" keySequence="ALT+ARROW_DOWN" command="_YQD0ET9AEemkJ6es1zdyvw"/>
  471. <bindings xmi:id="_YTneMz9AEemkJ6es1zdyvw" keySequence="CTRL+BS" command="_YP1Kaj9AEemkJ6es1zdyvw"/>
  472. <bindings xmi:id="_YTpTZT9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+/" command="_YQIFcj9AEemkJ6es1zdyvw">
  473. <tags>locale:zh</tags>
  474. </bindings>
  475. <bindings xmi:id="_YTpTaD9AEemkJ6es1zdyvw" keySequence="CTRL++" command="_YQDNBj9AEemkJ6es1zdyvw"/>
  476. <bindings xmi:id="_YTp6cD9AEemkJ6es1zdyvw" keySequence="CTRL+-" command="_YP-UUj9AEemkJ6es1zdyvw"/>
  477. <bindings xmi:id="_YTp6cT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+CR" command="_YQG3Pz9AEemkJ6es1zdyvw"/>
  478. <bindings xmi:id="_YTp6ej9AEemkJ6es1zdyvw" keySequence="CTRL+/" command="_YP1xej9AEemkJ6es1zdyvw"/>
  479. <bindings xmi:id="_YTrImD9AEemkJ6es1zdyvw" keySequence="CTRL+J" command="_YP3mqz9AEemkJ6es1zdyvw"/>
  480. <bindings xmi:id="_YTrImT9AEemkJ6es1zdyvw" keySequence="CTRL+K" command="_YQDz_T9AEemkJ6es1zdyvw"/>
  481. <bindings xmi:id="_YTrvoD9AEemkJ6es1zdyvw" keySequence="CTRL+L" command="_YQFpFD9AEemkJ6es1zdyvw"/>
  482. <bindings xmi:id="_YTsWsD9AEemkJ6es1zdyvw" keySequence="CTRL+O" command="_YQAJrD9AEemkJ6es1zdyvw"/>
  483. <bindings xmi:id="_YTs9zT9AEemkJ6es1zdyvw" keySequence="CTRL+D" command="_YP3mvz9AEemkJ6es1zdyvw"/>
  484. <bindings xmi:id="_YTtk1D9AEemkJ6es1zdyvw" keySequence="CTRL+F" command="_YP-7ZT9AEemkJ6es1zdyvw"/>
  485. <bindings xmi:id="_YTtk2j9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+X" command="_YQAJrT9AEemkJ6es1zdyvw"/>
  486. <bindings xmi:id="_YTuL5D9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+Y" command="_YP9tVz9AEemkJ6es1zdyvw"/>
  487. <bindings xmi:id="_YTuy8z9AEemkJ6es1zdyvw" keySequence="CTRL+=" command="_YQDNBj9AEemkJ6es1zdyvw"/>
  488. <bindings xmi:id="_YTwBED9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+Q" command="_YP6C8z9AEemkJ6es1zdyvw"/>
  489. <bindings xmi:id="_YTwoIz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+A" command="_YQClwz9AEemkJ6es1zdyvw"/>
  490. <bindings xmi:id="_YTzrcT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Y" command="_YP0jUD9AEemkJ6es1zdyvw"/>
  491. <bindings xmi:id="_YTzrdT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+J" command="_YP5b9T9AEemkJ6es1zdyvw"/>
  492. <bindings xmi:id="_YTzreD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+K" command="_YP402T9AEemkJ6es1zdyvw"/>
  493. <bindings xmi:id="_YT0SgT9AEemkJ6es1zdyvw" keySequence="SHIFT+CR" command="_YQIFaz9AEemkJ6es1zdyvw"/>
  494. <bindings xmi:id="_YT1gpj9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+C" command="_YP1xej9AEemkJ6es1zdyvw"/>
  495. <bindings xmi:id="_YT2uwD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F" command="_YP7RHj9AEemkJ6es1zdyvw"/>
  496. <bindings xmi:id="_YT3V1T9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+J" command="_YP6DAz9AEemkJ6es1zdyvw"/>
  497. <bindings xmi:id="_YT3V1j9AEemkJ6es1zdyvw" keySequence="ESC" command="_YQFCCj9AEemkJ6es1zdyvw"/>
  498. <bindings xmi:id="_YT5yFD9AEemkJ6es1zdyvw" keySequence="CTRL+DEL" command="_YP74IT9AEemkJ6es1zdyvw"/>
  499. <bindings xmi:id="_YT6ZKD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+DEL" command="_YQFCIj9AEemkJ6es1zdyvw"/>
  500. <bindings xmi:id="_YT7nSz9AEemkJ6es1zdyvw" keySequence="CTRL+END" command="_YQD0Fj9AEemkJ6es1zdyvw"/>
  501. <bindings xmi:id="_YT8OUT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+NUMPAD_MULTIPLY" command="_YQEbCz9AEemkJ6es1zdyvw"/>
  502. <bindings xmi:id="_YT8OXz9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+NUMPAD_DIVIDE" command="_YQCl8j9AEemkJ6es1zdyvw"/>
  503. <bindings xmi:id="_YT8OYD9AEemkJ6es1zdyvw" keySequence="CTRL+ARROW_UP" command="_YP403j9AEemkJ6es1zdyvw"/>
  504. <bindings xmi:id="_YT8OYj9AEemkJ6es1zdyvw" keySequence="CTRL+ARROW_DOWN" command="_YQJTlD9AEemkJ6es1zdyvw"/>
  505. <bindings xmi:id="_YT81YT9AEemkJ6es1zdyvw" keySequence="CTRL+ARROW_LEFT" command="_YQAJmz9AEemkJ6es1zdyvw"/>
  506. <bindings xmi:id="_YT81Yj9AEemkJ6es1zdyvw" keySequence="CTRL+ARROW_RIGHT" command="_YP6C7z9AEemkJ6es1zdyvw"/>
  507. <bindings xmi:id="_YT81ZT9AEemkJ6es1zdyvw" keySequence="CTRL+HOME" command="_YP2YmD9AEemkJ6es1zdyvw"/>
  508. <bindings xmi:id="_YT9cfT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+INSERT" command="_YP5b4j9AEemkJ6es1zdyvw"/>
  509. <bindings xmi:id="_YT9cgD9AEemkJ6es1zdyvw" keySequence="CTRL+NUMPAD_MULTIPLY" command="_YQEbAD9AEemkJ6es1zdyvw"/>
  510. <bindings xmi:id="_YT-Dgj9AEemkJ6es1zdyvw" keySequence="CTRL+NUMPAD_ADD" command="_YQIsZz9AEemkJ6es1zdyvw"/>
  511. <bindings xmi:id="_YT-DhT9AEemkJ6es1zdyvw" keySequence="CTRL+NUMPAD_SUBTRACT" command="_YQG3PT9AEemkJ6es1zdyvw"/>
  512. <bindings xmi:id="_YT-Diz9AEemkJ6es1zdyvw" keySequence="CTRL+NUMPAD_DIVIDE" command="_YP404z9AEemkJ6es1zdyvw"/>
  513. <bindings xmi:id="_YT-qmj9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+ARROW_LEFT" command="_YP-UZD9AEemkJ6es1zdyvw"/>
  514. <bindings xmi:id="_YT-qmz9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+ARROW_RIGHT" command="_YP5b6D9AEemkJ6es1zdyvw"/>
  515. <bindings xmi:id="_YT_RqT9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+ARROW_UP" command="_YQIsez9AEemkJ6es1zdyvw"/>
  516. <bindings xmi:id="_YT_Rqz9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+ARROW_DOWN" command="_YP-7cT9AEemkJ6es1zdyvw"/>
  517. <bindings xmi:id="_YT_4sT9AEemkJ6es1zdyvw" keySequence="CTRL+F10" command="_YQG3Oj9AEemkJ6es1zdyvw"/>
  518. </bindingTables>
  519. <bindingTables xmi:id="_YTcfED9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.views.tasks" bindingContext="_YQPaIj9AEemkJ6es1zdyvw">
  520. <bindings xmi:id="_YTcfET9AEemkJ6es1zdyvw" keySequence="INSERT" command="_YP9tVD9AEemkJ6es1zdyvw"/>
  521. <bindings xmi:id="_YTdGMD9AEemkJ6es1zdyvw" keySequence="F4" command="_YP2_rj9AEemkJ6es1zdyvw"/>
  522. <bindings xmi:id="_YThXkj9AEemkJ6es1zdyvw" keySequence="SHIFT+INSERT" command="_YP40yz9AEemkJ6es1zdyvw"/>
  523. <bindings xmi:id="_YTka4T9AEemkJ6es1zdyvw" keySequence="ALT+ARROW_UP" command="_YQDz7D9AEemkJ6es1zdyvw"/>
  524. <bindings xmi:id="_YTlB8D9AEemkJ6es1zdyvw" keySequence="ALT+ARROW_DOWN" command="_YP74FT9AEemkJ6es1zdyvw"/>
  525. <bindings xmi:id="_YTneOT9AEemkJ6es1zdyvw" keySequence="CTRL+CR" command="_YP7RJD9AEemkJ6es1zdyvw"/>
  526. <bindings xmi:id="_YTuL4T9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+I" command="_YP-UUz9AEemkJ6es1zdyvw"/>
  527. <bindings xmi:id="_YTx2Rj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+C" command="_YQAJgj9AEemkJ6es1zdyvw"/>
  528. <bindings xmi:id="_YT05lT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+R" command="_YP-UYj9AEemkJ6es1zdyvw"/>
  529. <bindings xmi:id="_YT2HsD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+U" command="_YQEa9z9AEemkJ6es1zdyvw"/>
  530. <bindings xmi:id="_YT81az9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+ARROW_UP" command="_YQFCDT9AEemkJ6es1zdyvw"/>
  531. <bindings xmi:id="_YT81cj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+ARROW_DOWN" command="_YP-UXD9AEemkJ6es1zdyvw"/>
  532. </bindingTables>
  533. <bindingTables xmi:id="_YTcfEz9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.internal.wikitext.ui.editor.basicMarkupSourceContext" bindingContext="_YQPaJD9AEemkJ6es1zdyvw">
  534. <bindings xmi:id="_YTdGID9AEemkJ6es1zdyvw" keySequence="F1" command="_YP1xfT9AEemkJ6es1zdyvw"/>
  535. </bindingTables>
  536. <bindingTables xmi:id="_YTdGIT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.contexts.window" bindingContext="_YO2S9T9AEemkJ6es1zdyvw">
  537. <bindings xmi:id="_YTdGIj9AEemkJ6es1zdyvw" keySequence="F2" command="_YP2YpT9AEemkJ6es1zdyvw"/>
  538. <bindings xmi:id="_YTdGJj9AEemkJ6es1zdyvw" keySequence="F3" command="_YP6DBT9AEemkJ6es1zdyvw"/>
  539. <bindings xmi:id="_YTdGLz9AEemkJ6es1zdyvw" keySequence="F4" command="_YP2_lz9AEemkJ6es1zdyvw"/>
  540. <bindings xmi:id="_YTdtOD9AEemkJ6es1zdyvw" keySequence="F5" command="_YP9GPj9AEemkJ6es1zdyvw"/>
  541. <bindings xmi:id="_YTdtOj9AEemkJ6es1zdyvw" keySequence="ALT+F7" command="_YQClzT9AEemkJ6es1zdyvw"/>
  542. <bindings xmi:id="_YThXlz9AEemkJ6es1zdyvw" keySequence="SHIFT+F2" command="_YQDM4j9AEemkJ6es1zdyvw"/>
  543. <bindings xmi:id="_YTh-oD9AEemkJ6es1zdyvw" keySequence="SHIFT+F5" command="_YP-7dj9AEemkJ6es1zdyvw"/>
  544. <bindings xmi:id="_YTilsz9AEemkJ6es1zdyvw" keySequence="ALT+F5" command="_YP-UdT9AEemkJ6es1zdyvw"/>
  545. <bindings xmi:id="_YTlB8z9AEemkJ6es1zdyvw" keySequence="ALT+ARROW_LEFT" command="_YP3mpj9AEemkJ6es1zdyvw"/>
  546. <bindings xmi:id="_YTlpAT9AEemkJ6es1zdyvw" keySequence="ALT+ARROW_RIGHT" command="_YP9GMj9AEemkJ6es1zdyvw"/>
  547. <bindings xmi:id="_YTlpAj9AEemkJ6es1zdyvw" keySequence="F11" command="_YQIFgT9AEemkJ6es1zdyvw"/>
  548. <bindings xmi:id="_YTlpBD9AEemkJ6es1zdyvw" keySequence="F12" command="_YQFCHj9AEemkJ6es1zdyvw"/>
  549. <bindings xmi:id="_YTlpBj9AEemkJ6es1zdyvw" keySequence="CTRL+BREAK" command="_YP3muj9AEemkJ6es1zdyvw"/>
  550. <bindings xmi:id="_YTlpCD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+X X" command="_YQB-sT9AEemkJ6es1zdyvw"/>
  551. <bindings xmi:id="_YTmQEj9AEemkJ6es1zdyvw" keySequence="DEL" command="_YP400T9AEemkJ6es1zdyvw"/>
  552. <bindings xmi:id="_YTmQEz9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+X G" command="_YQIFej9AEemkJ6es1zdyvw"/>
  553. <bindings xmi:id="_YTmQFD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+X A" command="_YP2Ynz9AEemkJ6es1zdyvw"/>
  554. <bindings xmi:id="_YTmQFT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+X B" command="_YQJTkj9AEemkJ6es1zdyvw"/>
  555. <bindings xmi:id="_YTmQFj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+X E" command="_YQDNDz9AEemkJ6es1zdyvw"/>
  556. <bindings xmi:id="_YTmQGD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+X O" command="_YQDM4z9AEemkJ6es1zdyvw"/>
  557. <bindings xmi:id="_YTm3ID9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+X Q" command="_YP6C5D9AEemkJ6es1zdyvw"/>
  558. <bindings xmi:id="_YTm3IT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+X P" command="_YQIscD9AEemkJ6es1zdyvw"/>
  559. <bindings xmi:id="_YTm3Ij9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+X R" command="_YP_igj9AEemkJ6es1zdyvw"/>
  560. <bindings xmi:id="_YTm3Iz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+X T" command="_YP-7YD9AEemkJ6es1zdyvw"/>
  561. <bindings xmi:id="_YTm3JD9AEemkJ6es1zdyvw" keySequence="SHIFT+DEL" command="_YP7RDT9AEemkJ6es1zdyvw"/>
  562. <bindings xmi:id="_YTm3Jj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+X J" command="_YQD0CT9AEemkJ6es1zdyvw"/>
  563. <bindings xmi:id="_YTm3Jz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+X M" command="_YP-7bT9AEemkJ6es1zdyvw"/>
  564. <bindings xmi:id="_YTm3KD9AEemkJ6es1zdyvw" keySequence="ALT+X" command="_YQAJiz9AEemkJ6es1zdyvw"/>
  565. <bindings xmi:id="_YTpTYD9AEemkJ6es1zdyvw" keySequence="ALT+V" command="_YP-7bD9AEemkJ6es1zdyvw"/>
  566. <bindings xmi:id="_YTpTaT9AEemkJ6es1zdyvw" keySequence="CTRL+," command="_YP2Yoj9AEemkJ6es1zdyvw"/>
  567. <bindings xmi:id="_YTpTaj9AEemkJ6es1zdyvw" keySequence="CTRL+-" command="_YQIFXD9AEemkJ6es1zdyvw"/>
  568. <bindings xmi:id="_YTp6cj9AEemkJ6es1zdyvw" keySequence="CTRL+." command="_YQIsgD9AEemkJ6es1zdyvw"/>
  569. <bindings xmi:id="_YTp6fD9AEemkJ6es1zdyvw" keySequence="ALT+?" command="_YP7RED9AEemkJ6es1zdyvw">
  570. <tags>locale:zh</tags>
  571. </bindings>
  572. <bindings xmi:id="_YTp6fT9AEemkJ6es1zdyvw" keySequence="CTRL+#" command="_YP3moz9AEemkJ6es1zdyvw"/>
  573. <bindings xmi:id="_YTqhhD9AEemkJ6es1zdyvw" keySequence="ALT+C" command="_YP74ET9AEemkJ6es1zdyvw"/>
  574. <bindings xmi:id="_YTrIkj9AEemkJ6es1zdyvw" keySequence="CTRL+H" command="_YQFCGj9AEemkJ6es1zdyvw"/>
  575. <bindings xmi:id="_YTrIkz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+D J" command="_YQEbET9AEemkJ6es1zdyvw"/>
  576. <bindings xmi:id="_YTrImj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+D O" command="_YQAJqT9AEemkJ6es1zdyvw"/>
  577. <bindings xmi:id="_YTrvoj9AEemkJ6es1zdyvw" keySequence="CTRL+M" command="_YQFCFj9AEemkJ6es1zdyvw"/>
  578. <bindings xmi:id="_YTrvpD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+D Q" command="_YP-7fj9AEemkJ6es1zdyvw"/>
  579. <bindings xmi:id="_YTrvpz9AEemkJ6es1zdyvw" keySequence="CTRL+N" command="_YQIsmz9AEemkJ6es1zdyvw"/>
  580. <bindings xmi:id="_YTsWsT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+D P" command="_YQGQKD9AEemkJ6es1zdyvw"/>
  581. <bindings xmi:id="_YTsWsj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+?" command="_YP7RED9AEemkJ6es1zdyvw">
  582. <tags>locale:zh</tags>
  583. </bindings>
  584. <bindings xmi:id="_YTsWsz9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+P" command="_YP40xz9AEemkJ6es1zdyvw"/>
  585. <bindings xmi:id="_YTs9wD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+D B" command="_YQIFjD9AEemkJ6es1zdyvw"/>
  586. <bindings xmi:id="_YTs9wj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+D E" command="_YQJTgz9AEemkJ6es1zdyvw"/>
  587. <bindings xmi:id="_YTs9wz9AEemkJ6es1zdyvw" keySequence="CTRL+B" command="_YP2Ypj9AEemkJ6es1zdyvw"/>
  588. <bindings xmi:id="_YTs9zD9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+T" command="_YQAJnD9AEemkJ6es1zdyvw"/>
  589. <bindings xmi:id="_YTtk0T9AEemkJ6es1zdyvw" keySequence="CTRL+E" command="_YP74Hj9AEemkJ6es1zdyvw"/>
  590. <bindings xmi:id="_YTtk0j9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+SHIFT+B D" command="_YQIsZD9AEemkJ6es1zdyvw"/>
  591. <bindings xmi:id="_YTtk0z9AEemkJ6es1zdyvw" keySequence="CTRL+F" command="_YP4NvT9AEemkJ6es1zdyvw"/>
  592. <bindings xmi:id="_YTtk1j9AEemkJ6es1zdyvw" keySequence="CTRL+G" command="_YP1Kaz9AEemkJ6es1zdyvw"/>
  593. <bindings xmi:id="_YTtk2D9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+SHIFT+B F" command="_YP6C7T9AEemkJ6es1zdyvw"/>
  594. <bindings xmi:id="_YTtk2T9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+H" command="_YP74Ez9AEemkJ6es1zdyvw"/>
  595. <bindings xmi:id="_YTuL4D9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+I" command="_YP3mpD9AEemkJ6es1zdyvw"/>
  596. <bindings xmi:id="_YTuL5j9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+J" command="_YP74GT9AEemkJ6es1zdyvw"/>
  597. <bindings xmi:id="_YTuL7T9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+L" command="_YP6p8j9AEemkJ6es1zdyvw"/>
  598. <bindings xmi:id="_YTuy8T9AEemkJ6es1zdyvw" keySequence="ALT+-" command="_YQAJuj9AEemkJ6es1zdyvw"/>
  599. <bindings xmi:id="_YTuy8j9AEemkJ6es1zdyvw" keySequence="CTRL+=" command="_YP9GNz9AEemkJ6es1zdyvw"/>
  600. <bindings xmi:id="_YTuy9D9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+M" command="_YQIsaD9AEemkJ6es1zdyvw"/>
  601. <bindings xmi:id="_YTuy9j9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+N" command="_YP74Kz9AEemkJ6es1zdyvw"/>
  602. <bindings xmi:id="_YTxPMD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+D R" command="_YP_ihT9AEemkJ6es1zdyvw"/>
  603. <bindings xmi:id="_YTx2QT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+R" command="_YQJTmz9AEemkJ6es1zdyvw"/>
  604. <bindings xmi:id="_YTx2Qj9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+SHIFT+B S" command="_YQFCAT9AEemkJ6es1zdyvw"/>
  605. <bindings xmi:id="_YTx2RD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+D T" command="_YP1xfD9AEemkJ6es1zdyvw"/>
  606. <bindings xmi:id="_YTx2RT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+C" command="_YQFCIT9AEemkJ6es1zdyvw"/>
  607. <bindings xmi:id="_YTx2ST9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+S" command="_YQDM9j9AEemkJ6es1zdyvw"/>
  608. <bindings xmi:id="_YTx2Sj9AEemkJ6es1zdyvw" keySequence="CTRL+3" command="_YP6qBT9AEemkJ6es1zdyvw"/>
  609. <bindings xmi:id="_YTydUj9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+SHIFT+B R" command="_YQCl7z9AEemkJ6es1zdyvw"/>
  610. <bindings xmi:id="_YTydUz9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+T" command="_YP8fJT9AEemkJ6es1zdyvw"/>
  611. <bindings xmi:id="_YTydVT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+T" command="_YP5b0T9AEemkJ6es1zdyvw"/>
  612. <bindings xmi:id="_YTydVz9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+U" command="_YP5b4D9AEemkJ6es1zdyvw"/>
  613. <bindings xmi:id="_YTydWT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+F" command="_YQHeSj9AEemkJ6es1zdyvw"/>
  614. <bindings xmi:id="_YTydWj9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+V" command="_YQHeYj9AEemkJ6es1zdyvw"/>
  615. <bindings xmi:id="_YTzEZD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+G" command="_YQDM6z9AEemkJ6es1zdyvw"/>
  616. <bindings xmi:id="_YTzEaT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+W" command="_YP8fIz9AEemkJ6es1zdyvw"/>
  617. <bindings xmi:id="_YTzEaj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+D X" command="_YP_idT9AEemkJ6es1zdyvw"/>
  618. <bindings xmi:id="_YTzEaz9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+H" command="_YQAJkz9AEemkJ6es1zdyvw"/>
  619. <bindings xmi:id="_YTzrdj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Z" command="_YQAJjT9AEemkJ6es1zdyvw"/>
  620. <bindings xmi:id="_YT0Sgz9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+N" command="_YQAJvD9AEemkJ6es1zdyvw"/>
  621. <bindings xmi:id="_YT0ShD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+O" command="_YQIFiT9AEemkJ6es1zdyvw"/>
  622. <bindings xmi:id="_YT0Sij9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+P" command="_YQDz5z9AEemkJ6es1zdyvw"/>
  623. <bindings xmi:id="_YT0SjD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+A" command="_YQD0Aj9AEemkJ6es1zdyvw"/>
  624. <bindings xmi:id="_YT05kT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+B" command="_YP402j9AEemkJ6es1zdyvw"/>
  625. <bindings xmi:id="_YT05kz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+R" command="_YP_iiT9AEemkJ6es1zdyvw"/>
  626. <bindings xmi:id="_YT1gqD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+S" command="_YQAJhD9AEemkJ6es1zdyvw"/>
  627. <bindings xmi:id="_YT1grj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+T" command="_YQClxT9AEemkJ6es1zdyvw"/>
  628. <bindings xmi:id="_YT2Hsz9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+E" command="_YP5b2j9AEemkJ6es1zdyvw"/>
  629. <bindings xmi:id="_YT2uwj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+V" command="_YP-UYz9AEemkJ6es1zdyvw"/>
  630. <bindings xmi:id="_YT2uxj9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+G" command="_YQIslj9AEemkJ6es1zdyvw"/>
  631. <bindings xmi:id="_YT2uyT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+W" command="_YQIsej9AEemkJ6es1zdyvw"/>
  632. <bindings xmi:id="_YT2uyz9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+H" command="_YP2_pT9AEemkJ6es1zdyvw"/>
  633. <bindings xmi:id="_YT3V3D9AEemkJ6es1zdyvw" keySequence="ALT+CR" command="_YQFCBT9AEemkJ6es1zdyvw"/>
  634. <bindings xmi:id="_YT3V3z9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+D A" command="_YQFpFz9AEemkJ6es1zdyvw"/>
  635. <bindings xmi:id="_YT4j8D9AEemkJ6es1zdyvw" keySequence="CTRL+_" command="_YP7RFD9AEemkJ6es1zdyvw">
  636. <parameters xmi:id="_YT4j8T9AEemkJ6es1zdyvw" elementId="Splitter.isHorizontal" name="Splitter.isHorizontal" value="true"/>
  637. </bindings>
  638. <bindings xmi:id="_YT4j8j9AEemkJ6es1zdyvw" keySequence="CTRL+P" command="_YQG3ND9AEemkJ6es1zdyvw"/>
  639. <bindings xmi:id="_YT4j8z9AEemkJ6es1zdyvw" keySequence="CTRL+Q" command="_YQHeRD9AEemkJ6es1zdyvw"/>
  640. <bindings xmi:id="_YT4j9T9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+B" command="_YQDz-T9AEemkJ6es1zdyvw"/>
  641. <bindings xmi:id="_YT5LAj9AEemkJ6es1zdyvw" keySequence="CTRL+S" command="_YP-UVD9AEemkJ6es1zdyvw"/>
  642. <bindings xmi:id="_YT5LCT9AEemkJ6es1zdyvw" keySequence="CTRL+U" command="_YP_ieT9AEemkJ6es1zdyvw"/>
  643. <bindings xmi:id="_YT5LDj9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+G" command="_YQDNED9AEemkJ6es1zdyvw"/>
  644. <bindings xmi:id="_YT5LED9AEemkJ6es1zdyvw" keySequence="CTRL+W" command="_YP_ikj9AEemkJ6es1zdyvw"/>
  645. <bindings xmi:id="_YT5yED9AEemkJ6es1zdyvw" keySequence="CTRL+{" command="_YP7RFD9AEemkJ6es1zdyvw">
  646. <parameters xmi:id="_YT5yET9AEemkJ6es1zdyvw" elementId="Splitter.isHorizontal" name="Splitter.isHorizontal" value="false"/>
  647. </bindings>
  648. <bindings xmi:id="_YT5yEj9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+SHIFT+M" command="_YQIFgz9AEemkJ6es1zdyvw"/>
  649. <bindings xmi:id="_YT5yEz9AEemkJ6es1zdyvw" keySequence="CTRL+DEL" command="_YQIFYT9AEemkJ6es1zdyvw"/>
  650. <bindings xmi:id="_YT5yFT9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+SHIFT+A" command="_YQD0FD9AEemkJ6es1zdyvw"/>
  651. <bindings xmi:id="_YT5yGj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+E L" command="_YP2Yoz9AEemkJ6es1zdyvw"/>
  652. <bindings xmi:id="_YT5yHD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+E N" command="_YQIshz9AEemkJ6es1zdyvw"/>
  653. <bindings xmi:id="_YT6ZID9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+E P" command="_YP1KZz9AEemkJ6es1zdyvw"/>
  654. <bindings xmi:id="_YT6ZIT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+E R" command="_YP6C-D9AEemkJ6es1zdyvw"/>
  655. <bindings xmi:id="_YT6ZIz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+E E" command="_YP3mqD9AEemkJ6es1zdyvw"/>
  656. <bindings xmi:id="_YT6ZJD9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+SHIFT+T" command="_YP3moD9AEemkJ6es1zdyvw"/>
  657. <bindings xmi:id="_YT6ZJT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+E G" command="_YP8fLD9AEemkJ6es1zdyvw"/>
  658. <bindings xmi:id="_YT6ZJz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+E J" command="_YP2YmT9AEemkJ6es1zdyvw"/>
  659. <bindings xmi:id="_YT6ZKT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+E T" command="_YP2_sD9AEemkJ6es1zdyvw"/>
  660. <bindings xmi:id="_YT7AMD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+E S" command="_YP-7ZD9AEemkJ6es1zdyvw"/>
  661. <bindings xmi:id="_YT7AMT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q H" command="_YQDz8T9AEemkJ6es1zdyvw">
  662. <parameters xmi:id="_YT7AMj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.cheatsheets.views.CheatSheetView"/>
  663. </bindings>
  664. <bindings xmi:id="_YT7AMz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q J" command="_YQDz8T9AEemkJ6es1zdyvw">
  665. <parameters xmi:id="_YT7AND9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.JavadocView"/>
  666. </bindings>
  667. <bindings xmi:id="_YT7ANj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q L" command="_YQDz8T9AEemkJ6es1zdyvw">
  668. <parameters xmi:id="_YT7ANz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.pde.runtime.LogView"/>
  669. </bindings>
  670. <bindings xmi:id="_YT7AOD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q K" command="_YQDz8T9AEemkJ6es1zdyvw">
  671. <parameters xmi:id="_YT7AOT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.mylyn.tasks.ui.views.tasks"/>
  672. </bindings>
  673. <bindings xmi:id="_YT7AOj9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+SHIFT+ARROW_UP" command="_YQDM3D9AEemkJ6es1zdyvw"/>
  674. <bindings xmi:id="_YT7AOz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q B" command="_YQDz8T9AEemkJ6es1zdyvw">
  675. <parameters xmi:id="_YT7APD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.debug.ui.BreakpointView"/>
  676. </bindings>
  677. <bindings xmi:id="_YT7nQD9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+SHIFT+ARROW_DOWN" command="_YQJTeD9AEemkJ6es1zdyvw"/>
  678. <bindings xmi:id="_YT7nQj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q D" command="_YQDz8T9AEemkJ6es1zdyvw">
  679. <parameters xmi:id="_YT7nQz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.SourceView"/>
  680. </bindings>
  681. <bindings xmi:id="_YT7nRT9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+SHIFT+ARROW_RIGHT" command="_YQCl6D9AEemkJ6es1zdyvw"/>
  682. <bindings xmi:id="_YT7nRz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q C" command="_YQDz8T9AEemkJ6es1zdyvw">
  683. <parameters xmi:id="_YT7nSD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.console.ConsoleView"/>
  684. </bindings>
  685. <bindings xmi:id="_YT7nSj9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+SHIFT+F12" command="_YQIsaj9AEemkJ6es1zdyvw"/>
  686. <bindings xmi:id="_YT8OUD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+NUMPAD_MULTIPLY" command="_YQDM9T9AEemkJ6es1zdyvw"/>
  687. <bindings xmi:id="_YT8OVz9AEemkJ6es1zdyvw" keySequence="CTRL+F4" command="_YP_ikj9AEemkJ6es1zdyvw"/>
  688. <bindings xmi:id="_YT8OXT9AEemkJ6es1zdyvw" keySequence="CTRL+F6" command="_YP40yD9AEemkJ6es1zdyvw"/>
  689. <bindings xmi:id="_YT8OXj9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+NUMPAD_DIVIDE" command="_YP7RFz9AEemkJ6es1zdyvw"/>
  690. <bindings xmi:id="_YT81aT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F7" command="_YQIFhD9AEemkJ6es1zdyvw"/>
  691. <bindings xmi:id="_YT81bj9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F8" command="_YP7REz9AEemkJ6es1zdyvw"/>
  692. <bindings xmi:id="_YT81cD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F9" command="_YP-Ucj9AEemkJ6es1zdyvw"/>
  693. <bindings xmi:id="_YT9cdD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F11" command="_YQAJiT9AEemkJ6es1zdyvw"/>
  694. <bindings xmi:id="_YT9cej9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F12" command="_YP1xjT9AEemkJ6es1zdyvw"/>
  695. <bindings xmi:id="_YT9cez9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q X" command="_YQDz8T9AEemkJ6es1zdyvw">
  696. <parameters xmi:id="_YT9cfD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.views.ProblemView"/>
  697. </bindings>
  698. <bindings xmi:id="_YT9cfj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q Z" command="_YQDz8T9AEemkJ6es1zdyvw">
  699. <parameters xmi:id="_YT9cfz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.team.ui.GenericHistoryView"/>
  700. </bindings>
  701. <bindings xmi:id="_YT-DgD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q Y" command="_YQDz8T9AEemkJ6es1zdyvw">
  702. <parameters xmi:id="_YT-DgT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.team.sync.views.SynchronizeView"/>
  703. </bindings>
  704. <bindings xmi:id="_YT-DhD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F4" command="_YP8fIz9AEemkJ6es1zdyvw"/>
  705. <bindings xmi:id="_YT-Dij9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F6" command="_YQDNAT9AEemkJ6es1zdyvw"/>
  706. <bindings xmi:id="_YT-DjD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+F7" command="_YQD0GD9AEemkJ6es1zdyvw"/>
  707. <bindings xmi:id="_YT-DjT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q P" command="_YQDz8T9AEemkJ6es1zdyvw">
  708. <parameters xmi:id="_YT-Djj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.PackageExplorer"/>
  709. </bindings>
  710. <bindings xmi:id="_YT-qkT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q O" command="_YQDz8T9AEemkJ6es1zdyvw">
  711. <parameters xmi:id="_YT-qkj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.ui.views.ContentOutline"/>
  712. </bindings>
  713. <bindings xmi:id="_YT-qmT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q Q" command="_YQDz8T9AEemkJ6es1zdyvw"/>
  714. <bindings xmi:id="_YT-qnD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q T" command="_YQDz8T9AEemkJ6es1zdyvw">
  715. <parameters xmi:id="_YT-qnT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.jdt.ui.TypeHierarchy"/>
  716. </bindings>
  717. <bindings xmi:id="_YT_RoD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q S" command="_YQDz8T9AEemkJ6es1zdyvw">
  718. <parameters xmi:id="_YT_RoT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.search.ui.views.SearchView"/>
  719. </bindings>
  720. <bindings xmi:id="_YT_Roj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q V" command="_YQDz8T9AEemkJ6es1zdyvw">
  721. <parameters xmi:id="_YT_Roz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.showView.viewId" name="org.eclipse.ui.views.showView.viewId" value="org.eclipse.debug.ui.VariableView"/>
  722. </bindings>
  723. <bindings xmi:id="_YT_Rpz9AEemkJ6es1zdyvw" keySequence="CTRL+F7" command="_YQAJoz9AEemkJ6es1zdyvw"/>
  724. <bindings xmi:id="_YT_RqD9AEemkJ6es1zdyvw" keySequence="CTRL+F8" command="_YP6p_T9AEemkJ6es1zdyvw"/>
  725. <bindings xmi:id="_YT_Rqj9AEemkJ6es1zdyvw" keySequence="CTRL+F9" command="_YP5b3j9AEemkJ6es1zdyvw"/>
  726. <bindings xmi:id="_YT_4sz9AEemkJ6es1zdyvw" keySequence="CTRL+F11" command="_YQHeYD9AEemkJ6es1zdyvw"/>
  727. <bindings xmi:id="_YT_4tj9AEemkJ6es1zdyvw" keySequence="CTRL+F12" command="_YP403T9AEemkJ6es1zdyvw"/>
  728. <bindings xmi:id="_iP76ICfvEeq9j5-P04oEqA" keySequence="ALT+CTRL+SHIFT+L" command="_iPMTQifvEeq9j5-P04oEqA"/>
  729. </bindingTables>
  730. <bindingTables xmi:id="_YTdGJD9AEemkJ6es1zdyvw" elementId="org.eclipse.ant.ui.AntEditorScope" bindingContext="_YQOzHD9AEemkJ6es1zdyvw">
  731. <bindings xmi:id="_YTdGJT9AEemkJ6es1zdyvw" keySequence="F3" command="_YP1xfz9AEemkJ6es1zdyvw"/>
  732. <bindings xmi:id="_YThXlj9AEemkJ6es1zdyvw" keySequence="SHIFT+F2" command="_YQCl2D9AEemkJ6es1zdyvw"/>
  733. <bindings xmi:id="_YTuy9z9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+O" command="_YP1xdz9AEemkJ6es1zdyvw"/>
  734. <bindings xmi:id="_YT05kj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+R" command="_YP2_lj9AEemkJ6es1zdyvw"/>
  735. <bindings xmi:id="_YT2HtT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F" command="_YQIFaj9AEemkJ6es1zdyvw"/>
  736. </bindingTables>
  737. <bindingTables xmi:id="_YTdGJz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.genericeditor.genericEditorContext" bindingContext="_YQPaFT9AEemkJ6es1zdyvw">
  738. <bindings xmi:id="_YTdGKD9AEemkJ6es1zdyvw" keySequence="F3" command="_YQHeRT9AEemkJ6es1zdyvw"/>
  739. <bindings xmi:id="_YT2uxz9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+G" command="_YQHeWT9AEemkJ6es1zdyvw"/>
  740. </bindingTables>
  741. <bindingTables xmi:id="_YTdGKT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.javascriptViewScope" bindingContext="_YQPaJj9AEemkJ6es1zdyvw">
  742. <bindings xmi:id="_YTdGKj9AEemkJ6es1zdyvw" keySequence="F3" command="_YQEa8T9AEemkJ6es1zdyvw"/>
  743. <bindings xmi:id="_YTdGMT9AEemkJ6es1zdyvw" keySequence="F4" command="_YP-7dT9AEemkJ6es1zdyvw"/>
  744. <bindings xmi:id="_YThXmD9AEemkJ6es1zdyvw" keySequence="SHIFT+F2" command="_YQFCLz9AEemkJ6es1zdyvw"/>
  745. <bindings xmi:id="_YTtk1z9AEemkJ6es1zdyvw" keySequence="CTRL+G" command="_YQDz_z9AEemkJ6es1zdyvw"/>
  746. <bindings xmi:id="_YTuL4z9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+I" command="_YQCl1T9AEemkJ6es1zdyvw"/>
  747. <bindings xmi:id="_YTuL5z9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+J" command="_YQDM3T9AEemkJ6es1zdyvw"/>
  748. <bindings xmi:id="_YTuy8D9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+L" command="_YP-7hj9AEemkJ6es1zdyvw"/>
  749. <bindings xmi:id="_YTuy9T9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+M" command="_YQHeXD9AEemkJ6es1zdyvw"/>
  750. <bindings xmi:id="_YTx2SD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+C" command="_YP7RBT9AEemkJ6es1zdyvw"/>
  751. <bindings xmi:id="_YTydWD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+U" command="_YP6C7j9AEemkJ6es1zdyvw"/>
  752. <bindings xmi:id="_YTzrcD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+H" command="_YQJTmD9AEemkJ6es1zdyvw"/>
  753. <bindings xmi:id="_YTzrdz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Z" command="_YP-UdD9AEemkJ6es1zdyvw"/>
  754. <bindings xmi:id="_YT0Shz9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+O" command="_YP4Nsj9AEemkJ6es1zdyvw"/>
  755. <bindings xmi:id="_YT05lz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+R" command="_YQDM-z9AEemkJ6es1zdyvw"/>
  756. <bindings xmi:id="_YT1gqj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+S" command="_YQDM8T9AEemkJ6es1zdyvw"/>
  757. <bindings xmi:id="_YT1grz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+T" command="_YP401j9AEemkJ6es1zdyvw"/>
  758. <bindings xmi:id="_YT2uxD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+V" command="_YP6C8T9AEemkJ6es1zdyvw"/>
  759. <bindings xmi:id="_YT2uyD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+G" command="_YQClyT9AEemkJ6es1zdyvw"/>
  760. <bindings xmi:id="_YT3V0D9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+H" command="_YQFCDj9AEemkJ6es1zdyvw"/>
  761. <bindings xmi:id="_YT7ANT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q J" command="_YQIFUj9AEemkJ6es1zdyvw"/>
  762. <bindings xmi:id="_YT7nRD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q D" command="_YQD0Ej9AEemkJ6es1zdyvw"/>
  763. <bindings xmi:id="_YT-qkD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q P" command="_YQDNCD9AEemkJ6es1zdyvw"/>
  764. <bindings xmi:id="_YT-qnj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+Q T" command="_YQDM2D9AEemkJ6es1zdyvw"/>
  765. </bindingTables>
  766. <bindingTables xmi:id="_YTdGKz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.ui.structuredTextEditorScope" bindingContext="_YQOzED9AEemkJ6es1zdyvw">
  767. <bindings xmi:id="_YTdGLD9AEemkJ6es1zdyvw" keySequence="F3" command="_YQClwD9AEemkJ6es1zdyvw"/>
  768. <bindings xmi:id="_YToFSD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+/" command="_YQAJuT9AEemkJ6es1zdyvw"/>
  769. <bindings xmi:id="_YTrIlj9AEemkJ6es1zdyvw" keySequence="CTRL+I" command="_YQG3OD9AEemkJ6es1zdyvw"/>
  770. <bindings xmi:id="_YTrvsD9AEemkJ6es1zdyvw" keySequence="CTRL+O" command="_YQCl1D9AEemkJ6es1zdyvw"/>
  771. <bindings xmi:id="_YTuL6z9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+\" command="_YQDz4D9AEemkJ6es1zdyvw"/>
  772. <bindings xmi:id="_YTvaBj9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+P" command="_YQClxD9AEemkJ6es1zdyvw"/>
  773. <bindings xmi:id="_YT0SjT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+A" command="_YQJTlT9AEemkJ6es1zdyvw"/>
  774. <bindings xmi:id="_YT1gpD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+C" command="_YQIFZz9AEemkJ6es1zdyvw"/>
  775. <bindings xmi:id="_YT2HuT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F" command="_YQIslz9AEemkJ6es1zdyvw"/>
  776. <bindings xmi:id="_YT384D9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+>" command="_YQFpGD9AEemkJ6es1zdyvw"/>
  777. <bindings xmi:id="_YT81bT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+ARROW_UP" command="_YQD0DD9AEemkJ6es1zdyvw"/>
  778. <bindings xmi:id="_YT81dD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+ARROW_DOWN" command="_YQEa-T9AEemkJ6es1zdyvw"/>
  779. <bindings xmi:id="_YT9ccz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+ARROW_LEFT" command="_YP2_oj9AEemkJ6es1zdyvw"/>
  780. <bindings xmi:id="_YT9ceD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+ARROW_RIGHT" command="_YQDM5T9AEemkJ6es1zdyvw"/>
  781. <bindings xmi:id="_YT-qlT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+ARROW_UP" command="_YP5b8j9AEemkJ6es1zdyvw"/>
  782. <bindings xmi:id="_YT-qmD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+ARROW_DOWN" command="_YP-7hT9AEemkJ6es1zdyvw"/>
  783. </bindingTables>
  784. <bindingTables xmi:id="_YTdGLT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.perspective" bindingContext="_YQPaKT9AEemkJ6es1zdyvw"/>
  785. <bindingTables xmi:id="_YTdtMD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.context.navigator" bindingContext="_YQOzBT9AEemkJ6es1zdyvw"/>
  786. <bindingTables xmi:id="_YTdtMj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.script.focused" bindingContext="_YQOzDj9AEemkJ6es1zdyvw"/>
  787. <bindingTables xmi:id="_YTdtND9AEemkJ6es1zdyvw" elementId="org.eclipse.buildship.ui.contexts.taskview" bindingContext="_YQPaJz9AEemkJ6es1zdyvw">
  788. <bindings xmi:id="_YTdtNT9AEemkJ6es1zdyvw" keySequence="F5" command="_YQIFZj9AEemkJ6es1zdyvw"/>
  789. </bindingTables>
  790. <bindingTables xmi:id="_YTdtNj9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.debugging" bindingContext="_YQPaGD9AEemkJ6es1zdyvw">
  791. <bindings xmi:id="_YTdtNz9AEemkJ6es1zdyvw" keySequence="F5" command="_YP2_nj9AEemkJ6es1zdyvw"/>
  792. <bindings xmi:id="_YTdtOT9AEemkJ6es1zdyvw" keySequence="F6" command="_YP-UaD9AEemkJ6es1zdyvw"/>
  793. <bindings xmi:id="_YTiltD9AEemkJ6es1zdyvw" keySequence="F7" command="_YQIsiD9AEemkJ6es1zdyvw"/>
  794. <bindings xmi:id="_YTka4D9AEemkJ6es1zdyvw" keySequence="F8" command="_YQCl5D9AEemkJ6es1zdyvw"/>
  795. <bindings xmi:id="_YT4j9j9AEemkJ6es1zdyvw" keySequence="CTRL+R" command="_YQAJpz9AEemkJ6es1zdyvw"/>
  796. <bindings xmi:id="_YT5LAT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+3" command="_YP2_mT9AEemkJ6es1zdyvw"/>
  797. <bindings xmi:id="_YT8OUj9AEemkJ6es1zdyvw" keySequence="CTRL+F2" command="_YQFCKj9AEemkJ6es1zdyvw"/>
  798. <bindings xmi:id="_YT8OWD9AEemkJ6es1zdyvw" keySequence="CTRL+F5" command="_YQIFeT9AEemkJ6es1zdyvw"/>
  799. </bindingTables>
  800. <bindingTables xmi:id="_YThXkz9AEemkJ6es1zdyvw" elementId="org.eclipse.tm.terminal.EditContext" bindingContext="_YQOzAD9AEemkJ6es1zdyvw">
  801. <bindings xmi:id="_YThXlD9AEemkJ6es1zdyvw" keySequence="SHIFT+INSERT" command="_YP9tTT9AEemkJ6es1zdyvw"/>
  802. <bindings xmi:id="_YTka4j9AEemkJ6es1zdyvw" keySequence="ALT+ARROW_UP" command="_YP1KaD9AEemkJ6es1zdyvw"/>
  803. <bindings xmi:id="_YTlpAD9AEemkJ6es1zdyvw" keySequence="ALT+ARROW_RIGHT" command="_YQIFfj9AEemkJ6es1zdyvw"/>
  804. <bindings xmi:id="_YTzEYD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+V" command="_YP9tTT9AEemkJ6es1zdyvw"/>
  805. <bindings xmi:id="_YT1goj9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+C" command="_YQEbIT9AEemkJ6es1zdyvw"/>
  806. <bindings xmi:id="_YT7nTD9AEemkJ6es1zdyvw" keySequence="CTRL+INSERT" command="_YQEbIT9AEemkJ6es1zdyvw"/>
  807. </bindingTables>
  808. <bindingTables xmi:id="_YTilsT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.context.resultset.focused" bindingContext="_YQPaFz9AEemkJ6es1zdyvw"/>
  809. <bindingTables xmi:id="_YTiltT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.context.resultset" bindingContext="_YQOzFz9AEemkJ6es1zdyvw"/>
  810. <bindingTables xmi:id="_YTmQED9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.context.resultset.edit" bindingContext="_YQOzGD9AEemkJ6es1zdyvw"/>
  811. <bindingTables xmi:id="_YTneMD9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.SQLEditorScope" bindingContext="_YQOzCj9AEemkJ6es1zdyvw">
  812. <bindings xmi:id="_YTneMT9AEemkJ6es1zdyvw" keySequence="ALT+X" command="_YQJTiD9AEemkJ6es1zdyvw"/>
  813. <bindings xmi:id="_YTosUj9AEemkJ6es1zdyvw" keySequence="ALT+Q" command="_YQGQJj9AEemkJ6es1zdyvw"/>
  814. <bindings xmi:id="_YTosVD9AEemkJ6es1zdyvw" keySequence="ALT+S" command="_YP-7cD9AEemkJ6es1zdyvw"/>
  815. <bindings xmi:id="_YTp6cz9AEemkJ6es1zdyvw" keySequence="CTRL+/" command="_YP1xhz9AEemkJ6es1zdyvw"/>
  816. <bindings xmi:id="_YTqhhT9AEemkJ6es1zdyvw" keySequence="ALT+C" command="_YP6qET9AEemkJ6es1zdyvw"/>
  817. <bindings xmi:id="_YTrIkT9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+X" command="_YP_iiD9AEemkJ6es1zdyvw"/>
  818. <bindings xmi:id="_YTs9xD9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+R" command="_YQHeXz9AEemkJ6es1zdyvw"/>
  819. <bindings xmi:id="_YTvaAT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+P" command="_YQEbDj9AEemkJ6es1zdyvw"/>
  820. <bindings xmi:id="_YT5LBz9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+D" command="_YP74GD9AEemkJ6es1zdyvw"/>
  821. </bindingTables>
  822. <bindingTables xmi:id="_YTneND9AEemkJ6es1zdyvw" elementId="org.eclipse.tm.terminal.TerminalContext" bindingContext="_YQPaHj9AEemkJ6es1zdyvw">
  823. <bindings xmi:id="_YTneNT9AEemkJ6es1zdyvw" keySequence="ALT+Y" command="_YQAJtz9AEemkJ6es1zdyvw"/>
  824. <bindings xmi:id="_YTosUT9AEemkJ6es1zdyvw" keySequence="ALT+P" command="_YQAJtz9AEemkJ6es1zdyvw"/>
  825. <bindings xmi:id="_YTosUz9AEemkJ6es1zdyvw" keySequence="ALT+R" command="_YQAJtz9AEemkJ6es1zdyvw"/>
  826. <bindings xmi:id="_YTosVT9AEemkJ6es1zdyvw" keySequence="ALT+S" command="_YQAJtz9AEemkJ6es1zdyvw"/>
  827. <bindings xmi:id="_YTosVj9AEemkJ6es1zdyvw" keySequence="ALT+T" command="_YQAJtz9AEemkJ6es1zdyvw"/>
  828. <bindings xmi:id="_YTpTYT9AEemkJ6es1zdyvw" keySequence="ALT+V" command="_YQAJtz9AEemkJ6es1zdyvw"/>
  829. <bindings xmi:id="_YTpTYj9AEemkJ6es1zdyvw" keySequence="ALT+W" command="_YQAJtz9AEemkJ6es1zdyvw"/>
  830. <bindings xmi:id="_YTp6gD9AEemkJ6es1zdyvw" keySequence="ALT+H" command="_YQAJtz9AEemkJ6es1zdyvw"/>
  831. <bindings xmi:id="_YTqhgD9AEemkJ6es1zdyvw" keySequence="ALT+L" command="_YQAJtz9AEemkJ6es1zdyvw"/>
  832. <bindings xmi:id="_YTqhgT9AEemkJ6es1zdyvw" keySequence="ALT+N" command="_YQAJtz9AEemkJ6es1zdyvw"/>
  833. <bindings xmi:id="_YTqhgj9AEemkJ6es1zdyvw" keySequence="ALT+A" command="_YQAJtz9AEemkJ6es1zdyvw"/>
  834. <bindings xmi:id="_YTqhgz9AEemkJ6es1zdyvw" keySequence="ALT+B" command="_YQAJtz9AEemkJ6es1zdyvw"/>
  835. <bindings xmi:id="_YTqhhj9AEemkJ6es1zdyvw" keySequence="ALT+C" command="_YQAJtz9AEemkJ6es1zdyvw"/>
  836. <bindings xmi:id="_YTqhhz9AEemkJ6es1zdyvw" keySequence="ALT+D" command="_YQAJtz9AEemkJ6es1zdyvw"/>
  837. <bindings xmi:id="_YTqhiD9AEemkJ6es1zdyvw" keySequence="ALT+E" command="_YQAJtz9AEemkJ6es1zdyvw"/>
  838. <bindings xmi:id="_YTqhiT9AEemkJ6es1zdyvw" keySequence="ALT+F" command="_YQAJtz9AEemkJ6es1zdyvw"/>
  839. <bindings xmi:id="_YTrIkD9AEemkJ6es1zdyvw" keySequence="ALT+G" command="_YQAJtz9AEemkJ6es1zdyvw"/>
  840. </bindingTables>
  841. <bindingTables xmi:id="_YTneNj9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.memory.abstractasynctablerendering" bindingContext="_YQPaGT9AEemkJ6es1zdyvw">
  842. <bindings xmi:id="_YTneNz9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+," command="_YQHeST9AEemkJ6es1zdyvw"/>
  843. <bindings xmi:id="_YToFQj9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+." command="_YQFCEz9AEemkJ6es1zdyvw"/>
  844. <bindings xmi:id="_YTtk1T9AEemkJ6es1zdyvw" keySequence="CTRL+G" command="_YQFCFD9AEemkJ6es1zdyvw"/>
  845. </bindingTables>
  846. <bindingTables xmi:id="_YTneOj9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.BreakpointView" bindingContext="_YQOzAT9AEemkJ6es1zdyvw">
  847. <bindings xmi:id="_YTneOz9AEemkJ6es1zdyvw" keySequence="CTRL+CR" command="_YP2_rz9AEemkJ6es1zdyvw"/>
  848. <bindings xmi:id="_YT3V2z9AEemkJ6es1zdyvw" keySequence="ALT+CR" command="_YQAJkj9AEemkJ6es1zdyvw"/>
  849. </bindingTables>
  850. <bindingTables xmi:id="_YToFRD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.javaEditorScope" bindingContext="_YQOzDT9AEemkJ6es1zdyvw">
  851. <bindings xmi:id="_YToFRT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+/" command="_YP_iez9AEemkJ6es1zdyvw"/>
  852. <bindings xmi:id="_YTp6dD9AEemkJ6es1zdyvw" keySequence="CTRL+/" command="_YQBXoD9AEemkJ6es1zdyvw"/>
  853. <bindings xmi:id="_YTrIlD9AEemkJ6es1zdyvw" keySequence="CTRL+I" command="_YP9GMD9AEemkJ6es1zdyvw"/>
  854. <bindings xmi:id="_YTrvqD9AEemkJ6es1zdyvw" keySequence="CTRL+O" command="_YP-7Zj9AEemkJ6es1zdyvw"/>
  855. <bindings xmi:id="_YTuL6T9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+\" command="_YP4Nsz9AEemkJ6es1zdyvw"/>
  856. <bindings xmi:id="_YTuy-D9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+O" command="_YP74JD9AEemkJ6es1zdyvw"/>
  857. <bindings xmi:id="_YTvaAj9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+P" command="_YQD0Fz9AEemkJ6es1zdyvw"/>
  858. <bindings xmi:id="_YTxPMT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+B" command="_YQJTgT9AEemkJ6es1zdyvw"/>
  859. <bindings xmi:id="_YTydUD9AEemkJ6es1zdyvw" keySequence="CTRL+2 R" command="_YQFCCT9AEemkJ6es1zdyvw"/>
  860. <bindings xmi:id="_YTzEZT9AEemkJ6es1zdyvw" keySequence="CTRL+7" command="_YQBXoD9AEemkJ6es1zdyvw"/>
  861. <bindings xmi:id="_YTzrfD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+M" command="_YP6qBz9AEemkJ6es1zdyvw"/>
  862. <bindings xmi:id="_YT1goD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+C" command="_YQBXoD9AEemkJ6es1zdyvw"/>
  863. <bindings xmi:id="_YT1gsD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+U" command="_YQEbGD9AEemkJ6es1zdyvw"/>
  864. <bindings xmi:id="_YT2Htj9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F" command="_YQIFaj9AEemkJ6es1zdyvw"/>
  865. <bindings xmi:id="_YT5LBT9AEemkJ6es1zdyvw" keySequence="CTRL+T" command="_YQClwT9AEemkJ6es1zdyvw"/>
  866. <bindings xmi:id="_YT8OVD9AEemkJ6es1zdyvw" keySequence="CTRL+F3" command="_YQIsfT9AEemkJ6es1zdyvw"/>
  867. <bindings xmi:id="_YT81aj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+ARROW_UP" command="_YP-7fT9AEemkJ6es1zdyvw"/>
  868. <bindings xmi:id="_YT81cT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+ARROW_DOWN" command="_YP403z9AEemkJ6es1zdyvw"/>
  869. <bindings xmi:id="_YT9ccT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+ARROW_LEFT" command="_YP9GPD9AEemkJ6es1zdyvw"/>
  870. <bindings xmi:id="_YT9cdj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+ARROW_RIGHT" command="_YP3muz9AEemkJ6es1zdyvw"/>
  871. <bindings xmi:id="_YT-Dgz9AEemkJ6es1zdyvw" keySequence="CTRL+2 M" command="_YP9GQT9AEemkJ6es1zdyvw"/>
  872. <bindings xmi:id="_YT-Dhj9AEemkJ6es1zdyvw" keySequence="CTRL+2 L" command="_YP3mrz9AEemkJ6es1zdyvw"/>
  873. <bindings xmi:id="_YT-qkz9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+ARROW_UP" command="_YP_ilD9AEemkJ6es1zdyvw"/>
  874. <bindings xmi:id="_YT-qlj9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+ARROW_DOWN" command="_YP-7aD9AEemkJ6es1zdyvw"/>
  875. <bindings xmi:id="_YT_RpD9AEemkJ6es1zdyvw" keySequence="CTRL+2 F" command="_YQIsZj9AEemkJ6es1zdyvw"/>
  876. <bindings xmi:id="_iQD18CfvEeq9j5-P04oEqA" keySequence="CTRL+SHIFT+'" command="_iPMTQSfvEeq9j5-P04oEqA"/>
  877. </bindingTables>
  878. <bindingTables xmi:id="_YToFRj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.javaEditorScope" bindingContext="_YQOzAz9AEemkJ6es1zdyvw">
  879. <bindings xmi:id="_YToFRz9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+/" command="_YP-7hD9AEemkJ6es1zdyvw"/>
  880. <bindings xmi:id="_YTp6dz9AEemkJ6es1zdyvw" keySequence="CTRL+/" command="_YQCl5z9AEemkJ6es1zdyvw"/>
  881. <bindings xmi:id="_YTrIlT9AEemkJ6es1zdyvw" keySequence="CTRL+I" command="_YP-UZT9AEemkJ6es1zdyvw"/>
  882. <bindings xmi:id="_YTrvrz9AEemkJ6es1zdyvw" keySequence="CTRL+O" command="_YP1xmD9AEemkJ6es1zdyvw"/>
  883. <bindings xmi:id="_YTuL6j9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+\" command="_YP40zj9AEemkJ6es1zdyvw"/>
  884. <bindings xmi:id="_YTuy-T9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+O" command="_YP9tRT9AEemkJ6es1zdyvw"/>
  885. <bindings xmi:id="_YTvaBT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+P" command="_YQDM-D9AEemkJ6es1zdyvw"/>
  886. <bindings xmi:id="_YTydUT9AEemkJ6es1zdyvw" keySequence="CTRL+2 R" command="_YP6qCj9AEemkJ6es1zdyvw"/>
  887. <bindings xmi:id="_YTydVD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+T" command="_YP-7hz9AEemkJ6es1zdyvw"/>
  888. <bindings xmi:id="_YTydVj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+E" command="_YQAJjD9AEemkJ6es1zdyvw"/>
  889. <bindings xmi:id="_YTzEZz9AEemkJ6es1zdyvw" keySequence="CTRL+7" command="_YQCl5z9AEemkJ6es1zdyvw"/>
  890. <bindings xmi:id="_YT0SgD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+M" command="_YP2_qT9AEemkJ6es1zdyvw"/>
  891. <bindings xmi:id="_YT1goz9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+C" command="_YQCl5z9AEemkJ6es1zdyvw"/>
  892. <bindings xmi:id="_YT2Hsj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+U" command="_YP8fIj9AEemkJ6es1zdyvw"/>
  893. <bindings xmi:id="_YT2HuD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F" command="_YP3mtT9AEemkJ6es1zdyvw"/>
  894. <bindings xmi:id="_YT5LBj9AEemkJ6es1zdyvw" keySequence="CTRL+T" command="_YQDM3j9AEemkJ6es1zdyvw"/>
  895. <bindings xmi:id="_YT8OVT9AEemkJ6es1zdyvw" keySequence="CTRL+F3" command="_YQAJqD9AEemkJ6es1zdyvw"/>
  896. <bindings xmi:id="_YT81bD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+ARROW_UP" command="_YP2_kj9AEemkJ6es1zdyvw"/>
  897. <bindings xmi:id="_YT81cz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+ARROW_DOWN" command="_YQEbFT9AEemkJ6es1zdyvw"/>
  898. <bindings xmi:id="_YT9ccj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+ARROW_LEFT" command="_YQIFbD9AEemkJ6es1zdyvw"/>
  899. <bindings xmi:id="_YT9cdz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+ARROW_RIGHT" command="_YQDz7T9AEemkJ6es1zdyvw"/>
  900. <bindings xmi:id="_YT-Dhz9AEemkJ6es1zdyvw" keySequence="CTRL+2 L" command="_YQIsfz9AEemkJ6es1zdyvw"/>
  901. <bindings xmi:id="_YT-qlD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+ARROW_UP" command="_YQJTnj9AEemkJ6es1zdyvw"/>
  902. <bindings xmi:id="_YT-qlz9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+ARROW_DOWN" command="_YP5b4T9AEemkJ6es1zdyvw"/>
  903. <bindings xmi:id="_YT_RpT9AEemkJ6es1zdyvw" keySequence="CTRL+2 F" command="_YP9tUD9AEemkJ6es1zdyvw"/>
  904. </bindingTables>
  905. <bindingTables xmi:id="_YToFST9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql" bindingContext="_YQOzBD9AEemkJ6es1zdyvw"/>
  906. <bindingTables xmi:id="_YTpTYz9AEemkJ6es1zdyvw" elementId="com.genuitec.eclipse.inlinesearch.context" bindingContext="_YQOzIz9AEemkJ6es1zdyvw">
  907. <bindings xmi:id="_YTpTZD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+CR" command="_YP74Gz9AEemkJ6es1zdyvw"/>
  908. <bindings xmi:id="_YTs9wT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+1" command="_YQDNBD9AEemkJ6es1zdyvw"/>
  909. <bindings xmi:id="_YT8OYT9AEemkJ6es1zdyvw" keySequence="CTRL+ARROW_UP" command="_YQIFXz9AEemkJ6es1zdyvw"/>
  910. <bindings xmi:id="_YT8OYz9AEemkJ6es1zdyvw" keySequence="CTRL+ARROW_DOWN" command="_YQAJnz9AEemkJ6es1zdyvw"/>
  911. <bindings xmi:id="_OE19oEvkEemRUu80Py4P3w" keySequence="CTRL+BS" command="_OB6lcEvkEemRUu80Py4P3w"/>
  912. <bindings xmi:id="_OFRbcEvkEemRUu80Py4P3w" keySequence="CTRL+DEL" command="_OB6lcUvkEemRUu80Py4P3w"/>
  913. </bindingTables>
  914. <bindingTables xmi:id="_YTp6dT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.propertiesEditorScope" bindingContext="_YQPaLD9AEemkJ6es1zdyvw">
  915. <bindings xmi:id="_YTp6dj9AEemkJ6es1zdyvw" keySequence="CTRL+/" command="_YQBXoD9AEemkJ6es1zdyvw"/>
  916. <bindings xmi:id="_YTzEZj9AEemkJ6es1zdyvw" keySequence="CTRL+7" command="_YQBXoD9AEemkJ6es1zdyvw"/>
  917. <bindings xmi:id="_YT1goT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+C" command="_YQBXoD9AEemkJ6es1zdyvw"/>
  918. </bindingTables>
  919. <bindingTables xmi:id="_YTp6eD9AEemkJ6es1zdyvw" elementId="org.dadacoalition.yedit.yeditScope" bindingContext="_YQPaKD9AEemkJ6es1zdyvw">
  920. <bindings xmi:id="_YTp6eT9AEemkJ6es1zdyvw" keySequence="CTRL+/" command="_YP1xkD9AEemkJ6es1zdyvw"/>
  921. <bindings xmi:id="_YT1gpT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+C" command="_YP1xkD9AEemkJ6es1zdyvw"/>
  922. <bindings xmi:id="_YT2Huj9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F" command="_YQIFWj9AEemkJ6es1zdyvw"/>
  923. </bindingTables>
  924. <bindingTables xmi:id="_YTp6fj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.script" bindingContext="_YQOzCT9AEemkJ6es1zdyvw"/>
  925. <bindingTables xmi:id="_YTrvpT9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.memoryview" bindingContext="_YQOzCD9AEemkJ6es1zdyvw">
  926. <bindings xmi:id="_YTrvpj9AEemkJ6es1zdyvw" keySequence="CTRL+N" command="_YQDNCj9AEemkJ6es1zdyvw"/>
  927. <bindings xmi:id="_YT3V2j9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+M" command="_YP-UeT9AEemkJ6es1zdyvw"/>
  928. <bindings xmi:id="_YT3V3j9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+N" command="_YQIsaz9AEemkJ6es1zdyvw"/>
  929. <bindings xmi:id="_YT5LBD9AEemkJ6es1zdyvw" keySequence="CTRL+T" command="_YP6qCz9AEemkJ6es1zdyvw"/>
  930. <bindings xmi:id="_YT5LDz9AEemkJ6es1zdyvw" keySequence="CTRL+W" command="_YQDM0D9AEemkJ6es1zdyvw"/>
  931. </bindingTables>
  932. <bindingTables xmi:id="_YTrvqT9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.editors.task" bindingContext="_YQPaIz9AEemkJ6es1zdyvw">
  933. <bindings xmi:id="_YTrvqj9AEemkJ6es1zdyvw" keySequence="CTRL+O" command="_YQIsdD9AEemkJ6es1zdyvw"/>
  934. <bindings xmi:id="_YTuL4j9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+I" command="_YP-UUz9AEemkJ6es1zdyvw"/>
  935. <bindings xmi:id="_YTx2Rz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+C" command="_YQAJgj9AEemkJ6es1zdyvw"/>
  936. <bindings xmi:id="_YTzrfz9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+M" command="_YP1xlj9AEemkJ6es1zdyvw"/>
  937. <bindings xmi:id="_YT05lj9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+R" command="_YP-UYj9AEemkJ6es1zdyvw"/>
  938. <bindings xmi:id="_YT1gqT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+S" command="_YP8fKz9AEemkJ6es1zdyvw"/>
  939. <bindings xmi:id="_YT2HsT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+U" command="_YQEa9z9AEemkJ6es1zdyvw"/>
  940. </bindingTables>
  941. <bindingTables xmi:id="_YTrvqz9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.wikitext.ui.editor.markupSourceContext" bindingContext="_YQPaJT9AEemkJ6es1zdyvw">
  942. <bindings xmi:id="_YTrvrD9AEemkJ6es1zdyvw" keySequence="CTRL+O" command="_YP2Ykj9AEemkJ6es1zdyvw"/>
  943. </bindingTables>
  944. <bindingTables xmi:id="_YTrvrT9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.pdeEditorContext" bindingContext="_YQPaEj9AEemkJ6es1zdyvw">
  945. <bindings xmi:id="_YTrvrj9AEemkJ6es1zdyvw" keySequence="CTRL+O" command="_YP40wz9AEemkJ6es1zdyvw"/>
  946. <bindings xmi:id="_YT2Htz9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F" command="_YP3muD9AEemkJ6es1zdyvw"/>
  947. </bindingTables>
  948. <bindingTables xmi:id="_YTsWtD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.serverViewScope" bindingContext="_YQPaFD9AEemkJ6es1zdyvw">
  949. <bindings xmi:id="_YTsWtT9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+P" command="_YQEa8j9AEemkJ6es1zdyvw"/>
  950. <bindings xmi:id="_YTs9xT9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+R" command="_YQIshD9AEemkJ6es1zdyvw"/>
  951. <bindings xmi:id="_YTs9yz9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+S" command="_YP6C_j9AEemkJ6es1zdyvw"/>
  952. <bindings xmi:id="_YT5LCD9AEemkJ6es1zdyvw" keySequence="ALT+CTRL+D" command="_YQD0Az9AEemkJ6es1zdyvw"/>
  953. </bindingTables>
  954. <bindingTables xmi:id="_YTs9xj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesView" bindingContext="_YQPaLT9AEemkJ6es1zdyvw">
  955. <bindings xmi:id="_YTs9xz9AEemkJ6es1zdyvw" keySequence="CTRL+C" command="_YP6qFT9AEemkJ6es1zdyvw"/>
  956. <bindings xmi:id="_iQIHYCfvEeq9j5-P04oEqA" keySequence="CTRL+ARROW_LEFT" command="_iPLsMifvEeq9j5-P04oEqA"/>
  957. </bindingTables>
  958. <bindingTables xmi:id="_YTs9yD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.ReflogView" bindingContext="_YQPaHT9AEemkJ6es1zdyvw">
  959. <bindings xmi:id="_YTs9yT9AEemkJ6es1zdyvw" keySequence="CTRL+C" command="_YP40yj9AEemkJ6es1zdyvw"/>
  960. </bindingTables>
  961. <bindingTables xmi:id="_YTvaAz9AEemkJ6es1zdyvw" elementId="org.eclipse.core.runtime.xml" bindingContext="_YQOzFD9AEemkJ6es1zdyvw">
  962. <bindings xmi:id="_YTvaBD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+P" command="_YQFCHz9AEemkJ6es1zdyvw"/>
  963. <bindings xmi:id="_YT1grD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+D" command="_YP_ieD9AEemkJ6es1zdyvw"/>
  964. </bindingTables>
  965. <bindingTables xmi:id="_YTwBET9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.classFileEditorScope" bindingContext="_YQOzCz9AEemkJ6es1zdyvw">
  966. <bindings xmi:id="_YTwoID9AEemkJ6es1zdyvw" keySequence="CTRL+1" command="_YQIskD9AEemkJ6es1zdyvw"/>
  967. </bindingTables>
  968. <bindingTables xmi:id="_YTxPMj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.breadcrumbEditorScope" bindingContext="_YQOzDD9AEemkJ6es1zdyvw">
  969. <bindings xmi:id="_YTx2QD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+B" command="_YQJTgT9AEemkJ6es1zdyvw"/>
  970. </bindingTables>
  971. <bindingTables xmi:id="_YTzrcz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.chromium.debug.ui.editors.JsEditor.context" bindingContext="_YQOzJT9AEemkJ6es1zdyvw">
  972. <bindings xmi:id="_YTzrdD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+I" command="_YQIscz9AEemkJ6es1zdyvw"/>
  973. </bindingTables>
  974. <bindingTables xmi:id="_YTzrfT9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.jsp.ui.structured.text.editor.jsp.scope" bindingContext="_YQOzIT9AEemkJ6es1zdyvw">
  975. <bindings xmi:id="_YTzrfj9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+M" command="_YP7RBD9AEemkJ6es1zdyvw"/>
  976. <bindings xmi:id="_YT05lD9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+R" command="_YQIsbj9AEemkJ6es1zdyvw"/>
  977. <bindings xmi:id="_YT2uwz9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+V" command="_YP-7Zz9AEemkJ6es1zdyvw"/>
  978. </bindingTables>
  979. <bindingTables xmi:id="_YT0ShT9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.wikitext.tasks.ui.markupSourceContext" bindingContext="_YQPaKj9AEemkJ6es1zdyvw">
  980. <bindings xmi:id="_YT0Shj9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+O" command="_YP2Ykj9AEemkJ6es1zdyvw"/>
  981. </bindingTables>
  982. <bindingTables xmi:id="_YT05mD9AEemkJ6es1zdyvw" elementId="com.genuitec.eclipse.meExplorerScope" bindingContext="_YQPaET9AEemkJ6es1zdyvw">
  983. <bindings xmi:id="_YT05mT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+R" command="_YP2YpT9AEemkJ6es1zdyvw"/>
  984. <bindings xmi:id="_YT2uxT9AEemkJ6es1zdyvw" keySequence="ALT+SHIFT+V" command="_YP1xlD9AEemkJ6es1zdyvw"/>
  985. </bindingTables>
  986. <bindingTables xmi:id="_YT3V0j9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.console" bindingContext="_YQOzJj9AEemkJ6es1zdyvw">
  987. <bindings xmi:id="_YT3V0z9AEemkJ6es1zdyvw" keySequence="CTRL+Z" command="_YQIsdj9AEemkJ6es1zdyvw">
  988. <tags>platform:win32</tags>
  989. </bindings>
  990. <bindings xmi:id="_YT4j9z9AEemkJ6es1zdyvw" keySequence="CTRL+R" command="_YQCl0T9AEemkJ6es1zdyvw"/>
  991. </bindingTables>
  992. <bindingTables xmi:id="_YT8OWT9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.jsf.facesconfig.editorContext" bindingContext="_YQPaLj9AEemkJ6es1zdyvw">
  993. <bindings xmi:id="_YT8OWj9AEemkJ6es1zdyvw" keySequence="CTRL+F5" command="_YQClzT9AEemkJ6es1zdyvw"/>
  994. <bindings xmi:id="_YT-DiD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F5" command="_YQD0GD9AEemkJ6es1zdyvw"/>
  995. </bindingTables>
  996. <bindingTables xmi:id="_YT8OWz9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.pagedesigner.editorContext" bindingContext="_YQOzHz9AEemkJ6es1zdyvw">
  997. <bindings xmi:id="_YT8OXD9AEemkJ6es1zdyvw" keySequence="CTRL+F5" command="_YQClzT9AEemkJ6es1zdyvw"/>
  998. <bindings xmi:id="_YT81bz9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F9" command="_YP-UZz9AEemkJ6es1zdyvw"/>
  999. <bindings xmi:id="_YT9ccD9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F10" command="_YQIsdz9AEemkJ6es1zdyvw"/>
  1000. <bindings xmi:id="_YT9cdT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F11" command="_YQIFfT9AEemkJ6es1zdyvw"/>
  1001. <bindings xmi:id="_YT9ceT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F12" command="_YQIsjD9AEemkJ6es1zdyvw"/>
  1002. <bindings xmi:id="_YT-DiT9AEemkJ6es1zdyvw" keySequence="CTRL+SHIFT+F5" command="_YQD0GD9AEemkJ6es1zdyvw"/>
  1003. </bindingTables>
  1004. <bindingTables xmi:id="_Zdl-AT9AEemkJ6es1zdyvw" bindingContext="_Zdl-AD9AEemkJ6es1zdyvw"/>
  1005. <bindingTables xmi:id="_ZdmlET9AEemkJ6es1zdyvw" bindingContext="_ZdmlED9AEemkJ6es1zdyvw"/>
  1006. <bindingTables xmi:id="_ZdmlEz9AEemkJ6es1zdyvw" bindingContext="_ZdmlEj9AEemkJ6es1zdyvw"/>
  1007. <bindingTables xmi:id="_ZdmlFT9AEemkJ6es1zdyvw" bindingContext="_ZdmlFD9AEemkJ6es1zdyvw"/>
  1008. <bindingTables xmi:id="_ZdnMIT9AEemkJ6es1zdyvw" bindingContext="_ZdnMID9AEemkJ6es1zdyvw"/>
  1009. <bindingTables xmi:id="_ZdnMIz9AEemkJ6es1zdyvw" bindingContext="_ZdnMIj9AEemkJ6es1zdyvw"/>
  1010. <bindingTables xmi:id="_ZdnMJT9AEemkJ6es1zdyvw" bindingContext="_ZdnMJD9AEemkJ6es1zdyvw"/>
  1011. <bindingTables xmi:id="_ZdnzMT9AEemkJ6es1zdyvw" bindingContext="_ZdnzMD9AEemkJ6es1zdyvw"/>
  1012. <bindingTables xmi:id="_ZdnzMz9AEemkJ6es1zdyvw" bindingContext="_ZdnzMj9AEemkJ6es1zdyvw"/>
  1013. <bindingTables xmi:id="_ZdnzNT9AEemkJ6es1zdyvw" bindingContext="_ZdnzND9AEemkJ6es1zdyvw"/>
  1014. <bindingTables xmi:id="_ZdnzNz9AEemkJ6es1zdyvw" bindingContext="_ZdnzNj9AEemkJ6es1zdyvw"/>
  1015. <bindingTables xmi:id="_ZdoaQT9AEemkJ6es1zdyvw" bindingContext="_ZdoaQD9AEemkJ6es1zdyvw"/>
  1016. <bindingTables xmi:id="_ZdoaQz9AEemkJ6es1zdyvw" bindingContext="_ZdoaQj9AEemkJ6es1zdyvw"/>
  1017. <bindingTables xmi:id="_ZdoaRT9AEemkJ6es1zdyvw" bindingContext="_ZdoaRD9AEemkJ6es1zdyvw"/>
  1018. <bindingTables xmi:id="_ZdoaRz9AEemkJ6es1zdyvw" bindingContext="_ZdoaRj9AEemkJ6es1zdyvw"/>
  1019. <bindingTables xmi:id="_ZdpBUT9AEemkJ6es1zdyvw" bindingContext="_ZdpBUD9AEemkJ6es1zdyvw"/>
  1020. <bindingTables xmi:id="_ZdpBUz9AEemkJ6es1zdyvw" bindingContext="_ZdpBUj9AEemkJ6es1zdyvw"/>
  1021. <bindingTables xmi:id="_ZdpBVT9AEemkJ6es1zdyvw" bindingContext="_ZdpBVD9AEemkJ6es1zdyvw"/>
  1022. <bindingTables xmi:id="_ZdpBVz9AEemkJ6es1zdyvw" bindingContext="_ZdpBVj9AEemkJ6es1zdyvw"/>
  1023. <bindingTables xmi:id="_ZdpoYT9AEemkJ6es1zdyvw" bindingContext="_ZdpoYD9AEemkJ6es1zdyvw"/>
  1024. <bindingTables xmi:id="_ZdpoYz9AEemkJ6es1zdyvw" bindingContext="_ZdpoYj9AEemkJ6es1zdyvw"/>
  1025. <bindingTables xmi:id="_ZdpoZT9AEemkJ6es1zdyvw" bindingContext="_ZdpoZD9AEemkJ6es1zdyvw"/>
  1026. <bindingTables xmi:id="_ZdqPcT9AEemkJ6es1zdyvw" bindingContext="_ZdqPcD9AEemkJ6es1zdyvw"/>
  1027. <bindingTables xmi:id="_ZdqPcz9AEemkJ6es1zdyvw" bindingContext="_ZdqPcj9AEemkJ6es1zdyvw"/>
  1028. <bindingTables xmi:id="_ZdqPdT9AEemkJ6es1zdyvw" bindingContext="_ZdqPdD9AEemkJ6es1zdyvw"/>
  1029. <bindingTables xmi:id="_Zdq2gT9AEemkJ6es1zdyvw" bindingContext="_Zdq2gD9AEemkJ6es1zdyvw"/>
  1030. <bindingTables xmi:id="_Zdq2gz9AEemkJ6es1zdyvw" bindingContext="_Zdq2gj9AEemkJ6es1zdyvw"/>
  1031. <bindingTables xmi:id="_Zdq2hT9AEemkJ6es1zdyvw" bindingContext="_Zdq2hD9AEemkJ6es1zdyvw"/>
  1032. <bindingTables xmi:id="_Zdq2hz9AEemkJ6es1zdyvw" bindingContext="_Zdq2hj9AEemkJ6es1zdyvw"/>
  1033. <bindingTables xmi:id="_ZdrdkT9AEemkJ6es1zdyvw" bindingContext="_ZdrdkD9AEemkJ6es1zdyvw"/>
  1034. <bindingTables xmi:id="_Zdrdkz9AEemkJ6es1zdyvw" bindingContext="_Zdrdkj9AEemkJ6es1zdyvw"/>
  1035. <bindingTables xmi:id="_ZdrdlT9AEemkJ6es1zdyvw" bindingContext="_ZdrdlD9AEemkJ6es1zdyvw"/>
  1036. <bindingTables xmi:id="_ZdsEoT9AEemkJ6es1zdyvw" bindingContext="_ZdsEoD9AEemkJ6es1zdyvw"/>
  1037. <bindingTables xmi:id="_ZdsEoz9AEemkJ6es1zdyvw" bindingContext="_ZdsEoj9AEemkJ6es1zdyvw"/>
  1038. <bindingTables xmi:id="_ZdsEpT9AEemkJ6es1zdyvw" bindingContext="_ZdsEpD9AEemkJ6es1zdyvw"/>
  1039. <bindingTables xmi:id="_ZdsrsT9AEemkJ6es1zdyvw" bindingContext="_ZdsrsD9AEemkJ6es1zdyvw"/>
  1040. <bindingTables xmi:id="_Zdsrsz9AEemkJ6es1zdyvw" bindingContext="_Zdsrsj9AEemkJ6es1zdyvw"/>
  1041. <bindingTables xmi:id="_ZdsrtT9AEemkJ6es1zdyvw" bindingContext="_ZdsrtD9AEemkJ6es1zdyvw"/>
  1042. <bindingTables xmi:id="_ZdtSwT9AEemkJ6es1zdyvw" bindingContext="_ZdtSwD9AEemkJ6es1zdyvw"/>
  1043. <bindingTables xmi:id="_ZdtSwz9AEemkJ6es1zdyvw" bindingContext="_ZdtSwj9AEemkJ6es1zdyvw"/>
  1044. <bindingTables xmi:id="_ZdtSxT9AEemkJ6es1zdyvw" bindingContext="_ZdtSxD9AEemkJ6es1zdyvw"/>
  1045. <bindingTables xmi:id="_Zdt50T9AEemkJ6es1zdyvw" bindingContext="_Zdt50D9AEemkJ6es1zdyvw"/>
  1046. <bindingTables xmi:id="_Zdt50z9AEemkJ6es1zdyvw" bindingContext="_Zdt50j9AEemkJ6es1zdyvw"/>
  1047. <bindingTables xmi:id="_Zdug4D9AEemkJ6es1zdyvw" bindingContext="_Zdt51D9AEemkJ6es1zdyvw"/>
  1048. <bindingTables xmi:id="_Zdug4j9AEemkJ6es1zdyvw" bindingContext="_Zdug4T9AEemkJ6es1zdyvw"/>
  1049. <bindingTables xmi:id="_Zdug5D9AEemkJ6es1zdyvw" bindingContext="_Zdug4z9AEemkJ6es1zdyvw"/>
  1050. <bindingTables xmi:id="_ZdvH8T9AEemkJ6es1zdyvw" bindingContext="_ZdvH8D9AEemkJ6es1zdyvw"/>
  1051. <bindingTables xmi:id="_ZdwWED9AEemkJ6es1zdyvw" bindingContext="_ZdvvAD9AEemkJ6es1zdyvw"/>
  1052. <bindingTables xmi:id="_ZdwWEj9AEemkJ6es1zdyvw" bindingContext="_ZdwWET9AEemkJ6es1zdyvw"/>
  1053. <bindingTables xmi:id="_Zdw9IT9AEemkJ6es1zdyvw" bindingContext="_Zdw9ID9AEemkJ6es1zdyvw"/>
  1054. <bindingTables xmi:id="_Zdw9Iz9AEemkJ6es1zdyvw" bindingContext="_Zdw9Ij9AEemkJ6es1zdyvw"/>
  1055. <bindingTables xmi:id="_ZdxkMD9AEemkJ6es1zdyvw" bindingContext="_Zdw9JD9AEemkJ6es1zdyvw"/>
  1056. <bindingTables xmi:id="_ZdxkMj9AEemkJ6es1zdyvw" bindingContext="_ZdxkMT9AEemkJ6es1zdyvw"/>
  1057. <bindingTables xmi:id="_ZdxkND9AEemkJ6es1zdyvw" bindingContext="_ZdxkMz9AEemkJ6es1zdyvw"/>
  1058. <bindingTables xmi:id="_ZdxkNj9AEemkJ6es1zdyvw" bindingContext="_ZdxkNT9AEemkJ6es1zdyvw"/>
  1059. <bindingTables xmi:id="_iP8hMCfvEeq9j5-P04oEqA" elementId="org.eclipse.emf.codegen.ui.jetEditorScope" bindingContext="_iPRy0CfvEeq9j5-P04oEqA">
  1060. <bindings xmi:id="_iP8hMSfvEeq9j5-P04oEqA" keySequence="CTRL+SHIFT+P" command="_iPLsMCfvEeq9j5-P04oEqA"/>
  1061. <bindings xmi:id="_iQALkCfvEeq9j5-P04oEqA" keySequence="CTRL+SHIFT+F" command="_iPM6UCfvEeq9j5-P04oEqA"/>
  1062. <bindings xmi:id="_iQCn0CfvEeq9j5-P04oEqA" keySequence="ALT+SHIFT+R" command="_iPLsNCfvEeq9j5-P04oEqA"/>
  1063. <bindings xmi:id="_iQCn0SfvEeq9j5-P04oEqA" keySequence="ALT+SHIFT+S" command="_iPMTQCfvEeq9j5-P04oEqA"/>
  1064. <bindings xmi:id="_iQDO4CfvEeq9j5-P04oEqA" keySequence="ALT+SHIFT+T" command="_iPM6USfvEeq9j5-P04oEqA"/>
  1065. <bindings xmi:id="_iQD18SfvEeq9j5-P04oEqA" keySequence="ALT+SHIFT+L" command="_YP6p8j9AEemkJ6es1zdyvw"/>
  1066. <bindings xmi:id="_iQG5QCfvEeq9j5-P04oEqA" keySequence="ALT+SHIFT+ARROW_UP" command="_YP-7fT9AEemkJ6es1zdyvw"/>
  1067. <bindings xmi:id="_iQG5QSfvEeq9j5-P04oEqA" keySequence="ALT+SHIFT+ARROW_DOWN" command="_YP403z9AEemkJ6es1zdyvw"/>
  1068. <bindings xmi:id="_iQHgUCfvEeq9j5-P04oEqA" keySequence="ALT+SHIFT+ARROW_LEFT" command="_YP9GPD9AEemkJ6es1zdyvw"/>
  1069. <bindings xmi:id="_iQHgUSfvEeq9j5-P04oEqA" keySequence="ALT+SHIFT+ARROW_RIGHT" command="_YP3muz9AEemkJ6es1zdyvw"/>
  1070. <bindings xmi:id="_iQHgUifvEeq9j5-P04oEqA" keySequence="ALT+SHIFT+PAGE_UP" command="_iPMTRifvEeq9j5-P04oEqA"/>
  1071. </bindingTables>
  1072. <bindingTables xmi:id="_iQFEECfvEeq9j5-P04oEqA" elementId="org.eclipse.egit.ui.RepositoriesView.SingleRepository" bindingContext="_iPRy0SfvEeq9j5-P04oEqA">
  1073. <bindings xmi:id="_iQFrICfvEeq9j5-P04oEqA" keySequence="F2" command="_YP400z9AEemkJ6es1zdyvw"/>
  1074. </bindingTables>
  1075. <bindingTables xmi:id="_i0xFgSfvEeq9j5-P04oEqA" bindingContext="_i0xFgCfvEeq9j5-P04oEqA"/>
  1076. <bindingTables xmi:id="_i0xskSfvEeq9j5-P04oEqA" bindingContext="_i0xskCfvEeq9j5-P04oEqA"/>
  1077. <rootContext xmi:id="_YO2S9D9AEemkJ6es1zdyvw" 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">
  1078. <children xmi:id="_YO2S9T9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.contexts.window" contributorURI="platform:/plugin/org.eclipse.platform" name="In Windows" description="A window is open">
  1079. <children xmi:id="_YO2S9j9AEemkJ6es1zdyvw" elementId="org.eclipse.e4.ui.contexts.views" contributorURI="platform:/plugin/org.eclipse.platform" name="%bindingcontext.name.bindingView"/>
  1080. <children xmi:id="_YQOzAD9AEemkJ6es1zdyvw" elementId="org.eclipse.tm.terminal.EditContext" name="Terminal Control in Focus" description="Show modified keyboard shortcuts in context menu"/>
  1081. <children xmi:id="_YQOzAT9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.BreakpointView" name="In Breakpoints View" description="The breakpoints view context"/>
  1082. <children xmi:id="_YQOzAj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.textEditorScope" name="Editing Text" description="Editing Text Context">
  1083. <children xmi:id="_YQOzAz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.javaEditorScope" name="Editing JavaScript Source" description="Editing JavaScript Source Context">
  1084. <children xmi:id="_YQPaJj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.javascriptViewScope" name="JavaScript View" description="JavaScript View Context"/>
  1085. </children>
  1086. <children xmi:id="_YQOzBD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql" name="SQL &#x7f16;&#x8f91;&#x5668;&#x4e0a;&#x4e0b;&#x6587;">
  1087. <children xmi:id="_YQOzCT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.script" name="SQL Script Editor Context"/>
  1088. <children xmi:id="_YQOzFz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.context.resultset" name="&#x7ed3;&#x679c;&#x67e5;&#x770b;&#x5668;&#x4e0a;&#x4e0b;&#x6587;" description="&#x7ed3;&#x679c;&#x67e5;&#x770b;&#x5668;&#x4e0a;&#x4e0b;&#x6587;">
  1089. <children xmi:id="_YQOzGD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.context.resultset.edit" name="&#x7ed3;&#x679c;&#x7f16;&#x8f91;&#x4e0a;&#x4e0b;&#x6587;" description="&#x7ed3;&#x679c;&#x7f16;&#x8f91;&#x4e0a;&#x4e0b;&#x6587;"/>
  1090. </children>
  1091. <children xmi:id="_YQPaFz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.context.resultset.focused" name="&#x7ed3;&#x679c;&#x67e5;&#x770b;&#x5668;&#x4e0a;&#x4e0b;&#x6587;" description="&#x7ed3;&#x679c;&#x67e5;&#x770b;&#x5668;&#x4e0a;&#x4e0b;&#x6587;"/>
  1092. </children>
  1093. <children xmi:id="_YQOzCj9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.SQLEditorScope" name="Editing SQL" description="Editing SQL Context"/>
  1094. <children xmi:id="_YQOzCz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.classFileEditorScope" name="Browsing attached Java Source" description="Browsing attached Java Source Context"/>
  1095. <children xmi:id="_YQOzDT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.javaEditorScope" name="Editing Java Source" description="Editing Java Source Context"/>
  1096. <children xmi:id="_YQOzDj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.script.focused" name="SQL Script Editor Context"/>
  1097. <children xmi:id="_YQOzED9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.ui.structuredTextEditorScope" name="Editing in Structured Text Editors" description="Editing in Structured Text Editors">
  1098. <children xmi:id="_YQOzET9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.cleanup" name="XML Source Cleanup" description="XML Source Cleanup"/>
  1099. <children xmi:id="_YQOzEj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.comments" name="Source Comments in Structured Text Editors" description="Source Comments in Structured Text Editors"/>
  1100. <children xmi:id="_YQOzEz9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.jsp.core.jspsource" name="JSP Source" description="JSP Source"/>
  1101. <children xmi:id="_YQOzFD9AEemkJ6es1zdyvw" elementId="org.eclipse.core.runtime.xml" name="Editing XML Source" description="Editing XML Source"/>
  1102. <children xmi:id="_YQOzFT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.occurrences" name="XML Source Occurrences" description="XML Source Occurrences"/>
  1103. <children xmi:id="_YQOzFj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.grammar" name="XML Source Grammar" description="XML Source Grammar"/>
  1104. <children xmi:id="_YQOzGT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.comments" name="XML Source Comments" description="XML Source Comments"/>
  1105. <children xmi:id="_YQOzGz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.expand" name="XML Source Expand/Collapse" description="XML Source Expand/Collapse"/>
  1106. <children xmi:id="_YQOzHT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.hideFormat" name="Editing in Structured Text Editors" description="Editing in Structured Text Editors"/>
  1107. <children xmi:id="_YQOzID9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.selection" name="XML Source Selection" description="XML Source Selection"/>
  1108. <children xmi:id="_YQOzIT9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.jsp.ui.structured.text.editor.jsp.scope" name="Editing JSP Source" description="Editing JSP Source"/>
  1109. <children xmi:id="_YQPaED9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.navigation" name="XML Source Navigation" description="XML Source Navigation"/>
  1110. <children xmi:id="_YQPaFj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.json.core.jsonsource" name="%scope.structured.text.editor.json.name" description="%scope.structured.text.editor.json.description"/>
  1111. <children xmi:id="_YQPaHz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.css.core.csssource" name="Editing CSS Source" description="Editing CSS Source"/>
  1112. <children xmi:id="_YQPaIT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.html.core.htmlsource" name="Editing HTML Source" description="Editing HTML Source"/>
  1113. <children xmi:id="_YQPaKz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.dependencies" name="XML Source Dependencies" description="XML Source Dependencies"/>
  1114. <children xmi:id="_YQPaLz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.html.occurrences" name="HTML Source Occurrences" description="HTML Source Occurrences"/>
  1115. </children>
  1116. <children xmi:id="_YQOzHD9AEemkJ6es1zdyvw" elementId="org.eclipse.ant.ui.AntEditorScope" name="Editing Ant Buildfiles" description="Editing Ant Buildfiles Context"/>
  1117. <children xmi:id="_YQOzHz9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.pagedesigner.editorContext" name="Using Web Page Editor" description="Key binding context when using the web page editor"/>
  1118. <children xmi:id="_YQOzIz9AEemkJ6es1zdyvw" elementId="com.genuitec.eclipse.inlinesearch.context" name="Inline Search is Active"/>
  1119. <children xmi:id="_YQPaEj9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.pdeEditorContext" name="PDE editor" description="The context used by PDE editors"/>
  1120. <children xmi:id="_YQPaFT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.genericeditor.genericEditorContext" name="in Generic Code Editor" description="When editing in the Generic Code Editor"/>
  1121. <children xmi:id="_YQPaID9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xsd.ui.text.editor.context" name="Editing XSD context"/>
  1122. <children xmi:id="_YQPaIz9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.editors.task" name="In Tasks Editor"/>
  1123. <children xmi:id="_YQPaJD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.internal.wikitext.ui.editor.basicMarkupSourceContext" name="WikiText Markup Source Context" description="WikiText markup editing context">
  1124. <children xmi:id="_YQPaJT9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.wikitext.ui.editor.markupSourceContext" name="WikiText Markup Source Context" description="WikiText markup editing context"/>
  1125. <children xmi:id="_YQPaKj9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.wikitext.tasks.ui.markupSourceContext" name="Task Markup Editor Source Context"/>
  1126. </children>
  1127. <children xmi:id="_YQPaKD9AEemkJ6es1zdyvw" elementId="org.dadacoalition.yedit.yeditScope" name="YEdit editor context"/>
  1128. <children xmi:id="_YQPaLD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.propertiesEditorScope" name="Editing Properties Files" description="Editing Properties Files Context"/>
  1129. <children xmi:id="_YQPaLj9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.jsf.facesconfig.editorContext" name="In Faces Config Editor" description="Key binding context when using the Faces Config Editor"/>
  1130. <children xmi:id="_iPRy0CfvEeq9j5-P04oEqA" elementId="org.eclipse.emf.codegen.ui.jetEditorScope" name="Editing JET Source" description="Editing JET Source Context"/>
  1131. </children>
  1132. <children xmi:id="_YQOzBT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.context.navigator" name="&#x6570;&#x636e;&#x5e93;&#x5bfc;&#x822a;&#x4e0a;&#x4e0b;&#x6587;" description="&#x6570;&#x636e;&#x5e93;&#x5bfc;&#x822a;&#x4e0a;&#x4e0b;&#x6587;"/>
  1133. <children xmi:id="_YQOzBj9AEemkJ6es1zdyvw" elementId="org.eclipse.compare.compareEditorScope" name="Comparing in an Editor" description="Comparing in an Editor"/>
  1134. <children xmi:id="_YQOzCD9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.memoryview" name="In Memory View" description="In memory view"/>
  1135. <children xmi:id="_YQOzDz9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.schemaobjecteditor.schemaediting" name="Schema Object Editor" description="Schema Object Editor"/>
  1136. <children xmi:id="_YQOzJj9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.console" name="In I/O Console" description="In I/O console"/>
  1137. <children xmi:id="_YQOzJz9AEemkJ6es1zdyvw" elementId="org.eclipse.tm.terminal.view.ui.TerminalsView" name="In Terminal View" description="Show modified keyboard shortcuts in context menu"/>
  1138. <children xmi:id="_YQPaET9AEemkJ6es1zdyvw" elementId="com.genuitec.eclipse.meExplorerScope" name="Project Explorer +"/>
  1139. <children xmi:id="_YQPaEz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.console.ConsoleView" name="In Console View" description="In Console View"/>
  1140. <children xmi:id="_YQPaFD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.serverViewScope" name="In Servers View" description="In Servers View"/>
  1141. <children xmi:id="_YQPaGD9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.debugging" name="Debugging" description="Debugging programs">
  1142. <children xmi:id="_YQPaGT9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.memory.abstractasynctablerendering" name="In Table Memory Rendering" description="In Table Memory Rendering"/>
  1143. <children xmi:id="_YQPaGj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xsl.debug.ui.context" name="XSLT Debugging" description="Context for debugging XSLT"/>
  1144. <children xmi:id="_YQPaGz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.debugging" name="Debugging Java" description="Debugging Java programs"/>
  1145. </children>
  1146. <children xmi:id="_YQPaHT9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.ReflogView" name="In Git Reflog View"/>
  1147. <children xmi:id="_YQPaHj9AEemkJ6es1zdyvw" elementId="org.eclipse.tm.terminal.TerminalContext" name="Terminal Typing Connected" description="Override ALT+x menu access keys while typing into the Terminal"/>
  1148. <children xmi:id="_YQPaIj9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.views.tasks" name="In Tasks View"/>
  1149. <children xmi:id="_YQPaJz9AEemkJ6es1zdyvw" elementId="org.eclipse.buildship.ui.contexts.taskview" name="In Gradle Tasks View" description="This context is activated when the Gradle Tasks view is in focus"/>
  1150. <children xmi:id="_YQPaKT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.perspective" name="DBeaver Perspective" description="DBeaver Perspective Context"/>
  1151. <children xmi:id="_YQPaLT9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesView" name="In Git Repositories View">
  1152. <children xmi:id="_iPRy0SfvEeq9j5-P04oEqA" elementId="org.eclipse.egit.ui.RepositoriesView.SingleRepository" name="In Git Repositories View"/>
  1153. </children>
  1154. </children>
  1155. <children xmi:id="_YO2S9z9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.contexts.dialog" contributorURI="platform:/plugin/org.eclipse.platform" name="In Dialogs" description="A dialog is open"/>
  1156. <children xmi:id="_YQOzJT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.chromium.debug.ui.editors.JsEditor.context" name="Chromium Debug" description="Debug Chromium JavaScript"/>
  1157. </rootContext>
  1158. <rootContext xmi:id="_YQOzBz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.contexts.workbenchMenu" name="Workbench Menu" description="When no Workbench windows are active"/>
  1159. <rootContext xmi:id="_YQOzDD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.breadcrumbEditorScope" name="Editor Breadcrumb Navigation" description="Editor Breadcrumb Navigation Context"/>
  1160. <rootContext xmi:id="_YQOzGj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xsd.ui.editor.sourceView" name="XSD Editor Source View" description="XSD Editor Source View"/>
  1161. <rootContext xmi:id="_YQOzHj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.wsdl.ui.editor.sourceView" name="WSDL Editor Source View" description="WSDL Editor Source View"/>
  1162. <rootContext xmi:id="_YQOzIj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xsd.ui.editor.designView" name="XSD Editor Design View" description="XSD Editor Design View"/>
  1163. <rootContext xmi:id="_YQOzJD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.contexts.actionSet" name="Action Set" description="Parent context for action sets"/>
  1164. <rootContext xmi:id="_YQPaHD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.wsdl.ui.editor.designView" name="WSDL Editor Design View" description="WSDL Editor Design View"/>
  1165. <rootContext xmi:id="_Zdl-AD9AEemkJ6es1zdyvw" elementId="org.eclipse.ant.ui.actionSet.presentation" name="Auto::org.eclipse.ant.ui.actionSet.presentation"/>
  1166. <rootContext xmi:id="_ZdmlED9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.sqlscrapbook.actionSet" name="Auto::org.eclipse.datatools.sqltools.sqlscrapbook.actionSet"/>
  1167. <rootContext xmi:id="_ZdmlEj9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.breakpointActionSet" name="Auto::org.eclipse.debug.ui.breakpointActionSet"/>
  1168. <rootContext xmi:id="_ZdmlFD9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.debugActionSet" name="Auto::org.eclipse.debug.ui.debugActionSet"/>
  1169. <rootContext xmi:id="_ZdnMID9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.launchActionSet" name="Auto::org.eclipse.debug.ui.launchActionSet"/>
  1170. <rootContext xmi:id="_ZdnMIj9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.profileActionSet" name="Auto::org.eclipse.debug.ui.profileActionSet"/>
  1171. <rootContext xmi:id="_ZdnMJD9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.CoverageActionSet" name="Auto::org.eclipse.eclemma.ui.CoverageActionSet"/>
  1172. <rootContext xmi:id="_ZdnzMD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.gitaction" name="Auto::org.eclipse.egit.ui.gitaction"/>
  1173. <rootContext xmi:id="_ZdnzMj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.navigation" name="Auto::org.eclipse.egit.ui.navigation"/>
  1174. <rootContext xmi:id="_ZdnzND9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.SearchActionSet" name="Auto::org.eclipse.egit.ui.SearchActionSet"/>
  1175. <rootContext xmi:id="_ZdnzNj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.JDTDebugActionSet" name="Auto::org.eclipse.jdt.debug.ui.JDTDebugActionSet"/>
  1176. <rootContext xmi:id="_ZdoaQD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.junit.JUnitActionSet" name="Auto::org.eclipse.jdt.junit.JUnitActionSet"/>
  1177. <rootContext xmi:id="_ZdoaQj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.text.java.actionSet.presentation" name="Auto::org.eclipse.jdt.ui.text.java.actionSet.presentation"/>
  1178. <rootContext xmi:id="_ZdoaRD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.JavaElementCreationActionSet" name="Auto::org.eclipse.jdt.ui.JavaElementCreationActionSet"/>
  1179. <rootContext xmi:id="_ZdoaRj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.JavaActionSet" name="Auto::org.eclipse.jdt.ui.JavaActionSet"/>
  1180. <rootContext xmi:id="_ZdpBUD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.A_OpenActionSet" name="Auto::org.eclipse.jdt.ui.A_OpenActionSet"/>
  1181. <rootContext xmi:id="_ZdpBUj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.CodingActionSet" name="Auto::org.eclipse.jdt.ui.CodingActionSet"/>
  1182. <rootContext xmi:id="_ZdpBVD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.SearchActionSet" name="Auto::org.eclipse.jdt.ui.SearchActionSet"/>
  1183. <rootContext xmi:id="_ZdpBVj9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.ui.actionSet.jpaElementCreation" name="Auto::org.eclipse.jpt.jpa.ui.actionSet.jpaElementCreation"/>
  1184. <rootContext xmi:id="_ZdpoYD9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.j2ee.J2eeMainActionSet" name="Auto::org.eclipse.jst.j2ee.J2eeMainActionSet"/>
  1185. <rootContext xmi:id="_ZdpoYj9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.context.ui.actionSet" name="Auto::org.eclipse.mylyn.context.ui.actionSet"/>
  1186. <rootContext xmi:id="_ZdpoZD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.java.actionSet" name="Auto::org.eclipse.mylyn.java.actionSet"/>
  1187. <rootContext xmi:id="_ZdqPcD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.java.actionSet.browsing" name="Auto::org.eclipse.mylyn.java.actionSet.browsing"/>
  1188. <rootContext xmi:id="_ZdqPcj9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.doc.actionSet" name="Auto::org.eclipse.mylyn.doc.actionSet"/>
  1189. <rootContext xmi:id="_ZdqPdD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.navigation" name="Auto::org.eclipse.mylyn.tasks.ui.navigation"/>
  1190. <rootContext xmi:id="_Zdq2gD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.navigation.additions" name="Auto::org.eclipse.mylyn.tasks.ui.navigation.additions"/>
  1191. <rootContext xmi:id="_Zdq2gj9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.SearchActionSet" name="Auto::org.eclipse.pde.ui.SearchActionSet"/>
  1192. <rootContext xmi:id="_Zdq2hD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.cheatsheets.actionSet" name="Auto::org.eclipse.ui.cheatsheets.actionSet"/>
  1193. <rootContext xmi:id="_Zdq2hj9AEemkJ6es1zdyvw" elementId="org.eclipse.rse.core.search.searchActionSet" name="Auto::org.eclipse.rse.core.search.searchActionSet"/>
  1194. <rootContext xmi:id="_ZdrdkD9AEemkJ6es1zdyvw" elementId="org.eclipse.search.searchActionSet" name="Auto::org.eclipse.search.searchActionSet"/>
  1195. <rootContext xmi:id="_Zdrdkj9AEemkJ6es1zdyvw" elementId="org.eclipse.team.ui.actionSet" name="Auto::org.eclipse.team.ui.actionSet"/>
  1196. <rootContext xmi:id="_ZdrdlD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.actionSet.annotationNavigation" name="Auto::org.eclipse.ui.edit.text.actionSet.annotationNavigation"/>
  1197. <rootContext xmi:id="_ZdsEoD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.actionSet.navigation" name="Auto::org.eclipse.ui.edit.text.actionSet.navigation"/>
  1198. <rootContext xmi:id="_ZdsEoj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo" name="Auto::org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo"/>
  1199. <rootContext xmi:id="_ZdsEpD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.externaltools.ExternalToolsSet" name="Auto::org.eclipse.ui.externaltools.ExternalToolsSet"/>
  1200. <rootContext xmi:id="_ZdsrsD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.NavigateActionSet" name="Auto::org.eclipse.ui.NavigateActionSet"/>
  1201. <rootContext xmi:id="_Zdsrsj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.actionSet.keyBindings" name="Auto::org.eclipse.ui.actionSet.keyBindings"/>
  1202. <rootContext xmi:id="_ZdsrtD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.WorkingSetModificationActionSet" name="Auto::org.eclipse.ui.WorkingSetModificationActionSet"/>
  1203. <rootContext xmi:id="_ZdtSwD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.WorkingSetActionSet" name="Auto::org.eclipse.ui.WorkingSetActionSet"/>
  1204. <rootContext xmi:id="_ZdtSwj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.actionSet.openFiles" name="Auto::org.eclipse.ui.actionSet.openFiles"/>
  1205. <rootContext xmi:id="_ZdtSxD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.actionSet.presentation" name="Auto::org.eclipse.ui.edit.text.actionSet.presentation"/>
  1206. <rootContext xmi:id="_Zdt50D9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.chromium.debug.ui.actionSets" name="Auto::org.eclipse.wst.jsdt.chromium.debug.ui.actionSets"/>
  1207. <rootContext xmi:id="_Zdt50j9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.text.java.actionSet.presentation" name="Auto::org.eclipse.wst.jsdt.ui.text.java.actionSet.presentation"/>
  1208. <rootContext xmi:id="_Zdt51D9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.JavaElementCreationActionSet" name="Auto::org.eclipse.wst.jsdt.ui.JavaElementCreationActionSet"/>
  1209. <rootContext xmi:id="_Zdug4T9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.JavaActionSet" name="Auto::org.eclipse.wst.jsdt.ui.JavaActionSet"/>
  1210. <rootContext xmi:id="_Zdug4z9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.A_OpenActionSet" name="Auto::org.eclipse.wst.jsdt.ui.A_OpenActionSet"/>
  1211. <rootContext xmi:id="_ZdvH8D9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.CodingActionSet" name="Auto::org.eclipse.wst.jsdt.ui.CodingActionSet"/>
  1212. <rootContext xmi:id="_ZdvvAD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.SearchActionSet" name="Auto::org.eclipse.wst.jsdt.ui.SearchActionSet"/>
  1213. <rootContext xmi:id="_ZdwWET9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.server.ui.new.actionSet" name="Auto::org.eclipse.wst.server.ui.new.actionSet"/>
  1214. <rootContext xmi:id="_Zdw9ID9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.server.ui.internal.webbrowser.actionSet" name="Auto::org.eclipse.wst.server.ui.internal.webbrowser.actionSet"/>
  1215. <rootContext xmi:id="_Zdw9Ij9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.web.ui.wizardsActionSet" name="Auto::org.eclipse.wst.web.ui.wizardsActionSet"/>
  1216. <rootContext xmi:id="_Zdw9JD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.ws.explorer.explorer" name="Auto::org.eclipse.wst.ws.explorer.explorer"/>
  1217. <rootContext xmi:id="_ZdxkMT9AEemkJ6es1zdyvw" elementId="org.springsource.ide.eclipse.quicksearch.actionSet" name="Auto::org.springsource.ide.eclipse.quicksearch.actionSet"/>
  1218. <rootContext xmi:id="_ZdxkMz9AEemkJ6es1zdyvw" elementId="org.springsource.ide.eclipse.commons.launch.actionSet" name="Auto::org.springsource.ide.eclipse.commons.launch.actionSet"/>
  1219. <rootContext xmi:id="_ZdxkNT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.search.searchActionSet" name="Auto::org.jkiss.dbeaver.search.searchActionSet"/>
  1220. <rootContext xmi:id="_i0xFgCfvEeq9j5-P04oEqA" elementId="org.eclipse.emf.codegen.ui.jet.actionSet" name="Auto::org.eclipse.emf.codegen.ui.jet.actionSet"/>
  1221. <rootContext xmi:id="_i0xskCfvEeq9j5-P04oEqA" elementId="org.eclipse.text.quicksearch.actionSet" name="Auto::org.eclipse.text.quicksearch.actionSet"/>
  1222. <descriptors xmi:id="_YZv7YD9AEemkJ6es1zdyvw" 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">
  1223. <tags>Editor</tags>
  1224. <tags>removeOnHide</tags>
  1225. </descriptors>
  1226. <descriptors xmi:id="_YZ33MD9AEemkJ6es1zdyvw" elementId="org.eclipse.ant.ui.views.AntView" label="Ant" iconURI="platform:/plugin/org.eclipse.ant.ui/icons/full/eview16/ant_view.png" tooltip="" category="Ant" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1227. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ant.internal.ui.views.AntView"/>
  1228. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ant.ui"/>
  1229. <tags>View</tags>
  1230. <tags>categoryTag:Ant</tags>
  1231. </descriptors>
  1232. <descriptors xmi:id="_YZ990D9AEemkJ6es1zdyvw" elementId="org.eclipse.buildship.ui.views.taskview" label="Gradle Tasks" iconURI="platform:/plugin/org.eclipse.buildship.ui/icons/full/eview16/tasks_view.png" tooltip="" category="Gradle" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1233. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.buildship.ui.internal.view.task.TaskView"/>
  1234. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.buildship.ui"/>
  1235. <tags>View</tags>
  1236. <tags>categoryTag:Gradle</tags>
  1237. </descriptors>
  1238. <descriptors xmi:id="_YZ-k4D9AEemkJ6es1zdyvw" elementId="org.eclipse.buildship.ui.views.executionview" label="Gradle Executions" iconURI="platform:/plugin/org.eclipse.buildship.ui/icons/full/eview16/executions_view.png" tooltip="" category="Gradle" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1239. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.buildship.ui.internal.view.execution.ExecutionsView"/>
  1240. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.buildship.ui"/>
  1241. <tags>View</tags>
  1242. <tags>categoryTag:Gradle</tags>
  1243. </descriptors>
  1244. <descriptors xmi:id="_YZ_zAD9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.connectivity.DataSourceExplorerNavigator" label="Data Source Explorer" iconURI="platform:/plugin/org.eclipse.datatools.connectivity.ui.dse/icons/full/cview16/enterprise_explorer.gif" tooltip="" category="Data Management" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1245. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.datatools.connectivity.ui.dse.views.DataSourceExplorerView"/>
  1246. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.datatools.connectivity.ui.dse"/>
  1247. <tags>View</tags>
  1248. <tags>categoryTag:Data Management</tags>
  1249. </descriptors>
  1250. <descriptors xmi:id="_YaBBID9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.plan.planView" label="Execution Plan" iconURI="platform:/plugin/org.eclipse.datatools.sqltools.plan/icons/sqlplan.gif" tooltip="" category="Data Management" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1251. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.datatools.sqltools.plan.internal.ui.view.PlanView"/>
  1252. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.datatools.sqltools.plan"/>
  1253. <tags>View</tags>
  1254. <tags>categoryTag:Data Management</tags>
  1255. </descriptors>
  1256. <descriptors xmi:id="_YaBoMD9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.result.resultView" label="SQL Results" iconURI="platform:/plugin/org.eclipse.datatools.sqltools.result.ui/icons/sqlresult.gif" tooltip="" category="Data Management" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1257. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.datatools.sqltools.result.internal.ui.view.ResultsView"/>
  1258. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.datatools.sqltools.result.ui"/>
  1259. <tags>View</tags>
  1260. <tags>categoryTag:Data Management</tags>
  1261. </descriptors>
  1262. <descriptors xmi:id="_YaC2UD9AEemkJ6es1zdyvw" 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">
  1263. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.launch.LaunchView"/>
  1264. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
  1265. <tags>View</tags>
  1266. <tags>categoryTag:Debug</tags>
  1267. </descriptors>
  1268. <descriptors xmi:id="_YaEEcD9AEemkJ6es1zdyvw" 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">
  1269. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.breakpoints.BreakpointsView"/>
  1270. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
  1271. <tags>View</tags>
  1272. <tags>categoryTag:Debug</tags>
  1273. </descriptors>
  1274. <descriptors xmi:id="_YaFSkD9AEemkJ6es1zdyvw" 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">
  1275. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.variables.VariablesView"/>
  1276. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
  1277. <tags>View</tags>
  1278. <tags>categoryTag:Debug</tags>
  1279. </descriptors>
  1280. <descriptors xmi:id="_YaF5oD9AEemkJ6es1zdyvw" 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">
  1281. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.expression.ExpressionView"/>
  1282. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
  1283. <tags>View</tags>
  1284. <tags>categoryTag:Debug</tags>
  1285. </descriptors>
  1286. <descriptors xmi:id="_YaHHwD9AEemkJ6es1zdyvw" 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">
  1287. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.registers.RegistersView"/>
  1288. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
  1289. <tags>View</tags>
  1290. <tags>categoryTag:Debug</tags>
  1291. </descriptors>
  1292. <descriptors xmi:id="_YaHu0D9AEemkJ6es1zdyvw" 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">
  1293. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.modules.ModulesView"/>
  1294. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
  1295. <tags>View</tags>
  1296. <tags>categoryTag:Debug</tags>
  1297. </descriptors>
  1298. <descriptors xmi:id="_YaIV4D9AEemkJ6es1zdyvw" 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">
  1299. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.debug.internal.ui.views.memory.MemoryView"/>
  1300. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.debug.ui"/>
  1301. <tags>View</tags>
  1302. <tags>categoryTag:Debug</tags>
  1303. </descriptors>
  1304. <descriptors xmi:id="_YaI88D9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.CoverageView" label="Coverage" iconURI="platform:/plugin/org.eclipse.eclemma.ui/icons/full/eview16/coverage.png" tooltip="" category="Java" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1305. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.eclemma.internal.ui.coverageview.CoverageView"/>
  1306. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.eclemma.ui"/>
  1307. <tags>View</tags>
  1308. <tags>categoryTag:Java</tags>
  1309. </descriptors>
  1310. <descriptors xmi:id="_YaKLED9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesView" label="Git Repositories" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/repo_rep.png" tooltip="" category="Git" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1311. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.egit.ui.internal.repository.RepositoriesView"/>
  1312. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.egit.ui"/>
  1313. <tags>View</tags>
  1314. <tags>categoryTag:Git</tags>
  1315. </descriptors>
  1316. <descriptors xmi:id="_YaLZMD9AEemkJ6es1zdyvw" 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">
  1317. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.egit.ui.internal.staging.StagingView"/>
  1318. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.egit.ui"/>
  1319. <tags>View</tags>
  1320. <tags>categoryTag:Git</tags>
  1321. </descriptors>
  1322. <descriptors xmi:id="_YaMAQD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.InteractiveRebaseView" label="Git Interactive Rebase" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/rebase_interactive.png" tooltip="" category="Git" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1323. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.egit.ui.internal.rebase.RebaseInteractiveView"/>
  1324. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.egit.ui"/>
  1325. <tags>View</tags>
  1326. <tags>categoryTag:Git</tags>
  1327. </descriptors>
  1328. <descriptors xmi:id="_YaMnUD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.CompareTreeView" label="Git Tree Compare" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/obj16/gitrepository.png" tooltip="" category="Git" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1329. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.egit.ui.internal.dialogs.CompareTreeView"/>
  1330. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.egit.ui"/>
  1331. <tags>View</tags>
  1332. <tags>categoryTag:Git</tags>
  1333. <tags>NoRestore</tags>
  1334. </descriptors>
  1335. <descriptors xmi:id="_YaNOYD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.ReflogView" label="Git Reflog" iconURI="platform:/plugin/org.eclipse.egit.ui/icons/eview16/reflog.png" tooltip="" category="Git" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1336. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.egit.ui.internal.reflog.ReflogView"/>
  1337. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.egit.ui"/>
  1338. <tags>View</tags>
  1339. <tags>categoryTag:Git</tags>
  1340. </descriptors>
  1341. <descriptors xmi:id="_YaN1cD9AEemkJ6es1zdyvw" 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">
  1342. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.gef.ui.views.palette.PaletteView"/>
  1343. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.gef"/>
  1344. <tags>View</tags>
  1345. <tags>categoryTag:General</tags>
  1346. </descriptors>
  1347. <descriptors xmi:id="_YaPDkD9AEemkJ6es1zdyvw" elementId="org.eclipse.help.ui.HelpView" label="Help" iconURI="platform:/plugin/org.eclipse.help.ui/icons/view16/help_view.png" tooltip="" category="Help" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1348. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.help.ui.internal.views.HelpView"/>
  1349. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.help.ui"/>
  1350. <tags>View</tags>
  1351. <tags>categoryTag:Help</tags>
  1352. </descriptors>
  1353. <descriptors xmi:id="_YaPqoD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.DisplayView" label="Debug Shell" iconURI="platform:/plugin/org.eclipse.jdt.debug.ui/icons/full/etool16/disp_sbook.png" tooltip="" category="Debug" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1354. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.debug.ui.display.DisplayView"/>
  1355. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.debug.ui"/>
  1356. <tags>View</tags>
  1357. <tags>categoryTag:Debug</tags>
  1358. </descriptors>
  1359. <descriptors xmi:id="_YaRf0D9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.junit.ResultView" label="JUnit" iconURI="platform:/plugin/org.eclipse.jdt.junit/icons/full/eview16/junit.png" tooltip="" category="Java" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1360. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.junit.ui.TestRunnerViewPart"/>
  1361. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.junit"/>
  1362. <tags>View</tags>
  1363. <tags>categoryTag:Java</tags>
  1364. </descriptors>
  1365. <descriptors xmi:id="_YaSt8D9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.PackageExplorer" label="Package Explorer" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/package.png" tooltip="" category="Java" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1366. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.packageview.PackageExplorerPart"/>
  1367. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
  1368. <tags>View</tags>
  1369. <tags>categoryTag:Java</tags>
  1370. </descriptors>
  1371. <descriptors xmi:id="_YaUjID9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.TypeHierarchy" label="Type Hierarchy" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/class_hi.png" tooltip="" category="Java" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1372. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.typehierarchy.TypeHierarchyViewPart"/>
  1373. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
  1374. <tags>View</tags>
  1375. <tags>categoryTag:Java</tags>
  1376. </descriptors>
  1377. <descriptors xmi:id="_YaVKMD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.ProjectsView" label="Projects" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/projects.png" tooltip="" category="Java Browsing" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1378. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.browsing.ProjectsView"/>
  1379. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
  1380. <tags>View</tags>
  1381. <tags>categoryTag:Java Browsing</tags>
  1382. </descriptors>
  1383. <descriptors xmi:id="_YaVxQD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.PackagesView" label="Packages" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/packages.png" tooltip="" category="Java Browsing" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1384. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.browsing.PackagesView"/>
  1385. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
  1386. <tags>View</tags>
  1387. <tags>categoryTag:Java Browsing</tags>
  1388. </descriptors>
  1389. <descriptors xmi:id="_YaWYUD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.TypesView" label="Types" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/types.png" tooltip="" category="Java Browsing" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1390. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.browsing.TypesView"/>
  1391. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
  1392. <tags>View</tags>
  1393. <tags>categoryTag:Java Browsing</tags>
  1394. </descriptors>
  1395. <descriptors xmi:id="_YaW_YD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.MembersView" label="Members" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/members.png" tooltip="" category="Java Browsing" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1396. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.browsing.MembersView"/>
  1397. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
  1398. <tags>View</tags>
  1399. <tags>categoryTag:Java Browsing</tags>
  1400. </descriptors>
  1401. <descriptors xmi:id="_YaXmcD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.callhierarchy.view" label="Call Hierarchy" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/call_hierarchy.png" tooltip="" allowMultiple="true" category="Java" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1402. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.callhierarchy.CallHierarchyViewPart"/>
  1403. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
  1404. <tags>View</tags>
  1405. <tags>categoryTag:Java</tags>
  1406. </descriptors>
  1407. <descriptors xmi:id="_YaYNgD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.texteditor.TemplatesView" label="Templates" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/templates.png" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1408. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.texteditor.templates.TemplatesView"/>
  1409. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
  1410. <tags>View</tags>
  1411. <tags>categoryTag:General</tags>
  1412. </descriptors>
  1413. <descriptors xmi:id="_YaY0kD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.SourceView" label="Declaration" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/source.png" tooltip="" category="Java" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1414. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.infoviews.SourceView"/>
  1415. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
  1416. <tags>View</tags>
  1417. <tags>categoryTag:Java</tags>
  1418. </descriptors>
  1419. <descriptors xmi:id="_YaZboD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.JavadocView" label="Javadoc" iconURI="platform:/plugin/org.eclipse.jdt.ui/icons/full/eview16/javadoc.png" tooltip="" category="Java" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1420. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jdt.internal.ui.infoviews.JavadocView"/>
  1421. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jdt.ui"/>
  1422. <tags>View</tags>
  1423. <tags>categoryTag:Java</tags>
  1424. </descriptors>
  1425. <descriptors xmi:id="_YaaCsD9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.ui.jpaStructureView" label="JPA Structure" iconURI="platform:/plugin/org.eclipse.jpt.jpa.ui/images/views/jpa-structure.gif" tooltip="" category="JPA" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1426. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jpt.jpa.ui.internal.views.JpaStructureView"/>
  1427. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jpt.jpa.ui"/>
  1428. <tags>View</tags>
  1429. <tags>categoryTag:JPA</tags>
  1430. </descriptors>
  1431. <descriptors xmi:id="_YabQ0D9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.ui.jpaDetailsView" label="JPA Details" iconURI="platform:/plugin/org.eclipse.jpt.jpa.ui/images/views/jpa-details.gif" tooltip="" category="JPA" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1432. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jpt.jpa.ui.internal.views.JpaDetailsView"/>
  1433. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jpt.jpa.ui"/>
  1434. <tags>View</tags>
  1435. <tags>categoryTag:JPA</tags>
  1436. </descriptors>
  1437. <descriptors xmi:id="_Yab34D9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.jsf.ui.component.ComponentTreeView" label="JSF Component Tree" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.png" tooltip="" category="JavaServer Faces" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1438. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jst.jsf.ui.internal.component.ComponentTreeView"/>
  1439. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jst.jsf.ui"/>
  1440. <tags>View</tags>
  1441. <tags>categoryTag:JavaServer Faces</tags>
  1442. </descriptors>
  1443. <descriptors xmi:id="_Yace8D9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.jsf.ui.tagregistry.TagRegistryView" label="Tag Registry" iconURI="platform:/plugin/org.eclipse.jst.jsf.ui/icons/obj16/library_obj.gif" tooltip="" category="JavaServer Faces" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1444. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jst.jsf.ui.internal.tagregistry.TagRegistryView"/>
  1445. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jst.jsf.ui"/>
  1446. <tags>View</tags>
  1447. <tags>categoryTag:JavaServer Faces</tags>
  1448. </descriptors>
  1449. <descriptors xmi:id="_YadGAD9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.ws.jaxws.ui.views.AnnotationsView" label="Annotation Properties" iconURI="platform:/plugin/org.eclipse.jst.ws.jaxws.ui/icons/eview16/prop_ps.gif" tooltip="" category="Web Services" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1450. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.jst.ws.internal.jaxws.ui.views.AnnotationsView"/>
  1451. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.jst.ws.jaxws.ui"/>
  1452. <tags>View</tags>
  1453. <tags>categoryTag:Web Services</tags>
  1454. </descriptors>
  1455. <descriptors xmi:id="_YadtED9AEemkJ6es1zdyvw" elementId="org.eclipse.m2e.core.views.MavenRepositoryView" label="Maven Repositories" iconURI="platform:/plugin/org.eclipse.m2e.core.ui/icons/maven_indexes.gif" tooltip="" category="Maven" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1456. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.m2e.core.ui.internal.views.MavenRepositoryView"/>
  1457. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.m2e.core.ui"/>
  1458. <tags>View</tags>
  1459. <tags>categoryTag:Maven</tags>
  1460. </descriptors>
  1461. <descriptors xmi:id="_YaeUID9AEemkJ6es1zdyvw" elementId="org.eclipse.m2e.core.views.MavenBuild" label="Maven Workspace Build" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.png" tooltip="" category="Maven" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1462. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.m2e.core.ui.internal.views.build.BuildDebugView"/>
  1463. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.m2e.core.ui"/>
  1464. <tags>View</tags>
  1465. <tags>categoryTag:Maven</tags>
  1466. </descriptors>
  1467. <descriptors xmi:id="_YaeUIT9AEemkJ6es1zdyvw" 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">
  1468. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.mylyn.internal.commons.repositories.ui.RepositoriesView"/>
  1469. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.mylyn.commons.repositories.ui"/>
  1470. <tags>View</tags>
  1471. <tags>categoryTag:Mylyn</tags>
  1472. </descriptors>
  1473. <descriptors xmi:id="_YafiQD9AEemkJ6es1zdyvw" 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">
  1474. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.mylyn.internal.tasks.ui.views.TaskListView"/>
  1475. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.mylyn.tasks.ui"/>
  1476. <tags>View</tags>
  1477. <tags>categoryTag:Mylyn</tags>
  1478. </descriptors>
  1479. <descriptors xmi:id="_YagJUD9AEemkJ6es1zdyvw" 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">
  1480. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.mylyn.internal.tasks.ui.views.TaskRepositoriesView"/>
  1481. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.mylyn.tasks.ui"/>
  1482. <tags>View</tags>
  1483. <tags>categoryTag:Mylyn</tags>
  1484. </descriptors>
  1485. <descriptors xmi:id="_YagwYD9AEemkJ6es1zdyvw" 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">
  1486. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.oomph.p2.internal.ui.RepositoryExplorer"/>
  1487. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.oomph.p2.ui"/>
  1488. <tags>View</tags>
  1489. <tags>categoryTag:Oomph</tags>
  1490. </descriptors>
  1491. <descriptors xmi:id="_YahXcD9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.api.tools.ui.views.apitooling.views.apitoolingview" label="API Tools" iconURI="platform:/plugin/org.eclipse.pde.api.tools.ui/icons/full/obj16/api_tools.png" tooltip="" category="API Tools" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1492. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.pde.api.tools.ui.internal.views.APIToolingView"/>
  1493. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.pde.api.tools.ui"/>
  1494. <tags>View</tags>
  1495. <tags>categoryTag:API Tools</tags>
  1496. </descriptors>
  1497. <descriptors xmi:id="_Yah-gD9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.runtime.RegistryBrowser" label="Plug-in Registry" iconURI="platform:/plugin/org.eclipse.pde.runtime/icons/eview16/registry.png" tooltip="" category="Plug-in Development" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1498. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.pde.internal.runtime.registry.RegistryBrowser"/>
  1499. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.pde.runtime"/>
  1500. <tags>View</tags>
  1501. <tags>categoryTag:Plug-in Development</tags>
  1502. </descriptors>
  1503. <descriptors xmi:id="_YajMoD9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.PluginsView" label="Plug-ins" iconURI="platform:/plugin/org.eclipse.pde.ui/icons/eview16/plugin_depend.png" tooltip="" category="Plug-in Development" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1504. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.pde.internal.ui.views.plugins.PluginsView"/>
  1505. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.pde.ui"/>
  1506. <tags>View</tags>
  1507. <tags>categoryTag:Plug-in Development</tags>
  1508. </descriptors>
  1509. <descriptors xmi:id="_YajzsD9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.DependenciesView" label="Plug-in Dependencies" iconURI="platform:/plugin/org.eclipse.pde.ui/icons/obj16/req_plugins_obj.png" tooltip="" category="Plug-in Development" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1510. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.pde.internal.ui.views.dependencies.DependenciesView"/>
  1511. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.pde.ui"/>
  1512. <tags>View</tags>
  1513. <tags>categoryTag:Plug-in Development</tags>
  1514. </descriptors>
  1515. <descriptors xmi:id="_Yalo4D9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.TargetPlatformState" label="Target Platform State" iconURI="platform:/plugin/org.eclipse.pde.ui/icons/obj16/target_profile_xml_obj.png" tooltip="" category="Plug-in Development" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1516. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.pde.internal.ui.views.target.TargetStateView"/>
  1517. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.pde.ui"/>
  1518. <tags>View</tags>
  1519. <tags>categoryTag:Plug-in Development</tags>
  1520. </descriptors>
  1521. <descriptors xmi:id="_YamP8D9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.ImageBrowserView" label="Plug-in Image Browser" iconURI="platform:/plugin/org.eclipse.pde.ui/icons/obj16/psearch_obj.png" tooltip="" category="Plug-in Development" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1522. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.pde.internal.ui.views.imagebrowser.ImageBrowserView"/>
  1523. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.pde.ui"/>
  1524. <tags>View</tags>
  1525. <tags>categoryTag:Plug-in Development</tags>
  1526. </descriptors>
  1527. <descriptors xmi:id="_Yam3AD9AEemkJ6es1zdyvw" elementId="org.eclipse.rse.ui.view.systemView" label="Remote Systems" iconURI="platform:/plugin/org.eclipse.rse.ui/icons/full/cview16/system_view.gif" tooltip="" category="Remote Systems" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1528. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.rse.internal.ui.view.SystemViewPart"/>
  1529. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.rse.ui"/>
  1530. <tags>View</tags>
  1531. <tags>categoryTag:Remote Systems</tags>
  1532. </descriptors>
  1533. <descriptors xmi:id="_YaoFID9AEemkJ6es1zdyvw" elementId="org.eclipse.rse.ui.view.teamView" label="Team" iconURI="platform:/plugin/org.eclipse.rse.ui/icons/full/cview16/team_view.gif" tooltip="" category="Remote Systems" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1534. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.rse.internal.ui.view.team.SystemTeamViewPart"/>
  1535. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.rse.ui"/>
  1536. <tags>View</tags>
  1537. <tags>categoryTag:Remote Systems</tags>
  1538. </descriptors>
  1539. <descriptors xmi:id="_YaosMD9AEemkJ6es1zdyvw" elementId="org.eclipse.rse.ui.view.systemTableView" label="Remote System Details" iconURI="platform:/plugin/org.eclipse.rse.ui/icons/full/cview16/system_view.gif" tooltip="" category="Remote Systems" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1540. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.rse.internal.ui.view.SystemTableViewPart"/>
  1541. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.rse.ui"/>
  1542. <tags>View</tags>
  1543. <tags>categoryTag:Remote Systems</tags>
  1544. </descriptors>
  1545. <descriptors xmi:id="_YapTQD9AEemkJ6es1zdyvw" elementId="org.eclipse.rse.ui.view.SystemSearchView" label="Remote Search" iconURI="platform:/plugin/org.eclipse.rse.ui/icons/full/obj16/system_search.gif" tooltip="" category="Remote Systems" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1546. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.rse.internal.ui.view.search.SystemSearchViewPart"/>
  1547. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.rse.ui"/>
  1548. <tags>View</tags>
  1549. <tags>categoryTag:Remote Systems</tags>
  1550. </descriptors>
  1551. <descriptors xmi:id="_YapTQT9AEemkJ6es1zdyvw" elementId="org.eclipse.rse.ui.view.scratchpad.SystemScratchpadViewPart" label="Remote Scratchpad" iconURI="platform:/plugin/org.eclipse.rse.ui/icons/full/view16/scratchpad_view.gif" tooltip="" category="Remote Systems" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1552. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.rse.internal.ui.view.scratchpad.SystemScratchpadViewPart"/>
  1553. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.rse.ui"/>
  1554. <tags>View</tags>
  1555. <tags>categoryTag:Remote Systems</tags>
  1556. </descriptors>
  1557. <descriptors xmi:id="_Yap6UD9AEemkJ6es1zdyvw" elementId="org.eclipse.rse.ui.view.monitorView" label="Remote Monitor" iconURI="platform:/plugin/org.eclipse.rse.ui/icons/full/view16/system_view.gif" tooltip="" category="Remote Systems" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1558. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.rse.internal.ui.view.monitor.SystemMonitorViewPart"/>
  1559. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.rse.ui"/>
  1560. <tags>View</tags>
  1561. <tags>categoryTag:Remote Systems</tags>
  1562. </descriptors>
  1563. <descriptors xmi:id="_YaqhYD9AEemkJ6es1zdyvw" elementId="org.eclipse.search.SearchResultView" label="Classic Search" iconURI="platform:/plugin/org.eclipse.search/icons/full/eview16/searchres.png" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1564. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.search.internal.ui.SearchResultView"/>
  1565. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.search"/>
  1566. <tags>View</tags>
  1567. <tags>categoryTag:General</tags>
  1568. </descriptors>
  1569. <descriptors xmi:id="_YarIcD9AEemkJ6es1zdyvw" elementId="org.eclipse.search.ui.views.SearchView" label="Search" iconURI="platform:/plugin/org.eclipse.search/icons/full/eview16/searchres.png" tooltip="" allowMultiple="true" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1570. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.search2.internal.ui.SearchView"/>
  1571. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.search"/>
  1572. <tags>View</tags>
  1573. <tags>categoryTag:General</tags>
  1574. </descriptors>
  1575. <descriptors xmi:id="_YarvgD9AEemkJ6es1zdyvw" elementId="org.eclipse.team.sync.views.SynchronizeView" label="Synchronize" iconURI="platform:/plugin/org.eclipse.team.ui/icons/full/eview16/synch_synch.png" tooltip="" allowMultiple="true" category="Team" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1576. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.team.internal.ui.synchronize.SynchronizeView"/>
  1577. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.team.ui"/>
  1578. <tags>View</tags>
  1579. <tags>categoryTag:Team</tags>
  1580. </descriptors>
  1581. <descriptors xmi:id="_YasWkD9AEemkJ6es1zdyvw" elementId="org.eclipse.team.ui.GenericHistoryView" label="History" iconURI="platform:/plugin/org.eclipse.team.ui/icons/full/eview16/history_view.png" tooltip="" allowMultiple="true" category="Team" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1582. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.team.internal.ui.history.GenericHistoryView"/>
  1583. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.team.ui"/>
  1584. <tags>View</tags>
  1585. <tags>categoryTag:Team</tags>
  1586. </descriptors>
  1587. <descriptors xmi:id="_Yas9oD9AEemkJ6es1zdyvw" elementId="org.eclipse.tips.ide.tipPart" label="Tip of the Day" iconURI="platform:/plugin/org.eclipse.tips.ui/icons/lightbulb.png" tooltip="" category="Help" closeable="true" contributionURI="bundleclass://org.eclipse.tips.ide/org.eclipse.tips.ide.internal.TipPart">
  1588. <tags>View</tags>
  1589. <tags>categoryTag:Help</tags>
  1590. </descriptors>
  1591. <descriptors xmi:id="_YatksD9AEemkJ6es1zdyvw" 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">
  1592. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.tm.terminal.view.ui.view.TerminalsView"/>
  1593. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.tm.terminal.view.ui"/>
  1594. <tags>View</tags>
  1595. <tags>categoryTag:Terminal</tags>
  1596. </descriptors>
  1597. <descriptors xmi:id="_YauLwD9AEemkJ6es1zdyvw" 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">
  1598. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.tm.terminal.view.ui.view.OldTerminalsViewHandler"/>
  1599. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.tm.terminal.view.ui"/>
  1600. <tags>View</tags>
  1601. <tags>categoryTag:Other</tags>
  1602. </descriptors>
  1603. <descriptors xmi:id="_Yauy0D9AEemkJ6es1zdyvw" 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">
  1604. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.ViewIntroAdapterPart"/>
  1605. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui"/>
  1606. <tags>View</tags>
  1607. <tags>categoryTag:General</tags>
  1608. </descriptors>
  1609. <descriptors xmi:id="_YaxPED9AEemkJ6es1zdyvw" 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">
  1610. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.browser.WebBrowserView"/>
  1611. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.browser"/>
  1612. <tags>View</tags>
  1613. <tags>categoryTag:General</tags>
  1614. </descriptors>
  1615. <descriptors xmi:id="_Yax2ID9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.cheatsheets.views.CheatSheetView" label="Cheat Sheets" iconURI="platform:/plugin/org.eclipse.ui.cheatsheets/icons/view16/cheatsheet_view.png" tooltip="" category="Help" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1616. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.cheatsheets.views.CheatSheetView"/>
  1617. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.cheatsheets"/>
  1618. <tags>View</tags>
  1619. <tags>categoryTag:Help</tags>
  1620. </descriptors>
  1621. <descriptors xmi:id="_Ya05cD9AEemkJ6es1zdyvw" 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">
  1622. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.console.ConsoleView"/>
  1623. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.console"/>
  1624. <tags>View</tags>
  1625. <tags>categoryTag:General</tags>
  1626. </descriptors>
  1627. <descriptors xmi:id="_Ya2HkD9AEemkJ6es1zdyvw" 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">
  1628. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.progress.ProgressView"/>
  1629. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
  1630. <tags>View</tags>
  1631. <tags>categoryTag:General</tags>
  1632. </descriptors>
  1633. <descriptors xmi:id="_Ya2uoD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.ResourceNavigator" label="Navigator (Deprecated)" 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">
  1634. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.views.navigator.ResourceNavigator"/>
  1635. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
  1636. <tags>View</tags>
  1637. <tags>categoryTag:General</tags>
  1638. </descriptors>
  1639. <descriptors xmi:id="_Ya3VsD9AEemkJ6es1zdyvw" 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">
  1640. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.markers.BookmarksView"/>
  1641. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
  1642. <tags>View</tags>
  1643. <tags>categoryTag:General</tags>
  1644. </descriptors>
  1645. <descriptors xmi:id="_Ya38wD9AEemkJ6es1zdyvw" 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">
  1646. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.markers.TasksView"/>
  1647. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
  1648. <tags>View</tags>
  1649. <tags>categoryTag:General</tags>
  1650. </descriptors>
  1651. <descriptors xmi:id="_Ya4j0D9AEemkJ6es1zdyvw" 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">
  1652. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.markers.ProblemsView"/>
  1653. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
  1654. <tags>View</tags>
  1655. <tags>categoryTag:General</tags>
  1656. </descriptors>
  1657. <descriptors xmi:id="_Ya5K4D9AEemkJ6es1zdyvw" 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">
  1658. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.markers.AllMarkersView"/>
  1659. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.ide"/>
  1660. <tags>View</tags>
  1661. <tags>categoryTag:General</tags>
  1662. </descriptors>
  1663. <descriptors xmi:id="_Ya7nID9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigator.ProjectExplorer" label="Project Explorer" iconURI="platform:/plugin/org.eclipse.ui.navigator.resources/icons/full/eview16/resource_persp.png" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1664. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.navigator.resources.ProjectExplorer"/>
  1665. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.navigator.resources"/>
  1666. <tags>View</tags>
  1667. <tags>categoryTag:General</tags>
  1668. </descriptors>
  1669. <descriptors xmi:id="_Ya81QD9AEemkJ6es1zdyvw" 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">
  1670. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.views.properties.PropertySheet"/>
  1671. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.views"/>
  1672. <tags>View</tags>
  1673. <tags>categoryTag:General</tags>
  1674. </descriptors>
  1675. <descriptors xmi:id="_Ya9cUD9AEemkJ6es1zdyvw" 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">
  1676. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.views.contentoutline.ContentOutline"/>
  1677. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.views"/>
  1678. <tags>View</tags>
  1679. <tags>categoryTag:General</tags>
  1680. </descriptors>
  1681. <descriptors xmi:id="_Ya9cUT9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.runtime.LogView" label="Error Log" iconURI="platform:/plugin/org.eclipse.ui.views.log/icons/eview16/error_log.png" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1682. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.log.LogView"/>
  1683. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.views.log"/>
  1684. <tags>View</tags>
  1685. <tags>categoryTag:General</tags>
  1686. </descriptors>
  1687. <descriptors xmi:id="_Ya-qcD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.minimap.MinimapView" label="Minimap" iconURI="platform:/plugin/org.eclipse.ui.workbench.texteditor/icons/full/eview16/minimap.png" tooltip="" category="General" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1688. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.ui.internal.views.minimap.MinimapView"/>
  1689. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.ui.workbench.texteditor"/>
  1690. <tags>View</tags>
  1691. <tags>categoryTag:General</tags>
  1692. </descriptors>
  1693. <descriptors xmi:id="_Ya_RgD9AEemkJ6es1zdyvw" 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">
  1694. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.common.snippets.internal.ui.SnippetsView"/>
  1695. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.common.snippets"/>
  1696. <tags>View</tags>
  1697. <tags>categoryTag:General</tags>
  1698. </descriptors>
  1699. <descriptors xmi:id="_Ya_4kD9AEemkJ6es1zdyvw" 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">
  1700. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.internet.monitor.ui.internal.view.MonitorView"/>
  1701. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.internet.monitor.ui"/>
  1702. <tags>View</tags>
  1703. <tags>categoryTag:Debug</tags>
  1704. </descriptors>
  1705. <descriptors xmi:id="_YbAfoD9AEemkJ6es1zdyvw" 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">
  1706. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.jsdt.internal.ui.typehierarchy.TypeHierarchyViewPart"/>
  1707. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.jsdt.ui"/>
  1708. <tags>View</tags>
  1709. <tags>categoryTag:JavaScript</tags>
  1710. </descriptors>
  1711. <descriptors xmi:id="_YbBtwD9AEemkJ6es1zdyvw" 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">
  1712. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.jsdt.internal.ui.packageview.PackageExplorerPart"/>
  1713. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.jsdt.ui"/>
  1714. <tags>View</tags>
  1715. <tags>categoryTag:JavaScript</tags>
  1716. </descriptors>
  1717. <descriptors xmi:id="_YbBtwT9AEemkJ6es1zdyvw" 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">
  1718. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.jsdt.internal.ui.callhierarchy.CallHierarchyViewPart"/>
  1719. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.jsdt.ui"/>
  1720. <tags>View</tags>
  1721. <tags>categoryTag:JavaScript</tags>
  1722. </descriptors>
  1723. <descriptors xmi:id="_YbCU0D9AEemkJ6es1zdyvw" 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">
  1724. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.jsdt.internal.ui.infoviews.SourceView"/>
  1725. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.jsdt.ui"/>
  1726. <tags>View</tags>
  1727. <tags>categoryTag:JavaScript</tags>
  1728. </descriptors>
  1729. <descriptors xmi:id="_YbCU0T9AEemkJ6es1zdyvw" 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">
  1730. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.jsdt.internal.ui.infoviews.JavadocView"/>
  1731. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.jsdt.ui"/>
  1732. <tags>View</tags>
  1733. <tags>categoryTag:JavaScript</tags>
  1734. </descriptors>
  1735. <descriptors xmi:id="_YbC74D9AEemkJ6es1zdyvw" 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">
  1736. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.server.ui.internal.cnf.ServersView2"/>
  1737. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.server.ui"/>
  1738. <tags>View</tags>
  1739. <tags>categoryTag:Server</tags>
  1740. </descriptors>
  1741. <descriptors xmi:id="_YbExED9AEemkJ6es1zdyvw" 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">
  1742. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.xml.ui.internal.views.annotations.XMLAnnotationsView"/>
  1743. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.xml.ui"/>
  1744. <tags>View</tags>
  1745. <tags>categoryTag:XML</tags>
  1746. </descriptors>
  1747. <descriptors xmi:id="_YbF_MD9AEemkJ6es1zdyvw" 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">
  1748. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.xml.ui.internal.views.contentmodel.ContentModelView"/>
  1749. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.xml.ui"/>
  1750. <tags>View</tags>
  1751. <tags>categoryTag:XML</tags>
  1752. </descriptors>
  1753. <descriptors xmi:id="_YbGmQD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.views.XPathView" label="XPath" iconURI="platform:/plugin/org.eclipse.wst.xml.xpath.ui/icons/full/xpath.gif" tooltip="" category="XML" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1754. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.xml.xpath.ui.internal.views.XPathView"/>
  1755. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.xml.xpath.ui"/>
  1756. <tags>View</tags>
  1757. <tags>categoryTag:XML</tags>
  1758. </descriptors>
  1759. <descriptors xmi:id="_YbHNUD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xsl.jaxp.debug.ui.resultview" label="Result" iconURI="platform:/plugin/org.eclipse.ui/icons/full/eview16/defaultview_misc.png" tooltip="" category="XML" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1760. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.xsl.jaxp.debug.ui.internal.views.ResultView"/>
  1761. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.xsl.jaxp.debug.ui"/>
  1762. <tags>View</tags>
  1763. <tags>categoryTag:XML</tags>
  1764. </descriptors>
  1765. <descriptors xmi:id="_YbH0YD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xsl.ui.view.outline" label="Stylesheet Model" iconURI="platform:/plugin/org.eclipse.wst.xsl.ui/icons/full/hierarchy.gif" tooltip="" category="XML" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1766. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.wst.xsl.ui.internal.views.stylesheet.StylesheetModelView"/>
  1767. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.wst.xsl.ui"/>
  1768. <tags>View</tags>
  1769. <tags>categoryTag:XML</tags>
  1770. </descriptors>
  1771. <descriptors xmi:id="_YbIbcD9AEemkJ6es1zdyvw" elementId="org.springframework.ide.eclipse.boot.dash.views.BootDashView" label="Boot Dashboard" iconURI="platform:/plugin/org.springframework.ide.eclipse.boot.dash/icons/boot-icon.png" tooltip="" category="Other" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1772. <persistedState key="originalCompatibilityViewClass" value="org.springframework.ide.eclipse.boot.dash.views.BootDashTreeView"/>
  1773. <persistedState key="originalCompatibilityViewBundle" value="org.springframework.ide.eclipse.boot.dash"/>
  1774. <tags>View</tags>
  1775. <tags>categoryTag:Other</tags>
  1776. </descriptors>
  1777. <descriptors xmi:id="_i0YD8CfvEeq9j5-P04oEqA" elementId="org.eclipse.pde.ui.FeaturesView" label="Features" iconURI="platform:/plugin/org.eclipse.pde.ui/icons/obj16/feature_obj.png" tooltip="" category="Plug-in Development" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1778. <persistedState key="originalCompatibilityViewClass" value="org.eclipse.pde.internal.ui.views.features.FeaturesView"/>
  1779. <persistedState key="originalCompatibilityViewBundle" value="org.eclipse.pde.ui"/>
  1780. <tags>View</tags>
  1781. <tags>categoryTag:Plug-in Development</tags>
  1782. </descriptors>
  1783. <descriptors xmi:id="_i0kRMCfvEeq9j5-P04oEqA" elementId="com.genuitec.eclipse.icons.designer.ui.views.IconsDesignerView" label="Icon Designer" iconURI="platform:/plugin/com.genuitec.eclipse.theming.icon.designer/icons/icons-designer-view.png" tooltip="" category="DevStyle" closeable="true" contributionURI="bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.e4.compatibility.CompatibilityView">
  1784. <persistedState key="originalCompatibilityViewClass" value="com.genuitec.eclipse.theming.icon.designer.views.IconsDesignerView"/>
  1785. <persistedState key="originalCompatibilityViewBundle" value="com.genuitec.eclipse.theming.icon.designer"/>
  1786. <tags>View</tags>
  1787. <tags>categoryTag:DevStyle</tags>
  1788. </descriptors>
  1789. <menuContributions xmi:id="_YO2S-D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.customizePerspective" contributorURI="platform:/plugin/org.eclipse.platform" positionInParent="popup:toolbar">
  1790. <children xsi:type="menu:HandledMenuItem" xmi:id="_YO2S-T9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.customizePerspective" contributorURI="platform:/plugin/org.eclipse.platform" label="%command.name.customize" command="_YO2S-j9AEemkJ6es1zdyvw"/>
  1791. </menuContributions>
  1792. <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">
  1793. <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">
  1794. <tags>glue</tags>
  1795. <tags>move_after:PerspectiveSpacer</tags>
  1796. <tags>SHOW_RESTORE_MENU</tags>
  1797. </children>
  1798. <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">
  1799. <tags>move_after:Spacer Glue</tags>
  1800. <tags>HIDEABLE</tags>
  1801. <tags>SHOW_RESTORE_MENU</tags>
  1802. </children>
  1803. <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">
  1804. <tags>glue</tags>
  1805. <tags>move_after:SearchField</tags>
  1806. <tags>SHOW_RESTORE_MENU</tags>
  1807. </children>
  1808. </trimContributions>
  1809. <commands xmi:id="_YO2S-j9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.customizePerspective" contributorURI="platform:/plugin/org.eclipse.platform" commandName="Customize Perspective" description="Customize the current perspective"/>
  1810. <commands xmi:id="_YPz8QD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.correction.inlineLocal.assist" commandName="Quick Assist - Inline local variable" description="Invokes quick assist and selects 'Inline local variable'" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  1811. <commands xmi:id="_YPz8QT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.select.pageUp" commandName="Select Page Up" description="Select to the top of the page" category="_YPw49D9AEemkJ6es1zdyvw"/>
  1812. <commands xmi:id="_YP0jUD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.toggleWordWrap" commandName="Toggle Word Wrap" description="Toggle word wrap in the current text editor" category="_YPw48T9AEemkJ6es1zdyvw"/>
  1813. <commands xmi:id="_YP1KYD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.ResetQuickdiffBaseline" commandName="Reset quickdiff baseline" category="_YPxgDz9AEemkJ6es1zdyvw">
  1814. <parameters xmi:id="_YP1KYT9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.ResetQuickdiffBaselineTarget" name="Reset target (HEAD, HEAD^1)" optional="false"/>
  1815. </commands>
  1816. <commands xmi:id="_YP1KYj9AEemkJ6es1zdyvw" elementId="org.eclipse.oomph.p2.ui.SearchRequirements" commandName="Search Requirements" category="_YPxgBj9AEemkJ6es1zdyvw"/>
  1817. <commands xmi:id="_YP1KYz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.correction.convertLocalToField.assist" commandName="Quick Assist - Convert local variable to field" description="Invokes quick assist and selects 'Convert local variable to field'" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  1818. <commands xmi:id="_YP1KZD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.cell.setDefault" commandName="Set to default" description="Set cell to default value" category="_YPw4_T9AEemkJ6es1zdyvw"/>
  1819. <commands xmi:id="_YP1KZT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.grid.togglePreview" commandName="&#x5207;&#x6362;&#x7ed3;&#x679c;&#x9762;&#x677f;" description="&#x5207;&#x6362;&#x989d;&#x5916;&#x7ed3;&#x679c;&#x9762;&#x677f;" category="_YPw4_T9AEemkJ6es1zdyvw"/>
  1820. <commands xmi:id="_YP1KZj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.correction.addThrowsDecl" commandName="Quick Fix - Add throws declaration" description="Invokes quick assist and selects 'Add throws declaration'" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  1821. <commands xmi:id="_YP1KZz9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.junitPluginShortcut.coverage" commandName="Coverage JUnit Plug-in Test" description="Coverage JUnit Plug-in Test" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  1822. <commands xmi:id="_YP1KaD9AEemkJ6es1zdyvw" elementId="org.eclipse.tm.terminal.maximize" commandName="Maximize Active View or Editor" category="_YPxgKD9AEemkJ6es1zdyvw"/>
  1823. <commands xmi:id="_YP1KaT9AEemkJ6es1zdyvw" elementId="org.eclipse.oomph.setup.editor.openDiscoveredType" commandName="Open Discovered Type" category="_YPxgGT9AEemkJ6es1zdyvw"/>
  1824. <commands xmi:id="_YP1Kaj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.deletePreviousWord" commandName="Delete Previous Word" description="Delete the previous word" category="_YPw49D9AEemkJ6es1zdyvw"/>
  1825. <commands xmi:id="_YP1Kaz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.search.declarations.in.workspace" commandName="Declaration in Workspace" description="Search for declarations of the selected element in the workspace" category="_YPxgKT9AEemkJ6es1zdyvw"/>
  1826. <commands xmi:id="_YP1KbD9AEemkJ6es1zdyvw" 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="_YPxgGj9AEemkJ6es1zdyvw">
  1827. <parameters xmi:id="_YP1KbT9AEemkJ6es1zdyvw" elementId="elementRef" name="JavaScript element reference" typeId="org.eclipse.wst.jsdt.ui.commands.javaElementReference" optional="false"/>
  1828. </commands>
  1829. <commands xmi:id="_YP1Kbj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.delimiter.unix" commandName="Convert Line Delimiters to Unix (LF, \n, 0A, &#xb6;)" description="Converts the line delimiters to Unix (LF, \n, 0A, &#xb6;)" category="_YPw4_D9AEemkJ6es1zdyvw"/>
  1830. <commands xmi:id="_YP1Kbz9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
  1831. <commands xmi:id="_YP1KcD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.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="_YPxgKT9AEemkJ6es1zdyvw"/>
  1832. <commands xmi:id="_YP1xcD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.project.active" commandName="&#x8bbe;&#x4e3a;&#x6d3b;&#x52a8;&#x9879;&#x76ee;" description="&#x8bbe;&#x4e3a;&#x6d3b;&#x52a8;&#x9879;&#x76ee;" category="_YPxgFD9AEemkJ6es1zdyvw"/>
  1833. <commands xmi:id="_YP1xcT9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.Edit" commandName="Edit Commit" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  1834. <commands xmi:id="_YP1xcj9AEemkJ6es1zdyvw" elementId="org.eclipse.epp.mpc.ui.command.showMarketplaceWizard" commandName="Eclipse Marketplace" description="Show the Eclipse Marketplace wizard" category="_YPxgDz9AEemkJ6es1zdyvw">
  1835. <parameters xmi:id="_YP1xcz9AEemkJ6es1zdyvw" elementId="trigger" name="trigger"/>
  1836. </commands>
  1837. <commands xmi:id="_YP1xdD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.count" commandName="&#x884c;&#x6570;" description="&#x68c0;&#x7d22;&#x603b;&#x884c;&#x6570;" category="_YPw4_T9AEemkJ6es1zdyvw"/>
  1838. <commands xmi:id="_YP1xdT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.js.grunt.commands.gruntLaunch" commandName="Run as Grunt Task" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  1839. <commands xmi:id="_YP1xdj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.txn.pending" commandName="&#x5f85;&#x5904;&#x7406;&#x4e8b;&#x52a1;" description="&#x6240;&#x6709;&#x5f85;&#x5904;&#x7406;&#x4e8b;&#x52a1;&#x7684;&#x5217;&#x8868;" category="_YPxgJz9AEemkJ6es1zdyvw"/>
  1840. <commands xmi:id="_YP1xdz9AEemkJ6es1zdyvw" elementId="org.eclipse.ant.ui.toggleMarkOccurrences" commandName="Toggle Ant Mark Occurrences" description="Toggles mark occurrences in Ant editors" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  1841. <commands xmi:id="_YP1xeD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.addToWorkingSet" commandName="Add to Working Set" description="Adds the selected object to a working set." category="_YPw48T9AEemkJ6es1zdyvw"/>
  1842. <commands xmi:id="_YP1xeT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.callhierarchy.view" commandName="JavaScript Call Hierarchy" description="Show the Call Hierarchy view" category="_YPxgEj9AEemkJ6es1zdyvw"/>
  1843. <commands xmi:id="_YP1xej9AEemkJ6es1zdyvw" elementId="org.springframework.tooling.boot.ls.ToggleComment" commandName="Toggle Comment" category="_YPxgAT9AEemkJ6es1zdyvw"/>
  1844. <commands xmi:id="_YP1xez9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.connectivity.commands.export" commandName="Export Profiles Command" description="Command to export connection profiles" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  1845. <commands xmi:id="_YP1xfD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.junit.junitShortcut.debug" commandName="Debug JUnit Test" description="Debug JUnit Test" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  1846. <commands xmi:id="_YP1xfT9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.wikitext.ui.editor.showCheatSheetCommand" commandName="Show Markup Cheat Sheet" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  1847. <commands xmi:id="_YP1xfj9AEemkJ6es1zdyvw" elementId="org.eclipse.team.ui.TeamSynchronizingPerspective" commandName="Team Synchronizing" description="Open the Team Synchronizing Perspective" category="_YPyHET9AEemkJ6es1zdyvw"/>
  1848. <commands xmi:id="_YP1xfz9AEemkJ6es1zdyvw" elementId="org.eclipse.ant.ui.open.declaration.command" commandName="Open Declaration" description="Opens the Ant editor on the referenced element" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  1849. <commands xmi:id="_YP1xgD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.text.content.format" commandName="&#x5185;&#x5bb9;&#x683c;&#x5f0f;&#x5316;" description="&#x683c;&#x5f0f;&#x5316;&#x6587;&#x672c;" category="_YPxgDD9AEemkJ6es1zdyvw"/>
  1850. <commands xmi:id="_YP1xgT9AEemkJ6es1zdyvw" elementId="org.eclipse.epp.mpc.ui.command.showInstalled" commandName="Manage installed plug-ins" description="Update or uninstall plug-ins installed from the Marketplace" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  1851. <commands xmi:id="_YP1xgj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.run.statement" commandName="&#x6267;&#x884c; SQL &#x8bed;&#x53e5;" description="&#x6267;&#x884c; SQL &#x8bed;&#x53e5;" category="_YPxgDD9AEemkJ6es1zdyvw"/>
  1852. <commands xmi:id="_YP1xgz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.create.delegate.methods" commandName="Generate Delegate Methods" description="Add delegate methods for a type's fields" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  1853. <commands xmi:id="_YP1xhD9AEemkJ6es1zdyvw" elementId="org.eclipse.gef.ui.palette_view" commandName="Palette" category="_YPxgEj9AEemkJ6es1zdyvw"/>
  1854. <commands xmi:id="_YP1xhT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.views.XPathView.prefixes" commandName="&amp;Edit Namespace Prefixes" category="_YPxgCT9AEemkJ6es1zdyvw"/>
  1855. <commands xmi:id="_YP1xhj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.word.wrap" commandName="&#x5207;&#x6362;&#x81ea;&#x52a8;&#x6362;&#x884c;" description="&#x5207;&#x6362;&#x6587;&#x672c;&#x7f16;&#x8f91;&#x5668;&#x81ea;&#x52a8;&#x6362;&#x884c;" category="_YPxgDD9AEemkJ6es1zdyvw"/>
  1856. <commands xmi:id="_YP1xhz9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.sqleditor.toggleCommentAction" commandName="Toggle Comment" category="_YPw48T9AEemkJ6es1zdyvw"/>
  1857. <commands xmi:id="_YP1xiD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.context.ui.commands.task.clearContext" commandName="Clear Context" category="_YPw49j9AEemkJ6es1zdyvw"/>
  1858. <commands xmi:id="_YP1xiT9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
  1859. <commands xmi:id="_YP1xij9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
  1860. <commands xmi:id="_YP1xiz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.pull.up" commandName="Pull Up" description="Move members to a superclass" category="_YPxgED9AEemkJ6es1zdyvw"/>
  1861. <commands xmi:id="_YP1xjD9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.ToggleLineBreakpoint" commandName="Toggle Line Breakpoint" description="Creates or removes a line breakpoint" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  1862. <commands xmi:id="_YP1xjT9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.searchForTask" commandName="Search Repository for Task" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  1863. <commands xmi:id="_YP1xjj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.folding.collapseMembers" commandName="Collapse Members" description="Collapse all members" category="_YPw49D9AEemkJ6es1zdyvw"/>
  1864. <commands xmi:id="_YP1xjz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.new.folder" commandName="&#x65b0;&#x5efa;&#x6587;&#x4ef6;&#x5939;" description="&#x521b;&#x5efa;&#x65b0;&#x8fde;&#x63a5;&#x6587;&#x4ef6;&#x5939;" category="_YPxgFD9AEemkJ6es1zdyvw"/>
  1865. <commands xmi:id="_YP1xkD9AEemkJ6es1zdyvw" elementId="org.dadacoalition.yedit.commands.toggleComment" commandName="Toggle Comment" description="Turn comments on/off for a selection" category="_YPw49T9AEemkJ6es1zdyvw"/>
  1866. <commands xmi:id="_YP1xkT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.correction.addImport" commandName="Quick Fix - Add import" description="Invokes quick assist and selects 'Add import'" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  1867. <commands xmi:id="_YP1xkj9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
  1868. <commands xmi:id="_YP1xkz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.internal.reflog.CheckoutCommand" commandName="Check Out" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  1869. <commands xmi:id="_YP1xlD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.move" commandName="Move..." description="Move the selected item" category="_YPw4_D9AEemkJ6es1zdyvw"/>
  1870. <commands xmi:id="_YP1xlT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.refactor.migrate.jar" commandName="Migrate JAR File" description="Migrate a JAR File to a new version" category="_YPxgIj9AEemkJ6es1zdyvw"/>
  1871. <commands xmi:id="_YP1xlj9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.maximizePart" commandName="Maximize Part" description="Maximize Part" category="_YPxgFz9AEemkJ6es1zdyvw"/>
  1872. <commands xmi:id="_YP1xlz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ext.oracle.code.package.navigate" commandName="Go to source code" description="Navigate to object source code" category="_YPxgEz9AEemkJ6es1zdyvw"/>
  1873. <commands xmi:id="_YP1xmD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.show.outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  1874. <commands xmi:id="_YP2YgD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.commands.openElementInEditor" commandName="Open JavaScript Element" description="Open a JavaScript element in its editor" category="_YPxgGj9AEemkJ6es1zdyvw">
  1875. <parameters xmi:id="_YP2YgT9AEemkJ6es1zdyvw" elementId="elementRef" name="JavaScript element reference" typeId="org.eclipse.wst.jsdt.ui.commands.javaElementReference" optional="false"/>
  1876. </commands>
  1877. <commands xmi:id="_YP2Ygj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.TypesView" commandName="JavaScript Types" description="Show the Types view" category="_YPxgEj9AEemkJ6es1zdyvw"/>
  1878. <commands xmi:id="_YP2Ygz9AEemkJ6es1zdyvw" elementId="org.eclipse.cft.server.ui.internal.actions.showconsoleviewercommand" commandName="Show Recent Logs" description="Show Recent Logs" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  1879. <commands xmi:id="_YP2YhD9AEemkJ6es1zdyvw" elementId="org.eclipse.compare.ignoreWhiteSpace" commandName="Ignore White Space" description="Ignore white space where applicable" category="_YPxgHz9AEemkJ6es1zdyvw"/>
  1880. <commands xmi:id="_YP2YhT9AEemkJ6es1zdyvw" elementId="org.eclipse.oomph.setup.editor.importProjects" commandName="Import Projects" category="_YPxgGT9AEemkJ6es1zdyvw"/>
  1881. <commands xmi:id="_YP2Yhj9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
  1882. <commands xmi:id="_YP2Yhz9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.hideUnusedElements" commandName="Hide Unused Elements" category="_YPw4-z9AEemkJ6es1zdyvw"/>
  1883. <commands xmi:id="_YP2YiD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.generate.constructor.using.fields" commandName="Generate Constructor using Fields" description="Choose fields to initialize and constructor from superclass to call " category="_YPyHFD9AEemkJ6es1zdyvw"/>
  1884. <commands xmi:id="_YP2YiT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.run.all.rows" commandName="&#x9009;&#x62e9;&#x6240;&#x6709;&#x884c;" description="&#x9009;&#x62e9;&#x5e76;&#x663e;&#x793a;&#x6240;&#x6709;&#x884c;(&#x6ca1;&#x6709;&#x83b7;&#x53d6;&#x5927;&#x5c0f;&#x9650;&#x5236;)" category="_YPxgDD9AEemkJ6es1zdyvw"/>
  1885. <commands xmi:id="_YP2Yij9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.switchPresentation" commandName="&#x5207;&#x6362;&#x8868;&#x793a;" description="&#x5207;&#x6362;&#x7ed3;&#x679c;&#x8868;&#x793a;" category="_YPw4_T9AEemkJ6es1zdyvw"/>
  1886. <commands xmi:id="_YP2Yiz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.ui.disable.grammar.constraints" commandName="Turn off Grammar Constraints" description="Turn off grammar Constraints" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  1887. <commands xmi:id="_YP2YjD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.commands.showElementInTypeHierarchyView" commandName="Show Java Element Type Hierarchy" description="Show a Java element in the Type Hierarchy view" category="_YPxgGj9AEemkJ6es1zdyvw">
  1888. <parameters xmi:id="_YP2YjT9AEemkJ6es1zdyvw" elementId="elementRef" name="Java element reference" typeId="org.eclipse.jdt.ui.commands.javaElementReference" optional="false"/>
  1889. </commands>
  1890. <commands xmi:id="_YP2Yjj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.goToResource" commandName="Go to Resource" description="Go to a particular resource in the active view" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  1891. <commands xmi:id="_YP2Yjz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.open.super.implementation" commandName="Open Super Implementation" description="Open the Implementation in the Super Type" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  1892. <commands xmi:id="_YP2YkD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.resetPerspective" commandName="Reset Perspective" description="Reset the current perspective to its default state" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  1893. <commands xmi:id="_YP2YkT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.comment.single" commandName="&#x5207;&#x6362;&#x884c;&#x6ce8;&#x91ca;" description="&#x6dfb;&#x52a0;&#x6216;&#x5220;&#x9664;&#x5355;&#x884c;&#x6ce8;&#x91ca;" category="_YPxgDD9AEemkJ6es1zdyvw"/>
  1894. <commands xmi:id="_YP2Ykj9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.wikitext.ui.quickOutlineCommand" commandName="Quick Outline" description="Open a popup dialog with a quick outline of the current document" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  1895. <commands xmi:id="_YP2Ykz9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
  1896. <commands xmi:id="_YP2YlD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.MembersView" commandName="JavaScript Members" description="Show the Members view" category="_YPxgEj9AEemkJ6es1zdyvw"/>
  1897. <commands xmi:id="_YP2YlT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.project.buildLast" commandName="Repeat Working Set Build" description="Repeat the last working set build" category="_YPxgJT9AEemkJ6es1zdyvw"/>
  1898. <commands xmi:id="_YP2Ylj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.project.buildProject" commandName="Build Project" description="Build the selected project" category="_YPxgJT9AEemkJ6es1zdyvw"/>
  1899. <commands xmi:id="_YP2Ylz9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.discoveryWizardCommand" commandName="Discovery Wizard" description="shows the connector discovery wizard" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  1900. <commands xmi:id="_YP2YmD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.goto.textStart" commandName="Text Start" description="Go to the beginning of the text" category="_YPw49D9AEemkJ6es1zdyvw"/>
  1901. <commands xmi:id="_YP2YmT9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.localJavaShortcut.coverage" commandName="Coverage Java Application" description="Coverage Java Application" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  1902. <commands xmi:id="_YP2Ymj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.paste" commandName="Paste" description="Paste from the clipboard" category="_YPw48T9AEemkJ6es1zdyvw"/>
  1903. <commands xmi:id="_YP2Ymz9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
  1904. <commands xmi:id="_YP2YnD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.referencesMenu" commandName="&#x5f15;&#x7528;" description="&#x5f15;&#x7528;&#x5f53;&#x524d;&#x8868;&#x7684;&#x5916;&#x952e;&#x548c;&#x8868;" category="_YPw4_T9AEemkJ6es1zdyvw"/>
  1905. <commands xmi:id="_YP2YnT9AEemkJ6es1zdyvw" elementId="org.eclipse.oomph.setup.editor.refreshCache" commandName="Refresh Remote Cache" category="_YPxgGT9AEemkJ6es1zdyvw"/>
  1906. <commands xmi:id="_YP2Ynj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.correction.qualifyField" commandName="Quick Fix - Qualify var access" description="Invokes quick assist and selects 'Qualify var access'" category="_YPw49z9AEemkJ6es1zdyvw"/>
  1907. <commands xmi:id="_YP2Ynz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.javaAppletShortcut.run" commandName="Run Java Applet" description="Run Java Applet" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  1908. <commands xmi:id="_YP2YoD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.navigator.set.active" commandName="&#x8bbe;&#x4e3a;&#x6d3b;&#x52a8;&#x5bf9;&#x8c61;" description="&#x8bbe;&#x4e3a;&#x6d3b;&#x52a8;&#x5bf9;&#x8c61;" category="_YPxgFD9AEemkJ6es1zdyvw"/>
  1909. <commands xmi:id="_YP2YoT9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.exportSession" commandName="Export Session..." category="_YPw4-z9AEemkJ6es1zdyvw"/>
  1910. <commands xmi:id="_YP2Yoj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.previous" commandName="Previous" description="Navigate to the previous item" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  1911. <commands xmi:id="_YP2Yoz9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.scalaShortcut.coverage" commandName="Coverage Scala Application" description="Coverage Scala Application" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  1912. <commands xmi:id="_YP2YpD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.clean" commandName="Clean..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
  1913. <commands xmi:id="_YP2YpT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.rename" commandName="Rename" description="Rename the selected item" category="_YPw4_D9AEemkJ6es1zdyvw"/>
  1914. <commands xmi:id="_YP2Ypj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.project.buildAll" commandName="Build All" description="Build all projects" category="_YPxgJT9AEemkJ6es1zdyvw"/>
  1915. <commands xmi:id="_YP2Ypz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.OpenInTextEditorCommand" commandName="Open in Text Editor" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  1916. <commands xmi:id="_YP2YqD9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.dumpExecutionData" commandName="Dump Execution Data" category="_YPw4-z9AEemkJ6es1zdyvw"/>
  1917. <commands xmi:id="_YP2_kD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.debug.ui.command.debugConfigurationMenu" commandName="Debug last launched database object" description="Debug last launched database object" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  1918. <commands xmi:id="_YP2_kT9AEemkJ6es1zdyvw" 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="_YPw49D9AEemkJ6es1zdyvw"/>
  1919. <commands xmi:id="_YP2_kj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.enclosing" commandName="Select Enclosing Element" description="Expand selection to include enclosing element" category="_YPw48T9AEemkJ6es1zdyvw"/>
  1920. <commands xmi:id="_YP2_kz9AEemkJ6es1zdyvw" elementId="org.eclipse.buildship.ui.commands.runtasks" commandName="Run Gradle Tasks" description="Runs all the selected Gradle tasks" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  1921. <commands xmi:id="_YP2_lD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.toggleBreadcrumb" commandName="Toggle Java Editor Breadcrumb" description="Toggle the Java editor breadcrumb" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  1922. <commands xmi:id="_YP2_lT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.editors.revisions.rendering.cycle" commandName="Cycle Revision Coloring Mode" description="Cycles through the available coloring modes for revisions" category="_YPw49D9AEemkJ6es1zdyvw"/>
  1923. <commands xmi:id="_YP2_lj9AEemkJ6es1zdyvw" elementId="org.eclipse.ant.ui.renameInFile" commandName="Rename In File" description="Renames all references within the same buildfile" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  1924. <commands xmi:id="_YP2_lz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.open.type.hierarchy" commandName="Open Type Hierarchy" description="Open a type hierarchy on the selected element" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  1925. <commands xmi:id="_YP2_mD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.row.edit" commandName="&#x7f16;&#x8f91;&#x5355;&#x5143;&#x683c;" description="&#x5728;&#x5355;&#x72ec;&#x7684;&#x5bf9;&#x8bdd;&#x6846;/&#x7f16;&#x8f91;&#x5668;&#x4e2d;&#x7f16;&#x8f91;&#x5355;&#x5143;&#x683c;" category="_YPw4_T9AEemkJ6es1zdyvw"/>
  1926. <commands xmi:id="_YP2_mT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.debug.ui.script.opensource" commandName="Open Source" description="Shows the JavaScript source for the selected script element" category="_YPxgHD9AEemkJ6es1zdyvw"/>
  1927. <commands xmi:id="_YP2_mj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.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="_YPxgIj9AEemkJ6es1zdyvw"/>
  1928. <commands xmi:id="_YP2_mz9AEemkJ6es1zdyvw" elementId="org.eclipse.ltk.ui.refactoring.commands.moveResources" commandName="Move Resources" description="Move the selected resources and notify LTK participants." category="_YPyHEj9AEemkJ6es1zdyvw"/>
  1929. <commands xmi:id="_YP2_nD9AEemkJ6es1zdyvw" elementId="org.eclipse.m2e.actions.LifeCycleGenerateSources.run" commandName="Run Maven Generate Sources" description="Run Maven Generate Sources" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  1930. <commands xmi:id="_YP2_nT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.row.first" commandName="&#x9996;&#x884c;" description="&#x79fb;&#x52a8;&#x81f3;&#x9996;&#x884c;" category="_YPw4_T9AEemkJ6es1zdyvw"/>
  1931. <commands xmi:id="_YP2_nj9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.StepInto" commandName="Step Into" description="Step into" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  1932. <commands xmi:id="_YP2_nz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.tools.select.schema" commandName="&#x9009;&#x62e9;&#x6d3b;&#x52a8;&#x6a21;&#x5f0f;" description="&#x4e3a;&#x5f53;&#x524d;&#x6570;&#x636e;&#x5e93;&#x9009;&#x62e9;&#x6d3b;&#x52a8;&#x6a21;&#x5f0f;" category="_YPxgJz9AEemkJ6es1zdyvw"/>
  1933. <commands xmi:id="_YP2_oD9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.ws.jaxws.ui.configure.handlers" commandName="Configure Handlers" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  1934. <commands xmi:id="_YP2_oT9AEemkJ6es1zdyvw" elementId="org.eclipse.e4.ui.importer.openDirectory" commandName="Open Projects from File System..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  1935. <commands xmi:id="_YP2_oj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.ui.structure.select.previous" commandName="Select Previous Element" description="Expand selection to include previous sibling" category="_YPw48T9AEemkJ6es1zdyvw"/>
  1936. <commands xmi:id="_YP2_oz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.export" commandName="&#x5bfc;&#x51fa;&#x7ed3;&#x679c;&#x96c6;..." description="&#x5bfc;&#x51fa;&#x7ed3;&#x679c;&#x96c6;&#x5230;&#x6587;&#x4ef6;&#x6216;&#x53e6;&#x4e00;&#x4e2a;&#x6570;&#x636e;&#x8868;" category="_YPw4_T9AEemkJ6es1zdyvw"/>
  1937. <commands xmi:id="_YP2_pD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.commands.AddExceptionBreakpoint" commandName="Add Java Exception Breakpoint" description="Add a Java exception breakpoint" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  1938. <commands xmi:id="_YP2_pT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.open.call.hierarchy" commandName="Open Call Hierarchy" description="Open a call hierarchy on the selected element" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  1939. <commands xmi:id="_YP2_pj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.connect" commandName="&#x8fde;&#x63a5;" description="&#x8fde;&#x63a5;&#x81f3;&#x6570;&#x636e;&#x5e93;" category="_YPxgJz9AEemkJ6es1zdyvw"/>
  1940. <commands xmi:id="_YP2_pz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewClearCredentials" commandName="Clear Credentials" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  1941. <commands xmi:id="_YP2_qD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.sql.script.associate" commandName="Associate with data source" description="Associate selected script(s) with data source" category="_YPxgFD9AEemkJ6es1zdyvw"/>
  1942. <commands xmi:id="_YP2_qT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.add.import" commandName="Add Import" description="Create import statement on selection" category="_YPw49z9AEemkJ6es1zdyvw"/>
  1943. <commands xmi:id="_YP2_qj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.commands.ToggleTracepoint" commandName="Toggle Tracepoint" description="Creates or removes a tracepoint " category="_YPxgBD9AEemkJ6es1zdyvw"/>
  1944. <commands xmi:id="_YP2_qz9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.wikitext.ui.convertToMarkupCommand" commandName="Generate Markup" category="_YPxgDz9AEemkJ6es1zdyvw">
  1945. <parameters xmi:id="_YP2_rD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.wikitext.ui.targetLanguage" name="TargetLanguage" optional="false"/>
  1946. </commands>
  1947. <commands xmi:id="_YP2_rT9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
  1948. <commands xmi:id="_YP2_rj9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.showToolTip" commandName="Show Tooltip Description" category="_YPw4-D9AEemkJ6es1zdyvw"/>
  1949. <commands xmi:id="_YP2_rz9AEemkJ6es1zdyvw" 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="_YPxgHD9AEemkJ6es1zdyvw"/>
  1950. <commands xmi:id="_YP2_sD9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.junitShortcut.coverage" commandName="Coverage JUnit Test" description="Coverage JUnit Test" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  1951. <commands xmi:id="_YP2_sT9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.context.ui.commands.task.copyContext" commandName="Copy Context" category="_YPw49j9AEemkJ6es1zdyvw"/>
  1952. <commands xmi:id="_YP3moD9AEemkJ6es1zdyvw" elementId="org.eclipse.tm.terminal.view.ui.command.launchToolbar" commandName="Open Local Terminal on Selection" category="_YPxgHj9AEemkJ6es1zdyvw"/>
  1953. <commands xmi:id="_YP3moT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.showViewMenu" commandName="Show View Menu" description="Show the view menu" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  1954. <commands xmi:id="_YP3moj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.switch.panel" commandName="&#x5207;&#x6362;&#x6d3b;&#x52a8;&#x9762;&#x677f;" description="&#x5207;&#x6362;&#x6d3b;&#x52a8; SQL &#x7f16;&#x8f91;&#x5668;&#x9762;&#x677f;" category="_YPxgDD9AEemkJ6es1zdyvw"/>
  1955. <commands xmi:id="_YP3moz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.Commit" commandName="Commit..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
  1956. <commands xmi:id="_YP3mpD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.inline" commandName="Inline" description="Inline a constant, local variable or method" category="_YPxgIj9AEemkJ6es1zdyvw"/>
  1957. <commands xmi:id="_YP3mpT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.shiftRight" commandName="Shift Right" description="Shift a block of text to the right" category="_YPw48T9AEemkJ6es1zdyvw"/>
  1958. <commands xmi:id="_YP3mpj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.backwardHistory" commandName="Backward History" description="Move backward in the editor navigation history" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  1959. <commands xmi:id="_YP3mpz9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
  1960. <commands xmi:id="_YP3mqD9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.workbenchShortcut.coverage" commandName="Coverage Eclipse Application" description="Coverage Eclipse Application" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  1961. <commands xmi:id="_YP3mqT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resource.create.folder" commandName="&#x65b0;&#x5efa;&#x6587;&#x4ef6;&#x5939;" description="&#x65b0;&#x5efa;&#x6587;&#x4ef6;&#x5939;" category="_YPxgFD9AEemkJ6es1zdyvw"/>
  1962. <commands xmi:id="_YP3mqj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.removeTrailingWhitespace" commandName="Remove Trailing Whitespace" description="Removes the trailing whitespace of each line" category="_YPw4_D9AEemkJ6es1zdyvw"/>
  1963. <commands xmi:id="_YP3mqz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.findIncremental" commandName="Incremental Find" description="Incremental find" category="_YPw48T9AEemkJ6es1zdyvw"/>
  1964. <commands xmi:id="_YP3mrD9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
  1965. <commands xmi:id="_YP3mrT9AEemkJ6es1zdyvw" 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="_YPxgED9AEemkJ6es1zdyvw"/>
  1966. <commands xmi:id="_YP3mrj9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.ui.newEntity" commandName="JPA Entity" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  1967. <commands xmi:id="_YP3mrz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.correction.assignToLocal.assist" commandName="Quick Assist - Assign to local variable" description="Invokes quick assist and selects 'Assign to local variable'" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  1968. <commands xmi:id="_YP3msD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.ImportChangedProjectsCommandId" commandName="Import Changed Projects" description="Import or create in local Git repository" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  1969. <commands xmi:id="_YP3msT9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.commands.OpenCoverageConfiguration" commandName="Coverage Configurations..." description="Coverage Configurations..." category="_YPxgBD9AEemkJ6es1zdyvw"/>
  1970. <commands xmi:id="_YP3msj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.search.return.continue.targets" commandName="Search break/continue Target Occurrences in File" description="Search for break/continue target occurrences of a selected target name" category="_YPxgKT9AEemkJ6es1zdyvw"/>
  1971. <commands xmi:id="_YP3msz9AEemkJ6es1zdyvw" elementId="org.springframework.ide.eclipse.boot.dash.ToggleLineNumbers" commandName="Toggle Line Numbers" description="Toggle Line Numbers" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  1972. <commands xmi:id="_YP3mtD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.invalidate" commandName="&#x65ad;&#x5f00;/&#x91cd;&#x65b0;&#x8fde;&#x63a5;" description="&#x65ad;&#x5f00;&#x6216;&#x91cd;&#x65b0;&#x8fde;&#x63a5;" category="_YPxgJz9AEemkJ6es1zdyvw"/>
  1973. <commands xmi:id="_YP3mtT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.format" commandName="Format" description="Format the selected text" category="_YPw49z9AEemkJ6es1zdyvw"/>
  1974. <commands xmi:id="_YP3mtj9AEemkJ6es1zdyvw" 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="_YPxgED9AEemkJ6es1zdyvw"/>
  1975. <commands xmi:id="_YP3mtz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.create.getter.setter" commandName="Generate Getters and Setters" description="Generate Getter and Setter methods for type's fields" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  1976. <commands xmi:id="_YP3muD9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.edit.text.format" commandName="Format Source" description="Format a PDE Source Page" category="_YPxgDT9AEemkJ6es1zdyvw"/>
  1977. <commands xmi:id="_YP3muT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.navigator.view.configure" commandName="&#x914d;&#x7f6e;&#x5b57;&#x6bb5;" description="&#x914d;&#x7f6e;&#x5b57;&#x6bb5;&#x53ef;&#x89c1;&#x6027;" category="_YPxgFD9AEemkJ6es1zdyvw"/>
  1978. <commands xmi:id="_YP3muj9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.result.terminate" commandName="Terminate Result" category="_YPxgAj9AEemkJ6es1zdyvw"/>
  1979. <commands xmi:id="_YP3muz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.select.next" commandName="Select Next Element" description="Expand selection to include next sibling" category="_YPw48T9AEemkJ6es1zdyvw"/>
  1980. <commands xmi:id="_YP3mvD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewNewRemote" commandName="Create Remote..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
  1981. <commands xmi:id="_YP3mvT9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
  1982. <commands xmi:id="_YP3mvj9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.Restart" commandName="Restart" description="Restart a process or debug target without terminating and re-launching" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  1983. <commands xmi:id="_YP3mvz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.delete.line" commandName="Delete Line" description="Delete a line of text" category="_YPw49D9AEemkJ6es1zdyvw"/>
  1984. <commands xmi:id="_YP4NsD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.openWith" commandName="Open With" description="Open data in external application" category="_YPw4_T9AEemkJ6es1zdyvw">
  1985. <parameters xmi:id="_YP4NsT9AEemkJ6es1zdyvw" elementId="processorId" name="%command.org.jkiss.dbeaver.core.resultset.openWith.param.processorId.name" optional="false"/>
  1986. </commands>
  1987. <commands xmi:id="_YP4Nsj9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
  1988. <commands xmi:id="_YP4Nsz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.remove.block.comment" commandName="Remove Block Comment" description="Remove the block comment enclosing the selection" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  1989. <commands xmi:id="_YP4NtD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.open.implementation" commandName="Open Implementation" description="Opens the Implementations of a method or a type in its hierarchy" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  1990. <commands xmi:id="_YP4NtT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.junit.gotoTest" commandName="Referring Tests" description="Referring Tests" category="_YPxgKT9AEemkJ6es1zdyvw"/>
  1991. <commands xmi:id="_YP4Ntj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.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="_YPyHFD9AEemkJ6es1zdyvw"/>
  1992. <commands xmi:id="_YP4Ntz9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.openSessionExecutionData" commandName="Open Execution Data" category="_YPw4-z9AEemkJ6es1zdyvw"/>
  1993. <commands xmi:id="_YP4NuD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.commands.showElementInPackageView" commandName="Show Java Element in Package Explorer" description="Select Java element in the Package Explorer view" category="_YPxgGj9AEemkJ6es1zdyvw">
  1994. <parameters xmi:id="_YP4NuT9AEemkJ6es1zdyvw" elementId="elementRef" name="Java element reference" typeId="org.eclipse.jdt.ui.commands.javaElementReference" optional="false"/>
  1995. </commands>
  1996. <commands xmi:id="_YP4Nuj9AEemkJ6es1zdyvw" elementId="org.eclipse.oomph.setup.editor.performDropdown" commandName="Perform Dropdown" category="_YPxgGT9AEemkJ6es1zdyvw"/>
  1997. <commands xmi:id="_YP4Nuz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.commands.InstanceCount" commandName="Instance Count" description="View the instance count of the selected type loaded in the target VM" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  1998. <commands xmi:id="_YP4NvD9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
  1999. <commands xmi:id="_YP4NvT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.findReplace" commandName="Find and Replace" description="Find and replace text" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2000. <commands xmi:id="_YP4Nvj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.MergeTool" commandName="Merge Tool" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2001. <commands xmi:id="_YP4Nvz9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.addAllPluginsToJavaSearch" commandName="Add All Plug-ins to Java Workspace Scope" description="Adds all plug-ins in the target platform to Java workspace scope" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2002. <commands xmi:id="_YP40wD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.command.shareProject" commandName="Share with Git" description="Share the project using Git" category="_YPxgDz9AEemkJ6es1zdyvw">
  2003. <parameters xmi:id="_YP40wT9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.command.projectNameParameter" name="Project" optional="false"/>
  2004. </commands>
  2005. <commands xmi:id="_YP40wj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.convert.anonymous.to.nested" commandName="Convert Anonymous Class to Nested" description="Convert an anonymous class to a nested class" category="_YPxgIj9AEemkJ6es1zdyvw"/>
  2006. <commands xmi:id="_YP40wz9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.quickOutline" commandName="Quick Outline" description="Open a quick outline popup dialog for a given editor input" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2007. <commands xmi:id="_YP40xD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.fullscreenmode" commandName="Toggle Full Screen" description="Toggles the window between full screen and normal" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  2008. <commands xmi:id="_YP40xT9AEemkJ6es1zdyvw" elementId="org.eclipse.equinox.p2.ui.sdk.installationDetails" commandName="Installation Details" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2009. <commands xmi:id="_YP40xj9AEemkJ6es1zdyvw" elementId="org.eclipse.team.ui.synchronizeAll" commandName="Synchronize..." description="Synchronize resources in the workspace with another location" category="_YPxgET9AEemkJ6es1zdyvw"/>
  2010. <commands xmi:id="_YP40xz9AEemkJ6es1zdyvw" elementId="org.eclipse.m2e.profiles.ui.commands.selectMavenProfileCommand" commandName="Select Maven Profiles" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  2011. <commands xmi:id="_YP40yD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.nextEditor" commandName="Next Editor" description="Switch to the next editor" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  2012. <commands xmi:id="_YP40yT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.run.expression" commandName="&#x8ba1;&#x7b97; SQL &#x8868;&#x8fbe;&#x5f0f;&#x7684;&#x503c;" description="&#x8ba1;&#x7b97;&#x9009;&#x4e2d;&#x7684; SQL &#x8868;&#x8fbe;&#x5f0f;&#x7684;&#x503c;" category="_YPxgDD9AEemkJ6es1zdyvw"/>
  2013. <commands xmi:id="_YP40yj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.internal.reflog.CopyCommand" commandName="Copy Commit Id" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2014. <commands xmi:id="_YP40yz9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.new.subtask" commandName="New Subtask" category="_YPw4-D9AEemkJ6es1zdyvw"/>
  2015. <commands xmi:id="_YP40zD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.JavaBrowsingPerspective" commandName="JavaScript Browsing" description="Show the JavaScript Browsing perspective" category="_YPyHET9AEemkJ6es1zdyvw"/>
  2016. <commands xmi:id="_YP40zT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.help.helpContents" commandName="Help Contents" description="Open the help contents" category="_YPxgJD9AEemkJ6es1zdyvw"/>
  2017. <commands xmi:id="_YP40zj9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
  2018. <commands xmi:id="_YP40zz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.rename" commandName="&#x91cd;&#x547d;&#x540d; SQL &#x811a;&#x672c;" description="&#x91cd;&#x547d;&#x540d;&#x5f53;&#x524d; SQL &#x811a;&#x672c;" category="_YPxgDD9AEemkJ6es1zdyvw"/>
  2019. <commands xmi:id="_YP400D9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.Reset" commandName="Reset..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2020. <commands xmi:id="_YP400T9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.delete" commandName="Delete" description="Delete the selection" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2021. <commands xmi:id="_YP400j9AEemkJ6es1zdyvw" 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="_YPw49D9AEemkJ6es1zdyvw"/>
  2022. <commands xmi:id="_YP400z9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.RenameBranch" commandName="Rename Branch..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2023. <commands xmi:id="_YP401D9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.Synchronize" commandName="Synchronize" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2024. <commands xmi:id="_YP401T9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.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="_YPxgKT9AEemkJ6es1zdyvw"/>
  2025. <commands xmi:id="_YP401j9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.refactor.quickMenu" commandName="Show Refactor Quick Menu" description="Shows the refactor quick menu" category="_YPxgED9AEemkJ6es1zdyvw"/>
  2026. <commands xmi:id="_YP401z9AEemkJ6es1zdyvw" elementId="org.springframework.tooling.ls.eclipse.commons.commands.OpenResourceInEditor" commandName="Open File in Editor" category="_YPxgDz9AEemkJ6es1zdyvw">
  2027. <parameters xmi:id="_YP402D9AEemkJ6es1zdyvw" elementId="path" name="path" optional="false"/>
  2028. </commands>
  2029. <commands xmi:id="_YP402T9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.findPrevious" commandName="Find Previous" description="Find previous item" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2030. <commands xmi:id="_YP402j9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.ToggleBreakpoint" commandName="Toggle Breakpoint" description="Creates or removes a breakpoint" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2031. <commands xmi:id="_YP402z9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.commit.Revert" commandName="Revert Commit" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2032. <commands xmi:id="_YP403D9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.commit.StashDrop" commandName="Delete Stashed Commit..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2033. <commands xmi:id="_YP403T9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.openTask" commandName="Open Task" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2034. <commands xmi:id="_YP403j9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.scroll.lineUp" commandName="Scroll Line Up" description="Scroll up one line of text" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2035. <commands xmi:id="_YP403z9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.select.last" commandName="Restore Last Selection" description="Restore last selection" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2036. <commands xmi:id="_YP404D9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.java.ui.editor.folding.auto" commandName="Toggle Active Folding" description="Toggle Active Folding" category="_YPxgGz9AEemkJ6es1zdyvw"/>
  2037. <commands xmi:id="_YP404T9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.runtime.spy.commands.spyCommand" commandName="Plug-in Selection Spy" description="Show the Plug-in Spy" category="_YPyHFT9AEemkJ6es1zdyvw"/>
  2038. <commands xmi:id="_YP404j9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
  2039. <commands xmi:id="_YP404z9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.folding.toggle" commandName="Toggle Folding" description="Toggles folding in the current editor" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2040. <commands xmi:id="_YP5b0D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.toggleShowWhitespaceCharacters" commandName="Show Whitespace Characters" description="Shows whitespace characters in current text editor" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2041. <commands xmi:id="_YP5b0T9AEemkJ6es1zdyvw" elementId="org.eclipse.lsp4e.symbolinworkspace" commandName="Go to Symbol in Workspace" category="_YPxgHT9AEemkJ6es1zdyvw"/>
  2042. <commands xmi:id="_YP5b0j9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.file.revert" commandName="Revert" description="Revert to the last saved state" category="_YPw4_D9AEemkJ6es1zdyvw"/>
  2043. <commands xmi:id="_YP5b0z9AEemkJ6es1zdyvw" elementId="org.eclipse.oomph.ui.ToggleOfflineMode" commandName="Toggle Offline Mode" category="_YPxgDj9AEemkJ6es1zdyvw"/>
  2044. <commands xmi:id="_YP5b1D9AEemkJ6es1zdyvw" elementId="org.eclipse.oomph.setup.editor.openLog" commandName="Open Setup Log" category="_YPxgGT9AEemkJ6es1zdyvw"/>
  2045. <commands xmi:id="_YP5b1T9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.row.edit.inline" commandName="&#x5185;&#x5d4c;&#x7f16;&#x8f91;" description="&#x4f7f;&#x7528;&#x5185;&#x5d4c;&#x7f16;&#x8f91;&#x5668;&#x7f16;&#x8f91;&#x5355;&#x5143;&#x503c;" category="_YPw4_T9AEemkJ6es1zdyvw"/>
  2046. <commands xmi:id="_YP5b1j9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.project.buildAutomatically" commandName="Build Automatically" description="Toggle the workspace build automatically function" category="_YPxgJT9AEemkJ6es1zdyvw"/>
  2047. <commands xmi:id="_YP5b1z9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.file.import" commandName="Import" description="Import" category="_YPw4_D9AEemkJ6es1zdyvw">
  2048. <parameters xmi:id="_YP5b2D9AEemkJ6es1zdyvw" elementId="importWizardId" name="Import Wizard"/>
  2049. </commands>
  2050. <commands xmi:id="_YP5b2T9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.Merge" commandName="Merge" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2051. <commands xmi:id="_YP5b2j9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.switchToEditor" commandName="Switch to Editor" description="Switch to an editor" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  2052. <commands xmi:id="_YP5b2z9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
  2053. <commands xmi:id="_YP5b3D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.help.dynamicHelp" commandName="Show Contextual Help" description="Open the contextual help" category="_YPxgJD9AEemkJ6es1zdyvw"/>
  2054. <commands xmi:id="_YP5b3T9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.comment" commandName="Comment" description="Turn the selected lines into Java comments" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  2055. <commands xmi:id="_YP5b3j9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.activateTask" commandName="Activate Task" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2056. <commands xmi:id="_YP5b3z9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.CreateTag" commandName="Create Tag..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2057. <commands xmi:id="_YP5b4D9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.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="_YPxgKT9AEemkJ6es1zdyvw"/>
  2058. <commands xmi:id="_YP5b4T9AEemkJ6es1zdyvw" 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="_YPxgGj9AEemkJ6es1zdyvw"/>
  2059. <commands xmi:id="_YP5b4j9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.toggleInsertMode" commandName="Toggle Insert Mode" description="Toggle insert mode" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2060. <commands xmi:id="_YP5b4z9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewDelete" commandName="Delete Repository" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2061. <commands xmi:id="_YP5b5D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.file.closePart" commandName="Close Part" description="Close the active workbench part" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  2062. <commands xmi:id="_YP5b5T9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.editors.revisions.id.toggle" commandName="Toggle Revision Id Display" description="Toggles the display of the revision id" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2063. <commands xmi:id="_YP5b5j9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.project.cleanAction" commandName="Build Clean" description="Discard old built state" category="_YPxgJT9AEemkJ6es1zdyvw"/>
  2064. <commands xmi:id="_YP5b5z9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.back" commandName="Back" description="Navigate back" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2065. <commands xmi:id="_YP5b6D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.select.wordNext" commandName="Select Next Word" description="Select the next word" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2066. <commands xmi:id="_YP5b6T9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.JavaBrowsingPerspective" commandName="Java Browsing" description="Show the Java Browsing perspective" category="_YPyHET9AEemkJ6es1zdyvw"/>
  2067. <commands xmi:id="_YP5b6j9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.goto.pageDown" commandName="Page Down" description="Go down one page" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2068. <commands xmi:id="_YP5b6z9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
  2069. <commands xmi:id="_YP5b7D9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.team.ui.commands.CopyCommitMessage" commandName="Copy Commit Message for Task" description="Copies a commit message for the currently selected task to the clipboard." category="_YPw4-D9AEemkJ6es1zdyvw"/>
  2070. <commands xmi:id="_YP5b7T9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.relaunchSession" commandName="Relaunch Coverage Session" category="_YPw4-z9AEemkJ6es1zdyvw"/>
  2071. <commands xmi:id="_YP5b7j9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.GarbageCollect" commandName="Collect Garbage" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2072. <commands xmi:id="_YP5b7z9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.CompareWithWorkingTree" commandName="Compare with Working Tree" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2073. <commands xmi:id="_YP5b8D9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.Branch" commandName="Branch" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2074. <commands xmi:id="_YP5b8T9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.ProjectsView" commandName="JavaScript Projects" description="Show the Projects view" category="_YPxgEj9AEemkJ6es1zdyvw"/>
  2075. <commands xmi:id="_YP5b8j9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.ui.previousSibling" commandName="Previous Sibling" description="Go to Previous Sibling" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2076. <commands xmi:id="_YP5b8z9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewConfigurePush" commandName="Configure Push..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2077. <commands xmi:id="_YP5b9D9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.export.data" commandName="&#x5bfc;&#x51fa;&#x67e5;&#x8be2;&#x7ed3;&#x679c;" description="&#x5bfc;&#x51fa;&#x5f53;&#x524d;&#x67e5;&#x8be2;&#x8fd4;&#x56de;&#x7684;&#x6570;&#x636e;" category="_YPxgDD9AEemkJ6es1zdyvw"/>
  2078. <commands xmi:id="_YP5b9T9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.findIncrementalReverse" commandName="Incremental Find Reverse" description="Incremental find reverse" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2079. <commands xmi:id="_YP6C4D9AEemkJ6es1zdyvw" elementId="org.eclipse.epp.mpc.ui.command.importFavoritesWizard" commandName="Import Marketplace Favorites" description="Import another user's Marketplace Favorites List" category="_YPxgDz9AEemkJ6es1zdyvw">
  2080. <parameters xmi:id="_YP6C4T9AEemkJ6es1zdyvw" elementId="favoritesUrl" name="favoritesUrl"/>
  2081. </commands>
  2082. <commands xmi:id="_YP6C4j9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.show.log" commandName="&#x663e;&#x793a;&#x6267;&#x884c;&#x65e5;&#x5fd7;" description="&#x663e;&#x793a; SQL &#x6267;&#x884c;&#x65e5;&#x5fd7;" category="_YPxgDD9AEemkJ6es1zdyvw"/>
  2083. <commands xmi:id="_YP6C4z9AEemkJ6es1zdyvw" 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="_YPxgED9AEemkJ6es1zdyvw"/>
  2084. <commands xmi:id="_YP6C5D9AEemkJ6es1zdyvw" elementId="org.eclipse.ant.ui.antShortcut.run" commandName="Run Ant Build" description="Run Ant Build" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2085. <commands xmi:id="_YP6C5T9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
  2086. <commands xmi:id="_YP6C5j9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.object.move.down" commandName="&#x4e0b;&#x79fb;" description="&#x4e0b;&#x79fb;&#x5bf9;&#x8c61;" category="_YPxgJz9AEemkJ6es1zdyvw"/>
  2087. <commands xmi:id="_YP6C5z9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.stash.apply" commandName="Apply Stashed Changes" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2088. <commands xmi:id="_YP6C6D9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.commands.Inspect" commandName="Inspect" description="Inspect result of evaluating selected text" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2089. <commands xmi:id="_YP6C6T9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.grid.copyRowNames" commandName="&#x590d;&#x5236;&#x884c;&#x53f7;" description="&#x590d;&#x5236;&#x9009;&#x4e2d;&#x7684;&#x884c;&#x53f7;" category="_YPw4_T9AEemkJ6es1zdyvw"/>
  2090. <commands xmi:id="_YP6C6j9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.goto.columnNext" commandName="Next Column" description="Go to the next column" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2091. <commands xmi:id="_YP6C6z9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.Squash" commandName="Squash Commits" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2092. <commands xmi:id="_YP6C7D9AEemkJ6es1zdyvw" elementId="org.eclipse.search.ui.performTextSearchWorkingSet" commandName="Find Text in Working Set" description="Searches the files in the working set for specific text." category="_YPxgKT9AEemkJ6es1zdyvw"/>
  2093. <commands xmi:id="_YP6C7T9AEemkJ6es1zdyvw" elementId="org.springframework.ide.eclipse.boot.dash.boot.dash.OpenLaunchConfigAction" commandName="Open Config" description="Open Launch Configuration" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  2094. <commands xmi:id="_YP6C7j9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
  2095. <commands xmi:id="_YP6C7z9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.goto.wordNext" commandName="Next Word" description="Go to the next word" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2096. <commands xmi:id="_YP6C8D9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
  2097. <commands xmi:id="_YP6C8T9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.move.element" commandName="Move - Refactoring " description="Move the selected element to a new location" category="_YPxgED9AEemkJ6es1zdyvw"/>
  2098. <commands xmi:id="_YP6C8j9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.gotoMatchingBracket" commandName="Go to matching bracket" description="Position cursor on the matching bracket" category="_YPxgDD9AEemkJ6es1zdyvw"/>
  2099. <commands xmi:id="_YP6C8z9AEemkJ6es1zdyvw" elementId="org.eclipse.quickdiff.toggle" commandName="Quick Diff Toggle" description="Toggles quick diff information display on the line number ruler" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2100. <commands xmi:id="_YP6C9D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.deleteNext" commandName="Delete Next" description="Delete the next character" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2101. <commands xmi:id="_YP6C9T9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.FetchGerritChange" commandName="Fetch From Gerrit" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2102. <commands xmi:id="_YP6C9j9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.migrate.connection" commandName="&#x8fc1;&#x79fb;&#x8fde;&#x63a5;" description="&#x8fc1;&#x79fb;&#x8fde;&#x63a5;&#x81f3;&#x5176;&#x5b83;&#x6570;&#x636e;&#x5e93;" category="_YPxgFD9AEemkJ6es1zdyvw"/>
  2103. <commands xmi:id="_YP6C9z9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.process.stop" commandName="&#x7ec8;&#x6b62;&#x8fdb;&#x7a0b;" description="&#x7ec8;&#x6b62;&#x6b63;&#x5728;&#x8fdb;&#x884c;&#x7684;&#x8fdb;&#x7a0b;" category="_YPyHED9AEemkJ6es1zdyvw"/>
  2104. <commands xmi:id="_YP6C-D9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.junitRAPShortcut.coverage" commandName="Coverage RAP JUnit Test" description="Coverage RAP JUnit Test" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2105. <commands xmi:id="_YP6C-T9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.SynchronizeAll" commandName="Synchronize Changed" category="_YPw4-D9AEemkJ6es1zdyvw"/>
  2106. <commands xmi:id="_YP6C-j9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.commands.Watch" commandName="Watch" description="Create new watch expression" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2107. <commands xmi:id="_YP6C-z9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.Reword" commandName="Reword Commit" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2108. <commands xmi:id="_YP6C_D9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.wikitext.context.ui.editor.folding.auto" commandName="Toggle Active Folding" description="Toggle Active Folding" category="_YPw4-j9AEemkJ6es1zdyvw"/>
  2109. <commands xmi:id="_YP6C_T9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.OpenCommit" commandName="Open Git Commit" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2110. <commands xmi:id="_YP6C_j9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.server.stop" commandName="Stop" description="Stop the server" category="_YPw4-T9AEemkJ6es1zdyvw"/>
  2111. <commands xmi:id="_YP6C_z9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.help.displayHelp" commandName="Display Help" description="Display a Help topic" category="_YPxgJD9AEemkJ6es1zdyvw">
  2112. <parameters xmi:id="_YP6DAD9AEemkJ6es1zdyvw" elementId="href" name="Help topic href"/>
  2113. </commands>
  2114. <commands xmi:id="_YP6DAT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.select.pageDown" commandName="Select Page Down" description="Select to the bottom of the page" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2115. <commands xmi:id="_YP6DAj9AEemkJ6es1zdyvw" elementId="org.eclipse.ltk.ui.refactor.create.refactoring.script" commandName="Create Script" description="Create a refactoring script from refactorings on the local workspace" category="_YPxgIj9AEemkJ6es1zdyvw"/>
  2116. <commands xmi:id="_YP6DAz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.join.lines" commandName="Join Lines" description="Join lines of text" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2117. <commands xmi:id="_YP6DBD9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.sqleditor.saveAsTemplateAction" commandName="Save as Template" category="_YPxgKz9AEemkJ6es1zdyvw"/>
  2118. <commands xmi:id="_YP6DBT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.open.editor" commandName="Open Declaration" description="Open an editor on the selected element" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2119. <commands xmi:id="_YP6p8D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.showContextMenu" commandName="Show Context Menu" description="Show the context menu" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  2120. <commands xmi:id="_YP6p8T9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.applyChanges" commandName="&#x4fdd;&#x5b58;&#x53d8;&#x66f4;" description="&#x4fdd;&#x5b58;&#x53d8;&#x66f4;" category="_YPw4_T9AEemkJ6es1zdyvw"/>
  2121. <commands xmi:id="_YP6p8j9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.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="_YPxgIj9AEemkJ6es1zdyvw"/>
  2122. <commands xmi:id="_YP6p8z9AEemkJ6es1zdyvw" elementId="org.eclipse.oomph.p2.ui.ExploreRepository" commandName="Explore Repository" category="_YPxgBj9AEemkJ6es1zdyvw"/>
  2123. <commands xmi:id="_YP6p9D9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.InstallLfsLocal" commandName="Enable LFS locally" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2124. <commands xmi:id="_YP6p9T9AEemkJ6es1zdyvw" elementId="org.eclipse.ltk.ui.refactor.show.refactoring.history" commandName="Open Refactoring History " description="Opens the refactoring history" category="_YPxgIj9AEemkJ6es1zdyvw"/>
  2125. <commands xmi:id="_YP6p9j9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.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="_YPxgKT9AEemkJ6es1zdyvw"/>
  2126. <commands xmi:id="_YP6p9z9AEemkJ6es1zdyvw" elementId="org.dadacoalition.yedit.commands.toggleCollapse" commandName="Toggle Collapse" description="Toggle if the outline should be collapse or not" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2127. <commands xmi:id="_YP6p-D9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.show.output" commandName="&#x663e;&#x793a;&#x670d;&#x52a1;&#x5668;&#x8f93;&#x51fa;" description="&#x663e;&#x793a;&#x670d;&#x52a1;&#x5668;&#x63a7;&#x5236;&#x53f0;&#x8f93;&#x51fa;" category="_YPxgDD9AEemkJ6es1zdyvw"/>
  2128. <commands xmi:id="_YP6p-T9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.correction.assist.proposals" commandName="Quick Fix" description="Suggest possible fixes for a problem" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2129. <commands xmi:id="_YP6p-j9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.dashboard.open" commandName="Open Dashboard" description="Open database dashboard" category="_YPxgJz9AEemkJ6es1zdyvw"/>
  2130. <commands xmi:id="_YP6p-z9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.log.jdt.showinconsole" commandName="&amp;Show In Console" description="Show Stack Trace in Console View" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2131. <commands xmi:id="_YP6p_D9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.push.down" commandName="Push Down" description="Move members to subclasses" category="_YPxgIj9AEemkJ6es1zdyvw"/>
  2132. <commands xmi:id="_YP6p_T9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.nextPerspective" commandName="Next Perspective" description="Switch to the next perspective" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  2133. <commands xmi:id="_YP6p_j9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.cell.save" commandName="&#x4fdd;&#x5b58;&#x5355;&#x5143;&#x503c;" description="&#x4fdd;&#x5b58;&#x5355;&#x5143;&#x503c;" category="_YPw4_T9AEemkJ6es1zdyvw"/>
  2134. <commands xmi:id="_YP6p_z9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.UpdateRepositoryConfiguration" commandName="Update Repository Configuration" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2135. <commands xmi:id="_YP6qAD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.commit.StashApply" commandName="Apply Stashed Changes" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2136. <commands xmi:id="_YP6qAT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.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="_YPxgKT9AEemkJ6es1zdyvw"/>
  2137. <commands xmi:id="_YP6qAj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.ShowVersions" commandName="Open this Version" category="_YPxgDz9AEemkJ6es1zdyvw">
  2138. <parameters xmi:id="_YP6qAz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.CompareMode" name="Compare mode"/>
  2139. </commands>
  2140. <commands xmi:id="_YP6qBD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.nextTab" commandName="Next Tab" description="Switch to the next tab" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2141. <commands xmi:id="_YP6qBT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.quickAccess" commandName="Find Actions" description="Quickly access UI elements" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  2142. <commands xmi:id="_YP6qBj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.showInformation" commandName="Show Tooltip Description" description="Displays information for the current caret location in a focused hover" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2143. <commands xmi:id="_YP6qBz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.add.import" commandName="Add Import" description="Create import statement on selection" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  2144. <commands xmi:id="_YP6qCD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.attachment.open" commandName="Open Attachment" category="_YPxgFz9AEemkJ6es1zdyvw"/>
  2145. <commands xmi:id="_YP6qCT9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
  2146. <commands xmi:id="_YP6qCj9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
  2147. <commands xmi:id="_YP6qCz9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.toggleMemoryMonitorsPane" commandName="Toggle Memory Monitors Pane" description="Toggle visibility of the Memory Monitors Pane" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2148. <commands xmi:id="_YP6qDD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.ConfigureUpstreamFetch" commandName="Configure Upstream Fetch" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2149. <commands xmi:id="_YP6qDT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.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="_YPxgKT9AEemkJ6es1zdyvw"/>
  2150. <commands xmi:id="_YP6qDj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.Discard" commandName="Replace with File in Index" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2151. <commands xmi:id="_YP6qDz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.maximize.result.panel" commandName="&#x6700;&#x5927;&#x5316;&#x7ed3;&#x679c;&#x9762;&#x677f;" description="&#x6700;&#x5927;&#x5316;/&#x6807;&#x51c6;&#x5316;&#x7ed3;&#x679c;&#x9762;&#x677f;" category="_YPxgDD9AEemkJ6es1zdyvw"/>
  2152. <commands xmi:id="_YP6qED9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.sqleditor.refreshFromDatabaseAction" commandName="Refresh from Database" category="_YPxgKz9AEemkJ6es1zdyvw"/>
  2153. <commands xmi:id="_YP6qET9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.sqleditor.ExecuteAsOneStatementAction" commandName="Execute Selected Text As One Statement" category="_YPxgKz9AEemkJ6es1zdyvw"/>
  2154. <commands xmi:id="_YP6qEj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewCreateBranch" commandName="Create Branch..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2155. <commands xmi:id="_YP6qEz9AEemkJ6es1zdyvw" elementId="org.eclipse.cft.server.ui.internal.actions.pushcommand" commandName="Push" description="Push application" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2156. <commands xmi:id="_YP6qFD9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.connectivity.commands.addrepository" commandName="New Repository Profile Command" description="Command to create a new repository profile" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2157. <commands xmi:id="_YP6qFT9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewCopyPath" commandName="Copy Path to Clipboard" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2158. <commands xmi:id="_YP7RAD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.fetch.page" commandName="&#x83b7;&#x53d6;&#x4e0b;&#x4e00;&#x9875;" description="&#x83b7;&#x53d6;&#x4e0b;&#x4e00;&#x9875;&#x7ed3;&#x679c;" category="_YPw4_T9AEemkJ6es1zdyvw"/>
  2159. <commands xmi:id="_YP7RAT9AEemkJ6es1zdyvw" elementId="org.eclipse.oomph.setup.editor.perform.startup" commandName="Perform Setup Tasks (Startup)" category="_YPxgGT9AEemkJ6es1zdyvw"/>
  2160. <commands xmi:id="_YP7RAj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.JavaPerspective" commandName="JavaScript" description="Show the JavaScript perspective" category="_YPyHET9AEemkJ6es1zdyvw"/>
  2161. <commands xmi:id="_YP7RAz9AEemkJ6es1zdyvw" 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="_YPw49D9AEemkJ6es1zdyvw"/>
  2162. <commands xmi:id="_YP7RBD9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.jsp.ui.add.imports" commandName="Add Im&amp;port" description="Create import declaration for selection" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2163. <commands xmi:id="_YP7RBT9AEemkJ6es1zdyvw" 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="_YPxgED9AEemkJ6es1zdyvw"/>
  2164. <commands xmi:id="_YP7RBj9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.eclipselink.ui.upgradeToEclipseLinkMappingFile" commandName="Upgrade to EclipseLink Mapping File" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2165. <commands xmi:id="_YP7RBz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.browser.openBrowser" commandName="Open Browser" description="Opens the default web browser." category="_YPw4_j9AEemkJ6es1zdyvw">
  2166. <parameters xmi:id="_YP7RCD9AEemkJ6es1zdyvw" elementId="url" name="URL"/>
  2167. <parameters xmi:id="_YP7RCT9AEemkJ6es1zdyvw" elementId="browserId" name="Browser Id"/>
  2168. <parameters xmi:id="_YP7RCj9AEemkJ6es1zdyvw" elementId="name" name="Browser Name"/>
  2169. <parameters xmi:id="_YP7RCz9AEemkJ6es1zdyvw" elementId="tooltip" name="Browser Tooltip"/>
  2170. </commands>
  2171. <commands xmi:id="_YP7RDD9AEemkJ6es1zdyvw" 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="_YPxgED9AEemkJ6es1zdyvw"/>
  2172. <commands xmi:id="_YP7RDT9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.result.removeAllInstances" commandName="Remove All Visible Results" category="_YPxgAj9AEemkJ6es1zdyvw"/>
  2173. <commands xmi:id="_YP7RDj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.search.implement.occurrences" commandName="Search Implement Occurrences in File" description="Search for implement occurrences of a selected type" category="_YPxgKT9AEemkJ6es1zdyvw"/>
  2174. <commands xmi:id="_YP7RDz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.DeleteBranch" commandName="Delete Branch" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2175. <commands xmi:id="_YP7RED9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.contentAssist.contextInformation" commandName="Context Information" description="Show Context Information" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2176. <commands xmi:id="_YP7RET9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.file.saveAs" commandName="Save As" description="Save the current contents to another location" category="_YPw4_D9AEemkJ6es1zdyvw"/>
  2177. <commands xmi:id="_YP7REj9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
  2178. <commands xmi:id="_YP7REz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.previousPerspective" commandName="Previous Perspective" description="Switch to the previous perspective" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  2179. <commands xmi:id="_YP7RFD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.splitEditor" commandName="Toggle Split Editor" description="Split or join the currently active editor." category="_YPw4_j9AEemkJ6es1zdyvw">
  2180. <parameters xmi:id="_YP7RFT9AEemkJ6es1zdyvw" elementId="Splitter.isHorizontal" name="Orientation" optional="false"/>
  2181. </commands>
  2182. <commands xmi:id="_YP7RFj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.grid.copyColumnNames" commandName="&#x590d;&#x5236;&#x5b57;&#x6bb5;&#x540d;" description="&#x590d;&#x5236;&#x9009;&#x4e2d;&#x7684;&#x5b57;&#x6bb5;&#x540d;" category="_YPw4_T9AEemkJ6es1zdyvw"/>
  2183. <commands xmi:id="_YP7RFz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.collapseAll" commandName="Collapse All" description="Collapse the current tree" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2184. <commands xmi:id="_YP7RGD9AEemkJ6es1zdyvw" elementId="org.eclipse.compare.copyAllRightToLeft" commandName="Copy All from Right to Left" description="Copy All Changes from Right to Left" category="_YPxgHz9AEemkJ6es1zdyvw"/>
  2185. <commands xmi:id="_YP7RGT9AEemkJ6es1zdyvw" elementId="org.eclipse.lsp4e.togglelinkwitheditor" commandName="Toggle Link with Editor" category="_YPxgHT9AEemkJ6es1zdyvw"/>
  2186. <commands xmi:id="_YP7RGj9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.deactivateSelectedTask" commandName="Deactivate Selected Task" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2187. <commands xmi:id="_YP7RGz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.query.prev" commandName="&#x4e0a;&#x4e00;&#x67e5;&#x8be2;" description="&#x5207;&#x6362;&#x5230;&#x4e0a;&#x4e00;&#x67e5;&#x8be2;" category="_YPxgDD9AEemkJ6es1zdyvw"/>
  2188. <commands xmi:id="_YP7RHD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.lockToolBar" commandName="Toggle Lock Toolbars" description="Toggle the Lock on the Toolbars" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  2189. <commands xmi:id="_YP7RHT9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.Disconnect" commandName="Disconnect" description="Disconnect" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2190. <commands xmi:id="_YP7RHj9AEemkJ6es1zdyvw" elementId="org.eclipse.lsp4e.format" commandName="Format" category="_YPxgHT9AEemkJ6es1zdyvw"/>
  2191. <commands xmi:id="_YP7RHz9AEemkJ6es1zdyvw" elementId="org.springframework.tooling.ls.eclipse.gotosymbol.command" commandName="Goto Symbol" category="_YPw48D9AEemkJ6es1zdyvw"/>
  2192. <commands xmi:id="_YP7RID9AEemkJ6es1zdyvw" 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="_YPxgED9AEemkJ6es1zdyvw"/>
  2193. <commands xmi:id="_YP7RIT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.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="_YPxgKT9AEemkJ6es1zdyvw"/>
  2194. <commands xmi:id="_YP7RIj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.removeFromWorkingSet" commandName="Remove From Working Set" description="Removes the selected object from a working set." category="_YPw48T9AEemkJ6es1zdyvw"/>
  2195. <commands xmi:id="_YP7RIz9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.createAntBuildFile" commandName="Create Ant Build File" description="Creates an Ant build file for the current project" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2196. <commands xmi:id="_YP7RJD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.openSelectedTask" commandName="Open Selected Task" category="_YPw4-D9AEemkJ6es1zdyvw"/>
  2197. <commands xmi:id="_YP74ED9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
  2198. <commands xmi:id="_YP74ET9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.enablement.sybase.asa.schemaobjecteditor.examples.tableschemaeditor.copycolumn" commandName="Copy" category="_YPxgIT9AEemkJ6es1zdyvw"/>
  2199. <commands xmi:id="_YP74Ej9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesLinkWithSelection" commandName="Toggle &quot;Link with Editor and Selection&quot; (Git Repositories View)" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2200. <commands xmi:id="_YP74Ez9AEemkJ6es1zdyvw" 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="_YPw49j9AEemkJ6es1zdyvw"/>
  2201. <commands xmi:id="_YP74FD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.ide.deleteCompleted" commandName="Delete Completed Tasks" description="Delete the tasks marked as completed" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2202. <commands xmi:id="_YP74FT9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.goToNextUnread" commandName="Go To Next Unread Task" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2203. <commands xmi:id="_YP74Fj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.validation.ValidationCommand" commandName="Validate" description="Invoke registered Validators" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2204. <commands xmi:id="_YP74Fz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.object.filter.config" commandName="&#x914d;&#x7f6e;&#x8fc7;&#x6ee4;" description="&#x914d;&#x7f6e;&#x5bf9;&#x8c61;&#x8fc7;&#x6ee4;" category="_YPxgJz9AEemkJ6es1zdyvw"/>
  2205. <commands xmi:id="_YP74GD9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.sqleditor.debugAction" commandName="Debug" category="_YPxgKz9AEemkJ6es1zdyvw"/>
  2206. <commands xmi:id="_YP74GT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.add.javadoc.comment" commandName="Add Javadoc Comment" description="Add a Javadoc comment stub to the member element" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  2207. <commands xmi:id="_YP74Gj9AEemkJ6es1zdyvw" elementId="org.eclipse.cft.server.ui.cloneservercommand" commandName="Clone Server" description="Clone Server" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2208. <commands xmi:id="_YP74Gz9AEemkJ6es1zdyvw" elementId="com.genuitec.eclipse.inlinesearch.replaceall" commandName="Replace All" category="_YPyHFj9AEemkJ6es1zdyvw"/>
  2209. <commands xmi:id="_YP74HD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RebaseInteractiveCurrent" commandName="Interactive Rebase" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2210. <commands xmi:id="_YP74HT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.correction.addCast" commandName="Quick Fix - Add cast" description="Invokes quick assist and selects 'Add cast'" category="_YPw49z9AEemkJ6es1zdyvw"/>
  2211. <commands xmi:id="_YP74Hj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.openEditorDropDown" commandName="Quick Switch Editor" description="Open the editor drop down list" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  2212. <commands xmi:id="_YP74Hz9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jaxb.ui.generateJaxbClasses" commandName="JAXB Classes..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2213. <commands xmi:id="_YP74ID9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.cell.setNull" commandName="&#x8bbe;&#x4e3a;&#x7a7a;(NULL)" description="&#x8bbe;&#x4e3a;&#x7a7a;(NULL)" category="_YPw4_T9AEemkJ6es1zdyvw"/>
  2214. <commands xmi:id="_YP74IT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.deleteNextWord" commandName="Delete Next Word" description="Delete the next word" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2215. <commands xmi:id="_YP74Ij9AEemkJ6es1zdyvw" elementId="org.springframework.ide.eclipse.boot.properties.editor.convertPropertiesToYaml" commandName="Convert .properties to .yaml" category="_YPxgFT9AEemkJ6es1zdyvw"/>
  2216. <commands xmi:id="_YP74Iz9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.openDependencies" commandName="Open Plug-in Dependencies" description="Opens the plug-in dependencies view for the current plug-in" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2217. <commands xmi:id="_YP74JD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.toggleMarkOccurrences" commandName="Toggle Mark Occurrences" description="Toggles mark occurrences in Java editors" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  2218. <commands xmi:id="_YP74JT9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.SkipRebase" commandName="Skip commit and continue" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2219. <commands xmi:id="_YP74Jj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.replace.invocations" commandName="Replace Invocations" description="Replace invocations of the selected method" category="_YPxgIj9AEemkJ6es1zdyvw"/>
  2220. <commands xmi:id="_YP74Jz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.search.declarations.in.hierarchy" commandName="Declaration in Hierarchy" description="Search for declarations of the selected element in its hierarchy" category="_YPxgKT9AEemkJ6es1zdyvw"/>
  2221. <commands xmi:id="_YP74KD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.SetQuickdiffBaseline" commandName="Set quickdiff baseline" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2222. <commands xmi:id="_YP74KT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.undo" commandName="Undo" description="Undo the last operation" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2223. <commands xmi:id="_YP74Kj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.run.script" commandName="&#x6267;&#x884c; SQL &#x811a;&#x672c;" description="&#x6267;&#x884c;&#x811a;&#x672c;" category="_YPxgDD9AEemkJ6es1zdyvw"/>
  2224. <commands xmi:id="_YP74Kz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.file.newQuickMenu" commandName="New menu" description="Open the New menu" category="_YPw4_D9AEemkJ6es1zdyvw"/>
  2225. <commands xmi:id="_YP74LD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.correction.addSuppressWarnings" commandName="Quick Fix - Add @SuppressWarnings" description="Invokes quick fix and selects 'Add @SuppressWarnings' " category="_YPw49z9AEemkJ6es1zdyvw"/>
  2226. <commands xmi:id="_YP8fID9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
  2227. <commands xmi:id="_YP8fIT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.file.openWorkspace" commandName="Switch Workspace" description="Open the workspace selection dialog" category="_YPw4_D9AEemkJ6es1zdyvw"/>
  2228. <commands xmi:id="_YP8fIj9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
  2229. <commands xmi:id="_YP8fIz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.file.closeAll" commandName="Close All" description="Close all editors" category="_YPw4_D9AEemkJ6es1zdyvw"/>
  2230. <commands xmi:id="_YP8fJD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.object.move.up" commandName="&#x4e0a;&#x79fb;" description="&#x4e0a;&#x79fb;&#x5bf9;&#x8c61;" category="_YPxgJz9AEemkJ6es1zdyvw"/>
  2231. <commands xmi:id="_YP8fJT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.navigate.open.type" commandName="Open Type" description="Open a type in a Java editor" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2232. <commands xmi:id="_YP8fJj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.cut" commandName="Cut" description="Cut the selection to the clipboard" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2233. <commands xmi:id="_YP8fJz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.introduce.indirection" commandName="Introduce Indirection" description="Introduce an indirection to encapsulate invocations of a selected method" category="_YPxgIj9AEemkJ6es1zdyvw"/>
  2234. <commands xmi:id="_YP8fKD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.Merge" commandName="Merge" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2235. <commands xmi:id="_YP8fKT9AEemkJ6es1zdyvw" elementId="org.eclipse.ltk.ui.refactor.apply.refactoring.script" commandName="Apply Script" description="Perform refactorings from a refactoring script on the local workspace" category="_YPxgIj9AEemkJ6es1zdyvw"/>
  2236. <commands xmi:id="_YP8fKj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.ReplaceWithRef" commandName="Replace with branch, tag, or reference" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2237. <commands xmi:id="_YP8fKz9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.submitTask" commandName="Submit Task" description="Submits the currently open task" category="_YPxgFz9AEemkJ6es1zdyvw"/>
  2238. <commands xmi:id="_YP8fLD9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.testNgSuiteShortcut.coverage" commandName="Coverage TestNG Suite" description="Coverage TestNG Suite" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2239. <commands xmi:id="_YP8fLT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.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="_YPxgIj9AEemkJ6es1zdyvw"/>
  2240. <commands xmi:id="_YP8fLj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.ui.reload.dependencies" commandName="Reload Dependencies" description="Reload Dependencies" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2241. <commands xmi:id="_YP8fLz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.toggleShowSelectedElementOnly" commandName="Show Selected Element Only" description="Show Selected Element Only" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  2242. <commands xmi:id="_YP8fMD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.compare.objects" commandName="&#x6bd4;&#x8f83;" description="&#x6bd4;&#x8f83;&#x6570;&#x636e;&#x5e93;&#x5bf9;&#x8c61;" category="_YPyHED9AEemkJ6es1zdyvw"/>
  2243. <commands xmi:id="_YP8fMT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.txn.autocommit" commandName="&#x81ea;&#x52a8;&#x63d0;&#x4ea4;" description="&#x66f4;&#x6539;&#x6d3b;&#x52a8;&#x4f1a;&#x8bdd;&#x7684;&#x4e8b;&#x52a1;&#x6a21;&#x5f0f;" category="_YPxgJz9AEemkJ6es1zdyvw"/>
  2244. <commands xmi:id="_YP8fMj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.correction.addImport" commandName="Quick Fix - Add import" description="Invokes quick assist and selects 'Add import'" category="_YPw49z9AEemkJ6es1zdyvw"/>
  2245. <commands xmi:id="_YP8fMz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.junit.junitShortcut.rerunFailedFirst" commandName="Rerun JUnit Test - Failures First" description="Rerun JUnit Test - Failures First" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2246. <commands xmi:id="_YP8fND9AEemkJ6es1zdyvw" elementId="com.genuitec.myeclipse.perspective.meexplorer.search.searchmodecommand" commandName="Search Mode" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2247. <commands xmi:id="_YP8fNT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.file.export" commandName="Export" description="Export" category="_YPw4_D9AEemkJ6es1zdyvw">
  2248. <parameters xmi:id="_YP8fNj9AEemkJ6es1zdyvw" elementId="exportWizardId" name="Export Wizard"/>
  2249. </commands>
  2250. <commands xmi:id="_YP8fNz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xsd.ui.refactor.makeTypeGlobal" commandName="Make &amp;Anonymous Type Global" description="Promotes anonymous type to global level and replaces its references" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2251. <commands xmi:id="_YP8fOD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resource.link.file" commandName="&#x94fe;&#x63a5;&#x6587;&#x4ef6;" description="&#x521b;&#x5efa;&#x5230;&#x6587;&#x4ef6;&#x7684;&#x94fe;&#x63a5;" category="_YPxgFD9AEemkJ6es1zdyvw">
  2252. <parameters xmi:id="_YP8fOT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resource.link.file.contenttype" name="&#x94fe;&#x63a5;&#x6587;&#x4ef6;&#x7684;&#x5185;&#x5bb9;&#x7c7b;&#x578b;"/>
  2253. </commands>
  2254. <commands xmi:id="_YP8fOj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.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="_YPxgKT9AEemkJ6es1zdyvw"/>
  2255. <commands xmi:id="_YP8fOz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.ApplyPatch" commandName="Apply Patch" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2256. <commands xmi:id="_YP8fPD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.JavaPerspective" commandName="Java" description="Show the Java perspective" category="_YPyHET9AEemkJ6es1zdyvw"/>
  2257. <commands xmi:id="_YP9GMD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.indent" commandName="Correct Indentation" description="Corrects the indentation of the selected lines" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  2258. <commands xmi:id="_YP9GMT9AEemkJ6es1zdyvw" 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="_YPw48T9AEemkJ6es1zdyvw"/>
  2259. <commands xmi:id="_YP9GMj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.forwardHistory" commandName="Forward History" description="Move forward in the editor navigation history" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2260. <commands xmi:id="_YP9GMz9AEemkJ6es1zdyvw" elementId="org.eclipse.search.ui.performTextSearchProject" commandName="Find Text in Project" description="Searches the files in the project for specific text." category="_YPxgKT9AEemkJ6es1zdyvw"/>
  2261. <commands xmi:id="_YP9GND9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.disconnect" commandName="&#x65ad;&#x5f00;&#x8fde;&#x63a5;" description="&#x65ad;&#x5f00;&#x6570;&#x636e;&#x5e93;&#x8fde;&#x63a5;" category="_YPxgJz9AEemkJ6es1zdyvw"/>
  2262. <commands xmi:id="_YP9GNT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.project.rebuildAll" commandName="Rebuild All" description="Rebuild all projects" category="_YPxgJT9AEemkJ6es1zdyvw"/>
  2263. <commands xmi:id="_YP9GNj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.dashboard.reset" commandName="Reset dashboards" description="Reset dashboards state" category="_YPxgJz9AEemkJ6es1zdyvw"/>
  2264. <commands xmi:id="_YP9GNz9AEemkJ6es1zdyvw" elementId="org.eclipse.gef.zoom_in" commandName="Zoom In" description="Zoom In" category="_YPyHEz9AEemkJ6es1zdyvw"/>
  2265. <commands xmi:id="_YP9GOD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.quick.format" commandName="Format Element" description="Format enclosing text element" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  2266. <commands xmi:id="_YP9GOT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.object.filter.add.include" commandName="&#x4ec5;&#x663e;&#x793a;&#x9009;&#x4e2d;&#x5bf9;&#x8c61;" description="&#x4ec5;&#x663e;&#x793a;&#x9009;&#x4e2d;&#x5bf9;&#x8c61;" category="_YPxgJz9AEemkJ6es1zdyvw"/>
  2267. <commands xmi:id="_YP9GOj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.openLocalFile" commandName="Open File..." description="Open a file" category="_YPw4_D9AEemkJ6es1zdyvw"/>
  2268. <commands xmi:id="_YP9GOz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.Disconnect" commandName="Disconnect" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2269. <commands xmi:id="_YP9GPD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.select.previous" commandName="Select Previous Element" description="Expand selection to include previous sibling" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2270. <commands xmi:id="_YP9GPT9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.externalizeStrings" commandName="Externalize Strings in Plug-ins" description="Extract translatable strings from plug-in files" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2271. <commands xmi:id="_YP9GPj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.file.refresh" commandName="Refresh" description="Refresh the selected items" category="_YPw4_D9AEemkJ6es1zdyvw"/>
  2272. <commands xmi:id="_YP9GPz9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.connectivity.commands.showcategory" commandName="Show Category" description="Show Category" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2273. <commands xmi:id="_YP9GQD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewChangeCredentials" commandName="Change Credentials" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2274. <commands xmi:id="_YP9GQT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.correction.extractMethodInplace.assist" commandName="Quick Assist - Extract method" description="Invokes quick assist and selects 'Extract to method'" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  2275. <commands xmi:id="_YP9GQj9AEemkJ6es1zdyvw" elementId="org.eclipse.oomph.p2.ui.SearchRepositories" commandName="Search Repositories" category="_YPxgBj9AEemkJ6es1zdyvw"/>
  2276. <commands xmi:id="_YP9GQz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.closeAllPerspectives" commandName="Close All Perspectives" description="Close all open perspectives" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  2277. <commands xmi:id="_YP9tQD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.correction.addThrowsDecl" commandName="Quick Fix - Add throws declaration" description="Invokes quick assist and selects 'Add throws declaration'" category="_YPw49z9AEemkJ6es1zdyvw"/>
  2278. <commands xmi:id="_YP9tQT9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.disconnected" commandName="Disconnected" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2279. <commands xmi:id="_YP9tQj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.select.lineStart" commandName="Select Line Start" description="Select to the beginning of the line of text" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2280. <commands xmi:id="_YP9tQz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.new.connection" commandName="&#x65b0;&#x5efa;&#x8fde;&#x63a5;" description="&#x65b0;&#x5efa;&#x8fde;&#x63a5;&#x5411;&#x5bfc;" category="_YPxgFD9AEemkJ6es1zdyvw"/>
  2281. <commands xmi:id="_YP9tRD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.commit.Reword" commandName="Reword Commit" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2282. <commands xmi:id="_YP9tRT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.toggleMarkOccurrences" commandName="Toggle Mark Occurrences" description="Toggles mark occurrences in JavaScript editors" category="_YPw49z9AEemkJ6es1zdyvw"/>
  2283. <commands xmi:id="_YP9tRj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.editors.lineNumberToggle" commandName="Show Line Numbers" description="Toggle display of line numbers" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2284. <commands xmi:id="_YP9tRz9AEemkJ6es1zdyvw" 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="_YPxgED9AEemkJ6es1zdyvw"/>
  2285. <commands xmi:id="_YP9tSD9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.ui.persistentAttributeMapAs" commandName="Map As" category="_YPxgCj9AEemkJ6es1zdyvw">
  2286. <parameters xmi:id="_YP9tST9AEemkJ6es1zdyvw" elementId="specifiedPersistentAttributeMappingKey" name="specified mapping key" optional="false"/>
  2287. <parameters xmi:id="_YP9tSj9AEemkJ6es1zdyvw" elementId="defaultPersistentAttributeMappingKey" name="default mapping key" optional="false"/>
  2288. </commands>
  2289. <commands xmi:id="_YP9tSz9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.index.ui.command.ResetIndex" commandName="Refresh Search Index" category="_YPw4-D9AEemkJ6es1zdyvw"/>
  2290. <commands xmi:id="_YP9tTD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesToggleBranchCommit" commandName="Toggle Latest Branch Commit" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2291. <commands xmi:id="_YP9tTT9AEemkJ6es1zdyvw" elementId="org.eclipse.tm.terminal.paste" commandName="Paste" category="_YPxgKD9AEemkJ6es1zdyvw"/>
  2292. <commands xmi:id="_YP9tTj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.PushCommit" commandName="Push Commit..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2293. <commands xmi:id="_YP9tTz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.query.next" commandName="&#x4e0b;&#x4e00;&#x67e5;&#x8be2;" description="&#x5207;&#x6362;&#x5230;&#x4e0b;&#x4e00;&#x67e5;&#x8be2;" category="_YPxgDD9AEemkJ6es1zdyvw"/>
  2294. <commands xmi:id="_YP9tUD9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
  2295. <commands xmi:id="_YP9tUT9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.ui.convertJavaGenerators" commandName="Move Java Generators to XML..." category="_YPxgCD9AEemkJ6es1zdyvw"/>
  2296. <commands xmi:id="_YP9tUj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.ide.showInSystemExplorer" commandName="Show In (System Explorer)" description="Show in system's explorer (file manager)" category="_YPxgGj9AEemkJ6es1zdyvw">
  2297. <parameters xmi:id="_YP9tUz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.ide.showInSystemExplorer.path" name="Resource System Path Parameter"/>
  2298. </commands>
  2299. <commands xmi:id="_YP9tVD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.new.local.task" commandName="New Local Task" category="_YPw4-D9AEemkJ6es1zdyvw"/>
  2300. <commands xmi:id="_YP9tVT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.select.lineDown" commandName="Select Line Down" description="Extend the selection to the next line of text" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2301. <commands xmi:id="_YP9tVj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.sort.members" commandName="Sort Members" description="Sort all members using the member order preference" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  2302. <commands xmi:id="_YP9tVz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.lowerCase" commandName="To Lower Case" description="Changes the selection to lower case" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2303. <commands xmi:id="_YP9tWD9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.connectivity.commands.addprofile" commandName="New Connection Profile Command" description="Command to create a new connection profile" category="_YPxgDz9AEemkJ6es1zdyvw">
  2304. <parameters xmi:id="_YP9tWT9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.connectivity.ui.ignoreCategory" name="ignoreCategory"/>
  2305. <parameters xmi:id="_YP9tWj9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.connectivity.ui.useSelection" name="useSelection"/>
  2306. </commands>
  2307. <commands xmi:id="_YP-UUD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.CompareWithIndex" commandName="Compare with Index" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2308. <commands xmi:id="_YP-UUT9AEemkJ6es1zdyvw" elementId="org.eclipse.m2e.discovery.ui" commandName="m2e Marketplace" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2309. <commands xmi:id="_YP-UUj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.zoomOut" commandName="Zoom Out" description="Zoom out text, decrease default font size for text editors" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2310. <commands xmi:id="_YP-UUz9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.markTaskIncomplete" commandName="Mark Task Incomplete" category="_YPw4-D9AEemkJ6es1zdyvw"/>
  2311. <commands xmi:id="_YP-UVD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.file.save" commandName="Save" description="Save the current contents" category="_YPw4_D9AEemkJ6es1zdyvw"/>
  2312. <commands xmi:id="_YP-UVT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.correction.assignAllParamsToNewFields.assist" commandName="Quick Assist - Assign all parameters to new fields" description="Invokes quick assist and selects 'Assign all parameters to new fields'" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  2313. <commands xmi:id="_YP-UVj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.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="_YPxgKT9AEemkJ6es1zdyvw"/>
  2314. <commands xmi:id="_YP-UVz9AEemkJ6es1zdyvw" 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="_YPxgED9AEemkJ6es1zdyvw"/>
  2315. <commands xmi:id="_YP-UWD9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
  2316. <commands xmi:id="_YP-UWT9AEemkJ6es1zdyvw" 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="_YPw48T9AEemkJ6es1zdyvw">
  2317. <parameters xmi:id="_YP-UWj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.specific_content_assist.category_id" name="type" optional="false"/>
  2318. </commands>
  2319. <commands xmi:id="_YP-UWz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.row.last" commandName="&#x672b;&#x884c;" description="&#x79fb;&#x52a8;&#x5230;&#x672b;&#x884c;" category="_YPw4_T9AEemkJ6es1zdyvw"/>
  2320. <commands xmi:id="_YP-UXD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.markTaskReadGoToNextUnread" commandName="Mark Task Read and Go To Next Unread Task" category="_YPw4-D9AEemkJ6es1zdyvw"/>
  2321. <commands xmi:id="_YP-UXT9AEemkJ6es1zdyvw" elementId="org.eclipse.team.ui.applyPatch" commandName="Apply Patch..." description="Apply a patch to one or more workspace projects." category="_YPxgET9AEemkJ6es1zdyvw"/>
  2322. <commands xmi:id="_YP-UXj9AEemkJ6es1zdyvw" elementId="org.eclipse.buildship.ui.commands.rundefaulttasks" commandName="Run Gradle Default Tasks" description="Runs the default tasks of the selected Gradle project" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2323. <commands xmi:id="_YP-UXz9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.ui.generateEntities" commandName="Generate Entities from Tables..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2324. <commands xmi:id="_YP-UYD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.select.lineEnd" commandName="Select Line End" description="Select to the end of the line of text" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2325. <commands xmi:id="_YP-UYT9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.removeActiveSession" commandName="Remove Active Session" category="_YPw4-z9AEemkJ6es1zdyvw"/>
  2326. <commands xmi:id="_YP-UYj9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.markTaskRead" commandName="Mark Task Read" category="_YPw4-D9AEemkJ6es1zdyvw"/>
  2327. <commands xmi:id="_YP-UYz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.move.element" commandName="Move - Refactoring " description="Move the selected element to a new location" category="_YPxgIj9AEemkJ6es1zdyvw"/>
  2328. <commands xmi:id="_YP-UZD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.select.wordPrevious" commandName="Select Previous Word" description="Select the previous word" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2329. <commands xmi:id="_YP-UZT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.indent" commandName="Indent Line" description="Indents the current line" category="_YPw49z9AEemkJ6es1zdyvw"/>
  2330. <commands xmi:id="_YP-UZj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.quick.format" commandName="Format Element" description="Format enclosing text element" category="_YPw49z9AEemkJ6es1zdyvw"/>
  2331. <commands xmi:id="_YP-UZz9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.pagedesigner.vertical" commandName="Vertical Layout" category="_YPxgFj9AEemkJ6es1zdyvw"/>
  2332. <commands xmi:id="_YP-UaD9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.StepOver" commandName="Step Over" description="Step over" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2333. <commands xmi:id="_YP-UaT9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.ui.addToPersistenceUnit" commandName="Add to Persistence Unit" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2334. <commands xmi:id="_YP-Uaj9AEemkJ6es1zdyvw" elementId="org.eclipse.compare.selectPreviousChange" commandName="Select Previous Change" description="Select Previous Change" category="_YPxgHz9AEemkJ6es1zdyvw"/>
  2335. <commands xmi:id="_YP-Uaz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.row.next" commandName="&#x4e0b;&#x4e00;&#x884c;" description="&#x79fb;&#x52a8;&#x5230;&#x4e0b;&#x4e00;&#x884c;" category="_YPw4_T9AEemkJ6es1zdyvw"/>
  2336. <commands xmi:id="_YP-UbD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.file.exit" commandName="Exit" description="Exit the application" category="_YPw4_D9AEemkJ6es1zdyvw">
  2337. <parameters xmi:id="_YP-UbT9AEemkJ6es1zdyvw" elementId="mayPrompt" name="may prompt"/>
  2338. </commands>
  2339. <commands xmi:id="_YP-Ubj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.navigator.open.browser" commandName="Browse from here" description="Open new database browser view from current node" category="_YPxgFD9AEemkJ6es1zdyvw"/>
  2340. <commands xmi:id="_YP-Ubz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.CompareWithHead" commandName="Compare with HEAD Revision" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2341. <commands xmi:id="_YP-UcD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.CompareWithCommit" commandName="Compare with Commit..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2342. <commands xmi:id="_YP-UcT9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewOpen" commandName="Open" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2343. <commands xmi:id="_YP-Ucj9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.deactivateAllTasks" commandName="Deactivate Task" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2344. <commands xmi:id="_YP-Ucz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.ShowHistory" commandName="Show in History" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2345. <commands xmi:id="_YP-UdD9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
  2346. <commands xmi:id="_YP-UdT9AEemkJ6es1zdyvw" elementId="org.eclipse.m2e.core.ui.command.updateProject" commandName="Update Project" description="Update Maven Project configuration and dependencies" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  2347. <commands xmi:id="_YP-Udj9AEemkJ6es1zdyvw" elementId="org.eclipse.tools.layout.spy.commands.layoutSpyCommand" commandName="Layout Spy" description="Show the Layout Spy" category="_YPyHFT9AEemkJ6es1zdyvw"/>
  2348. <commands xmi:id="_YP-Udz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.SimplePush" commandName="Push to Upstream" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2349. <commands xmi:id="_YP-UeD9AEemkJ6es1zdyvw" elementId="refresh.schema.editor.action.id" commandName="Refresh from Server" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2350. <commands xmi:id="_YP-UeT9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.addMemoryMonitor" commandName="Add Memory Block" description="Add memory block" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2351. <commands xmi:id="_YP-Uej9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.organizeManifest" commandName="Organize Manifests" description="Cleans up plug-in manifest files" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2352. <commands xmi:id="_YP-Uez9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.navigate.gototype" commandName="Go to Type" description="Go to Type" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2353. <commands xmi:id="_YP-7YD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.junit.junitShortcut.run" commandName="Run JUnit Test" description="Run JUnit Test" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2354. <commands xmi:id="_YP-7YT9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.ui.convertJavaQueries" commandName="Move Java Queries to XML..." category="_YPxgCD9AEemkJ6es1zdyvw"/>
  2355. <commands xmi:id="_YP-7Yj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.PushHeadToGerrit" commandName="Push Current Head to Gerrit" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2356. <commands xmi:id="_YP-7Yz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.selectAll" commandName="Select All" description="Select all" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2357. <commands xmi:id="_YP-7ZD9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.swtBotJunitShortcut.coverage" commandName="Coverage SWTBot Test" description="Coverage SWTBot Test" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2358. <commands xmi:id="_YP-7ZT9AEemkJ6es1zdyvw" elementId="com.genuitec.eclipse.inlinesearch.commands.showFindReplaceBarCommand" commandName="Show Inline Search" category="_YPyHFj9AEemkJ6es1zdyvw"/>
  2359. <commands xmi:id="_YP-7Zj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.show.outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2360. <commands xmi:id="_YP-7Zz9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.jsp.ui.refactor.move" commandName="Move" description="Move a Java Element to another package" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2361. <commands xmi:id="_YP-7aD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.goto.next.member" commandName="Go to Next Member" description="Move the caret to the next member of the compilation unit" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2362. <commands xmi:id="_YP-7aT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.project.rebuildProject" commandName="Rebuild Project" description="Rebuild the selected projects" category="_YPxgJT9AEemkJ6es1zdyvw"/>
  2363. <commands xmi:id="_YP-7aj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.open.file" commandName="&#x5bfc;&#x5165; SQL &#x811a;&#x672c;" description="&#x4ece;&#x6587;&#x4ef6;&#x5bfc;&#x5165;" category="_YPxgDD9AEemkJ6es1zdyvw"/>
  2364. <commands xmi:id="_YP-7az9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.object.filter.clear" commandName="&#x6e05;&#x9664;&#x8fc7;&#x6ee4;" description="&#x6e05;&#x9664;&#x8fc7;&#x6ee4;&#x8bbe;&#x7f6e;" category="_YPxgJz9AEemkJ6es1zdyvw"/>
  2365. <commands xmi:id="_YP-7bD9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.enablement.sybase.asa.schemaobjecteditor.examples.tableschemaeditor.pastecolumn" commandName="Paste" category="_YPxgIT9AEemkJ6es1zdyvw"/>
  2366. <commands xmi:id="_YP-7bT9AEemkJ6es1zdyvw" elementId="org.eclipse.m2e.core.pomFileAction.run" commandName="Run Maven Build" description="Run Maven Build" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2367. <commands xmi:id="_YP-7bj9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.linkWithSelection" commandName="Link with Current Selection" category="_YPw4-z9AEemkJ6es1zdyvw"/>
  2368. <commands xmi:id="_YP-7bz9AEemkJ6es1zdyvw" elementId="org.eclipse.m2e.actions.LifeCycleInstall.run" commandName="Run Maven Install" description="Run Maven Install" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2369. <commands xmi:id="_YP-7cD9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.sqleditor.ExecuteCurrentAction" commandName="Execute Current Text" category="_YPxgKz9AEemkJ6es1zdyvw"/>
  2370. <commands xmi:id="_YP-7cT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.copyLineDown" commandName="Copy Lines" description="Duplicates the selected lines and moves the selection to the copy" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2371. <commands xmi:id="_YP-7cj9AEemkJ6es1zdyvw" elementId="org.eclipse.oomph.setup.editor.perform" commandName="Perform Setup Tasks" category="_YPxgGT9AEemkJ6es1zdyvw"/>
  2372. <commands xmi:id="_YP-7cz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.help.installationDialog" commandName="Installation Information" description="Open the installation dialog" category="_YPxgJD9AEemkJ6es1zdyvw"/>
  2373. <commands xmi:id="_YP-7dD9AEemkJ6es1zdyvw" 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="_YPxgED9AEemkJ6es1zdyvw"/>
  2374. <commands xmi:id="_YP-7dT9AEemkJ6es1zdyvw" 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="_YPxgGj9AEemkJ6es1zdyvw"/>
  2375. <commands xmi:id="_YP-7dj9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.ToggleStepFilters" commandName="Use Step Filters" description="Toggles enablement of debug step filters" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2376. <commands xmi:id="_YP-7dz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.goto.lineUp" commandName="Line Up" description="Go up one line of text" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2377. <commands xmi:id="_YP-7eD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.goto.windowStart" commandName="Window Start" description="Go to the start of the window" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2378. <commands xmi:id="_YP-7eT9AEemkJ6es1zdyvw" elementId="org.eclipse.cft.server.ui.updatepasswordcommand" commandName="Update Password..." description="Update Password" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2379. <commands xmi:id="_YP-7ej9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.correction.addBlock.assist" commandName="Quick Assist - Replace statement with block" description="Invokes quick assist and selects 'Replace statement with block'" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  2380. <commands xmi:id="_YP-7ez9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.commons.ui.command.AddRepository" commandName="Add Repository" category="_YPxgCz9AEemkJ6es1zdyvw"/>
  2381. <commands xmi:id="_YP-7fD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.tools.select.connection" commandName="&#x8bbe;&#x7f6e;&#x6d3b;&#x52a8;&#x8fde;&#x63a5;" description="&#x4e3a;&#x5f53;&#x524d;&#x7f16;&#x8f91;&#x5668;&#x9009;&#x62e9;&#x8fde;&#x63a5;" category="_YPxgJz9AEemkJ6es1zdyvw"/>
  2382. <commands xmi:id="_YP-7fT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.select.enclosing" commandName="Select Enclosing Element" description="Expand selection to include enclosing element" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2383. <commands xmi:id="_YP-7fj9AEemkJ6es1zdyvw" elementId="org.eclipse.ant.ui.antShortcut.debug" commandName="Debug Ant Build" description="Debug Ant Build" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2384. <commands xmi:id="_YP-7fz9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
  2385. <commands xmi:id="_YP-7gD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.AssumeUnchanged" commandName="Assume Unchanged" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2386. <commands xmi:id="_YP-7gT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.closePerspective" commandName="Close Perspective" description="Close the current perspective" category="_YPw4_j9AEemkJ6es1zdyvw">
  2387. <parameters xmi:id="_YP-7gj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.closePerspective.perspectiveId" name="Perspective Id"/>
  2388. </commands>
  2389. <commands xmi:id="_YP-7gz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ext.mockdata.resultset.mockdata" commandName="Generate Mock Data" description="Mock Data Generator" category="_YPw4_T9AEemkJ6es1zdyvw"/>
  2390. <commands xmi:id="_YP-7hD9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
  2391. <commands xmi:id="_YP-7hT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.ui.nextSibling" commandName="Next Sibling" description="Go to Next Sibling" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2392. <commands xmi:id="_YP-7hj9AEemkJ6es1zdyvw" 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="_YPxgED9AEemkJ6es1zdyvw"/>
  2393. <commands xmi:id="_YP-7hz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.navigate.open.type" commandName="Open Type" description="Open a type in a JavaScript editor" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2394. <commands xmi:id="_YP-7iD9AEemkJ6es1zdyvw" elementId="org.springframework.ide.eclipse.boot.dash.ShowBootDashboard" commandName="Boot Dashboard" description="Show Boot Dashboard view" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2395. <commands xmi:id="_YP_icD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.cheatsheets.openCheatSheetURL" commandName="Open Cheat Sheet from URL" description="Open a Cheat Sheet from file at a specified URL." category="_YPxgJD9AEemkJ6es1zdyvw">
  2396. <parameters xmi:id="_YP_icT9AEemkJ6es1zdyvw" elementId="cheatSheetId" name="Identifier" optional="false"/>
  2397. <parameters xmi:id="_YP_icj9AEemkJ6es1zdyvw" elementId="name" name="Name" optional="false"/>
  2398. <parameters xmi:id="_YP_icz9AEemkJ6es1zdyvw" elementId="url" name="URL" optional="false"/>
  2399. </commands>
  2400. <commands xmi:id="_YP_idD9AEemkJ6es1zdyvw" elementId="revert.schema.editor.action.id" commandName="Revert Object" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2401. <commands xmi:id="_YP_idT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xsl.debug.ui.launchshortcut.debug" commandName="Debug XSLT Transformation" description="Create a configuration to debug an XSLT transformation" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2402. <commands xmi:id="_YP_idj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.object.delete" commandName="&#x5220;&#x9664;&#x5bf9;&#x8c61;" description="&#x5220;&#x9664;&#x6570;&#x636e;&#x5e93;&#x5bf9;&#x8c61;" category="_YPxgJz9AEemkJ6es1zdyvw"/>
  2403. <commands xmi:id="_YP_idz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.PushBranch" commandName="Push Branch..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2404. <commands xmi:id="_YP_ieD9AEemkJ6es1zdyvw" elementId="org.eclipse.m2e.core.ui.command.addDependency" commandName="Add Maven Dependency" description="Add Maven Dependency" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2405. <commands xmi:id="_YP_ieT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.commands.Execute" commandName="Execute" description="Evaluate selected text" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2406. <commands xmi:id="_YP_iej9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.cell.reset" commandName="&#x91cd;&#x7f6e;&#x53d8;&#x66f4;" description="&#x91cd;&#x7f6e;&#x53d8;&#x66f4;" category="_YPw4_T9AEemkJ6es1zdyvw"/>
  2407. <commands xmi:id="_YP_iez9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.add.block.comment" commandName="Add Block Comment" description="Enclose the selection with a block comment" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  2408. <commands xmi:id="_YP_ifD9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.core.synchronizeClasses" commandName="Synchronize Class List" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2409. <commands xmi:id="_YP_ifT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.chromium.debug.ui.breakpoint.properties" commandName="Breakpoint Properties..." description="Modify breakpoint properties" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2410. <commands xmi:id="_YP_ifj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.navigate.gotopackage" commandName="Go to Folder" description="Go to Folder" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2411. <commands xmi:id="_YP_ifz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.object.open" commandName="&#x7f16;&#x8f91;&#x5bf9;&#x8c61;" description="&#x6253;&#x5f00;&#x5bf9;&#x8c61;&#x7f16;&#x8f91;&#x5668;" category="_YPxgJz9AEemkJ6es1zdyvw"/>
  2412. <commands xmi:id="_YP_igD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.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="_YPxgKT9AEemkJ6es1zdyvw"/>
  2413. <commands xmi:id="_YP_igT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.file.closeAllSaved" commandName="Close All Saved" description="Close all saved editors" category="_YPw4_D9AEemkJ6es1zdyvw"/>
  2414. <commands xmi:id="_YP_igj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.server.launchShortcut.run" commandName="Run on Server" description="Run the current selection on a server" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2415. <commands xmi:id="_YP_igz9AEemkJ6es1zdyvw" 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="_YPxgED9AEemkJ6es1zdyvw"/>
  2416. <commands xmi:id="_YP_ihD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.redo" commandName="Redo" description="Redo the last operation" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2417. <commands xmi:id="_YP_ihT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.server.launchShortcut.debug" commandName="Debug on Server" description="Debug the current selection on a server" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2418. <commands xmi:id="_YP_ihj9AEemkJ6es1zdyvw" elementId="org.eclipse.m2e.editor.RenameArtifactAction" commandName="Rename Maven Artifact..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2419. <commands xmi:id="_YP_ihz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.selectWorkingSets" commandName="Select Working Sets" description="Select the working sets that are applicable for this window." category="_YPw4_j9AEemkJ6es1zdyvw"/>
  2420. <commands xmi:id="_YP_iiD9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.sqleditor.ExecuteSQLAction" commandName="Execute All" category="_YPxgKz9AEemkJ6es1zdyvw"/>
  2421. <commands xmi:id="_YP_iiT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.rename.element" commandName="Rename - Refactoring " description="Rename the selected element" category="_YPxgIj9AEemkJ6es1zdyvw"/>
  2422. <commands xmi:id="_YP_iij9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.api.tools.ui.remove.filters" commandName="Remove &amp;API Problem Filters..." description="Remove API problem filters for this project" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2423. <commands xmi:id="_YP_iiz9AEemkJ6es1zdyvw" elementId="org.eclipse.tm.terminal.view.ui.command.newview" commandName="New Terminal View" category="_YPxgHj9AEemkJ6es1zdyvw"/>
  2424. <commands xmi:id="_YP_ijD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.navigate.object" commandName="&#x6253;&#x5f00;&#x58f0;&#x660e;" description="&#x6253;&#x5f00;&#x5f53;&#x524d;(&#x9ad8;&#x4eae;)&#x6570;&#x636e;&#x5e93;&#x5bf9;&#x8c61;&#x7684;&#x7f16;&#x8f91;&#x5668;" category="_YPxgDD9AEemkJ6es1zdyvw"/>
  2425. <commands xmi:id="_YP_ijT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.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="_YPyHFD9AEemkJ6es1zdyvw"/>
  2426. <commands xmi:id="_YP_ijj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.correction.extractConstant.assist" commandName="Quick Assist - Extract constant" description="Invokes quick assist and selects 'Extract constant'" category="_YPw49z9AEemkJ6es1zdyvw"/>
  2427. <commands xmi:id="_YP_ijz9AEemkJ6es1zdyvw" elementId="org.eclipse.lsp4e.showkindinoutline" commandName="Show Kind in Outline" category="_YPxgHT9AEemkJ6es1zdyvw"/>
  2428. <commands xmi:id="_YP_ikD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.CherryPick" commandName="Cherry Pick" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2429. <commands xmi:id="_YP_ikT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.run.statementNew" commandName="&#x5728;&#x65b0;&#x6807;&#x7b7e;&#x9875;&#x4e2d;&#x6267;&#x884c; SQL" description="&#x5728;&#x65b0;&#x6807;&#x7b7e;&#x9875;&#x4e2d;&#x6267;&#x884c; SQL &#x8bed;&#x53e5;" category="_YPxgDD9AEemkJ6es1zdyvw"/>
  2430. <commands xmi:id="_YP_ikj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.file.close" commandName="Close" description="Close the active editor" category="_YPw4_D9AEemkJ6es1zdyvw"/>
  2431. <commands xmi:id="_YP_ikz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.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="_YPyHFD9AEemkJ6es1zdyvw"/>
  2432. <commands xmi:id="_YP_ilD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.goto.previous.member" commandName="Go to Previous Member" description="Move the caret to the previous member of the compilation unit" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2433. <commands xmi:id="_YP_ilT9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.Reset" commandName="Reset..." category="_YPxgDz9AEemkJ6es1zdyvw">
  2434. <parameters xmi:id="_YP_ilj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.ResetMode" name="Reset mode" optional="false"/>
  2435. </commands>
  2436. <commands xmi:id="_YP_ilz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.previousSubTab" commandName="Previous Sub-Tab" description="Switch to the previous sub-tab" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2437. <commands xmi:id="_YP_imD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.generate.hashcode.equals" commandName="Generate hashCode() and equals()" description="Generates hashCode() and equals() methods for the type" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  2438. <commands xmi:id="_YP_imT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.js.gulp.commands.gulpLaunch" commandName="Run as Gulp Task" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2439. <commands xmi:id="_YP_imj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.showIn" commandName="Show In" category="_YPxgGj9AEemkJ6es1zdyvw">
  2440. <parameters xmi:id="_YP_imz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.showIn.targetId" name="Show In Target Id" optional="false"/>
  2441. </commands>
  2442. <commands xmi:id="_YP_inD9AEemkJ6es1zdyvw" elementId="sed.tabletree.collapseAll" commandName="Collapse All" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2443. <commands xmi:id="_YP_inT9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewRemoveRemote" commandName="Delete Remote" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2444. <commands xmi:id="_YP_inj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.dialogs.openInputDialog" commandName="Open Input Dialog" description="Open an Input Dialog" category="_YPxgBT9AEemkJ6es1zdyvw">
  2445. <parameters xmi:id="_YP_inz9AEemkJ6es1zdyvw" elementId="title" name="Title"/>
  2446. <parameters xmi:id="_YP_ioD9AEemkJ6es1zdyvw" elementId="message" name="Message"/>
  2447. <parameters xmi:id="_YP_ioT9AEemkJ6es1zdyvw" elementId="initialValue" name="Initial Value"/>
  2448. <parameters xmi:id="_YP_ioj9AEemkJ6es1zdyvw" elementId="cancelReturns" name="Return Value on Cancel"/>
  2449. </commands>
  2450. <commands xmi:id="_YP_ioz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RebaseCurrent" commandName="Rebase" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2451. <commands xmi:id="_YQAJgD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.dashboard.add" commandName="Add dashboard" description="Add dashboard to view" category="_YPxgJz9AEemkJ6es1zdyvw"/>
  2452. <commands xmi:id="_YQAJgT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.add.unimplemented.constructors" commandName="Generate Constructors from Superclass" description="Evaluate and add constructors from superclass" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  2453. <commands xmi:id="_YQAJgj9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.markTaskComplete" commandName="Mark Task Complete" category="_YPw4-D9AEemkJ6es1zdyvw"/>
  2454. <commands xmi:id="_YQAJgz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.select.windowStart" commandName="Select Window Start" description="Select to the start of the window" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2455. <commands xmi:id="_YQAJhD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.source.quickMenu" commandName="Show Source Quick Menu" description="Shows the source quick menu" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  2456. <commands xmi:id="_YQAJhT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.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="_YPxgKT9AEemkJ6es1zdyvw"/>
  2457. <commands xmi:id="_YQAJhj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.driver.manager" commandName="&#x9a71;&#x52a8;&#x7ba1;&#x7406;&#x5668;" description="&#x9a71;&#x52a8;&#x7ba1;&#x7406;&#x5668;" category="_YPxgFD9AEemkJ6es1zdyvw"/>
  2458. <commands xmi:id="_YQAJhz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.Revert" commandName="Revert Commit" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2459. <commands xmi:id="_YQAJiD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewImportProjects" commandName="Import Projects..." description="Import or create in local Git repository" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2460. <commands xmi:id="_YQAJiT9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.commands.CoverageLast" commandName="Coverage" description="Coverage" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2461. <commands xmi:id="_YQAJij9AEemkJ6es1zdyvw" elementId="org.eclipse.compare.copyAllLeftToRight" commandName="Copy All from Left to Right" description="Copy All Changes from Left to Right" category="_YPxgHz9AEemkJ6es1zdyvw"/>
  2462. <commands xmi:id="_YQAJiz9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.enablement.sybase.asa.schemaobjecteditor.examples.tableschemaeditor.cutcolumn" commandName="Cut" category="_YPxgIT9AEemkJ6es1zdyvw"/>
  2463. <commands xmi:id="_YQAJjD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.debug.ui.evaluate.command" commandName="Evaluate" description="Evaluates the selected text in the JavaScript editor" category="_YPxgHD9AEemkJ6es1zdyvw"/>
  2464. <commands xmi:id="_YQAJjT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.surround.with.quickMenu" commandName="Surround With Quick Menu" description="Shows the Surround With quick menu" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  2465. <commands xmi:id="_YQAJjj9AEemkJ6es1zdyvw" elementId="org.eclipse.search.ui.openFileSearchPage" commandName="File Search" description="Open the Search dialog's file search page" category="_YPxgKT9AEemkJ6es1zdyvw"/>
  2466. <commands xmi:id="_YQAJjz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.search.implementors.in.workspace" commandName="Implementors in Workspace" description="Search for implementors of the selected interface" category="_YPxgKT9AEemkJ6es1zdyvw"/>
  2467. <commands xmi:id="_YQAJkD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.dashboard.view" commandName="View dashboard" description="View dashboard in dialog" category="_YPxgJz9AEemkJ6es1zdyvw"/>
  2468. <commands xmi:id="_YQAJkT9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewAddRepository" commandName="Add a Git Repository..." description="Adds an existing Git repository to the Git Repositories view" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2469. <commands xmi:id="_YQAJkj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.breakpoint.properties" commandName="Java Breakpoint Properties" description="View and edit the properties for a given Java breakpoint" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2470. <commands xmi:id="_YQAJkz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.navigate.open.type.in.hierarchy" commandName="Open Type in Hierarchy" description="Open a type in the type hierarchy view" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2471. <commands xmi:id="_YQAJlD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.task.clearActiveTime" commandName="Clear Active Time" category="_YPw4-D9AEemkJ6es1zdyvw"/>
  2472. <commands xmi:id="_YQAJlT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.ide.copyBuildIdCommand" commandName="Copy Build Id Information To Clipboard" description="Copies the build identification information to the clipboard." category="_YPw48T9AEemkJ6es1zdyvw"/>
  2473. <commands xmi:id="_YQAJlj9AEemkJ6es1zdyvw" elementId="org.eclipse.buildship.ui.commands.refreshproject" commandName="Refresh Gradle Project" description="Synchronizes the Gradle builds of the selected projects with the workspace" category="_YPw48z9AEemkJ6es1zdyvw"/>
  2474. <commands xmi:id="_YQAJlz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.select.textEnd" commandName="Select Text End" description="Select to the end of the text" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2475. <commands xmi:id="_YQAJmD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.context.ui.commands.task.attachContext" commandName="Attach Context" category="_YPw49j9AEemkJ6es1zdyvw"/>
  2476. <commands xmi:id="_YQAJmT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.views.XPathView.processor.xpathprocessor" commandName="XPath Processor" category="_YPxgCT9AEemkJ6es1zdyvw">
  2477. <parameters xmi:id="_YQAJmj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.commands.radioStateParameter" name="State" optional="false"/>
  2478. </commands>
  2479. <commands xmi:id="_YQAJmz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.goto.wordPrevious" commandName="Previous Word" description="Go to the previous word" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2480. <commands xmi:id="_YQAJnD9AEemkJ6es1zdyvw" elementId="org.eclipse.tm.terminal.connector.local.command.launch" commandName="Open Local Terminal on Selection" category="_YPxgHj9AEemkJ6es1zdyvw"/>
  2481. <commands xmi:id="_YQAJnT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.preferences" commandName="Preferences" description="Open the preferences dialog" category="_YPw4_j9AEemkJ6es1zdyvw">
  2482. <parameters xmi:id="_YQAJnj9AEemkJ6es1zdyvw" elementId="preferencePageId" name="Preference Page"/>
  2483. </commands>
  2484. <commands xmi:id="_YQAJnz9AEemkJ6es1zdyvw" elementId="com.genuitec.eclipse.inlinesearch.replace.toggle.open" commandName="Open Replace Bar" category="_YPyHFj9AEemkJ6es1zdyvw"/>
  2485. <commands xmi:id="_YQAJoD9AEemkJ6es1zdyvw" elementId="org.eclipse.m2e.sourcelookup.ui.openSourceLookupInfoDialog" commandName="Source Lookup Info" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2486. <commands xmi:id="_YQAJoT9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.commit.Squash" commandName="Squash Commits" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2487. <commands xmi:id="_YQAJoj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.copy" commandName="Copy" description="Copy the selection to the clipboard" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2488. <commands xmi:id="_YQAJoz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.nextView" commandName="Next View" description="Switch to the next view" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  2489. <commands xmi:id="_YQAJpD9AEemkJ6es1zdyvw" elementId="com.genuitec.myeclipse.perspective.meexplorer.search.regexcommand" commandName="Regular Expression" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2490. <commands xmi:id="_YQAJpT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.revertToSaved" commandName="Revert to Saved" description="Revert to the last saved state" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2491. <commands xmi:id="_YQAJpj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.properties.NewPropertySheetCommand" commandName="Properties" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2492. <commands xmi:id="_YQAJpz9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.RunToLine" commandName="Run to Line" description="Resume and break when execution reaches the current line" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2493. <commands xmi:id="_YQAJqD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.navigate.java.open.structure" commandName="Open Structure" description="Show the structure of the selected element" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2494. <commands xmi:id="_YQAJqT9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.EquinoxLaunchShortcut.debug" commandName="Debug OSGi Framework" description="Debug OSGi Framework" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2495. <commands xmi:id="_YQAJqj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewPaste" commandName="Paste Repository Path or URI" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2496. <commands xmi:id="_YQAJqz9AEemkJ6es1zdyvw" 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="_YPw49D9AEemkJ6es1zdyvw"/>
  2497. <commands xmi:id="_YQAJrD9AEemkJ6es1zdyvw" elementId="org.eclipse.lsp4e.symbolinfile" commandName="Go to Symbol in File" category="_YPxgHT9AEemkJ6es1zdyvw"/>
  2498. <commands xmi:id="_YQAJrT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.upperCase" commandName="To Upper Case" description="Changes the selection to upper case" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2499. <commands xmi:id="_YQAJrj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.ConfigureFetch" commandName="Configure Upstream Fetch" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2500. <commands xmi:id="_YQAJrz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.goInto" commandName="Go Into" description="Navigate into the selected item" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2501. <commands xmi:id="_YQAJsD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.ConfigureUpstreamPush" commandName="Configure Upstream Push" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2502. <commands xmi:id="_YQAJsT9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.OpenRunConfigurations" commandName="Run..." description="Open run launch configuration dialog" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2503. <commands xmi:id="_YQAJsj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.sync.auto" commandName="&#x81ea;&#x52a8;&#x540c;&#x6b65;&#x8fde;&#x63a5;&#x4e0e;&#x5bfc;&#x822a;" description="&#x6839;&#x636e;&#x6570;&#x636e;&#x5e93;&#x5bfc;&#x822a;&#x5668;&#x7684;&#x9009;&#x62e9;&#x81ea;&#x52a8;&#x540c;&#x6b65;&#x6d3b;&#x52a8;&#x8fde;&#x63a5;" category="_YPxgDD9AEemkJ6es1zdyvw"/>
  2504. <commands xmi:id="_YQAJsz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.select.windowEnd" commandName="Select Window End" description="Select to the end of the window" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2505. <commands xmi:id="_YQAJtD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.tools.menu" commandName="&#x4e0a;&#x4e0b;&#x6587;&#x5de5;&#x5177;" description="&#x663e;&#x793a;&#x5e26;&#x6570;&#x636e;&#x5e93;&#x5de5;&#x5177;&#x7684;&#x4e0a;&#x4e0b;&#x6587;&#x83dc;&#x5355;" category="_YPxgJz9AEemkJ6es1zdyvw"/>
  2506. <commands xmi:id="_YQAJtT9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.resetOnDump" commandName="Reset on Dump" category="_YPw4-z9AEemkJ6es1zdyvw"/>
  2507. <commands xmi:id="_YQAJtj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.minimizePart" commandName="Minimize Active View or Editor" description="Minimizes the active view or editor" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  2508. <commands xmi:id="_YQAJtz9AEemkJ6es1zdyvw" elementId="org.eclipse.tm.terminal.command1" commandName="Terminal view insert" category="_YPxgKD9AEemkJ6es1zdyvw"/>
  2509. <commands xmi:id="_YQAJuD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.Untrack" commandName="Untrack" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2510. <commands xmi:id="_YQAJuT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.ui.add.block.comment" commandName="Add Block Comment" description="Add Block Comment" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2511. <commands xmi:id="_YQAJuj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.showSystemMenu" commandName="Show System Menu" description="Show the system menu" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  2512. <commands xmi:id="_YQAJuz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.fetch.all" commandName="&#x83b7;&#x53d6;&#x6240;&#x6709;&#x6570;&#x636e;" description="&#x83b7;&#x53d6;&#x6240;&#x6709;&#x884c;" category="_YPw4_T9AEemkJ6es1zdyvw"/>
  2513. <commands xmi:id="_YQAJvD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.commands.AllInstances" commandName="All Instances" description="View all instances of the selected type loaded in the target VM" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2514. <commands xmi:id="_YQAwkD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.OpenInCommitViewerCommand" commandName="Open in Commit Viewer" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2515. <commands xmi:id="_YQBXoD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.toggle.comment" commandName="Toggle Comment" description="Toggle comment the selected lines" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  2516. <commands xmi:id="_YQB-sD9AEemkJ6es1zdyvw" elementId="org.eclipse.m2e.actions.LifeCycleTest.run" commandName="Run Maven Test" description="Run Maven Test" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2517. <commands xmi:id="_YQB-sT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xsl.debug.ui.launchshortcut.run" commandName="Run XSLT Transformation" description="Create a configuration to debug an XSLT transformation" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2518. <commands xmi:id="_YQB-sj9AEemkJ6es1zdyvw" elementId="com.genuitec.eclipse.core.ui.enableCodeLive" commandName="CodeLive" description="CodeLive Enablement" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2519. <commands xmi:id="_YQB-sz9AEemkJ6es1zdyvw" elementId="org.eclipse.cft.server.ui.internal.actions.remaptoprojectcommand" commandName="Link with Project" description="Link the cloud application with the project." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2520. <commands xmi:id="_YQB-tD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.savePerspective" commandName="Save Perspective As" description="Save the current perspective" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  2521. <commands xmi:id="_YQB-tT9AEemkJ6es1zdyvw" 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="_YPxgED9AEemkJ6es1zdyvw"/>
  2522. <commands xmi:id="_YQB-tj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.correction.assignParamToField.assist" commandName="Quick Assist - Assign parameter to field" description="Invokes quick assist and selects 'Assign parameter to field'" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  2523. <commands xmi:id="_YQB-tz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.command.configureTrace" commandName="Configure Git Debug Trace" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2524. <commands xmi:id="_YQB-uD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.move.inner.to.top.level" commandName="Move Type to New File" description="Move Type to New File" category="_YPxgIj9AEemkJ6es1zdyvw"/>
  2525. <commands xmi:id="_YQB-uT9AEemkJ6es1zdyvw" 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="_YPxgGj9AEemkJ6es1zdyvw"/>
  2526. <commands xmi:id="_YQClwD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.ui.open.file.from.source" commandName="Open Selection" description="Open an editor on the selected link" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2527. <commands xmi:id="_YQClwT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.open.hierarchy" commandName="Quick Hierarchy" description="Show the quick hierarchy of the selected element" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2528. <commands xmi:id="_YQClwj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.row.add" commandName="&#x6dfb;&#x52a0;&#x884c;" description="&#x6dfb;&#x52a0;&#x65b0;&#x884c;" category="_YPw4_T9AEemkJ6es1zdyvw"/>
  2529. <commands xmi:id="_YQClwz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.toggleBlockSelectionMode" commandName="Toggle Block Selection" description="Toggle block / column selection in the current text editor" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2530. <commands xmi:id="_YQClxD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.ui.goto.matching.bracket" commandName="Matching Character" description="Go to Matching Character" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2531. <commands xmi:id="_YQClxT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.refactor.quickMenu" commandName="Show Refactor Quick Menu" description="Shows the refactor quick menu" category="_YPxgIj9AEemkJ6es1zdyvw"/>
  2532. <commands xmi:id="_YQClxj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.run.explain" commandName="&#x89e3;&#x6790;&#x6267;&#x884c;&#x8ba1;&#x5212;" description="&#x89e3;&#x6790;&#x6267;&#x884c;&#x8ba1;&#x5212;" category="_YPxgDD9AEemkJ6es1zdyvw"/>
  2533. <commands xmi:id="_YQClxz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.CompareIndexWithHead" commandName="Compare File in Index with HEAD Revision" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2534. <commands xmi:id="_YQClyD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.override.methods" commandName="Override/Implement Methods" description="Override or implement methods from super types" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  2535. <commands xmi:id="_YQClyT9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
  2536. <commands xmi:id="_YQClyj9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jaxb.eclipselink.ui.command.addEclipseLinkJaxbProperty" commandName="Add EclipseLink JAXB property" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2537. <commands xmi:id="_YQClyz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ext.oracle.job.run" commandName="Run" description="Run Job" category="_YPxgEz9AEemkJ6es1zdyvw"/>
  2538. <commands xmi:id="_YQClzD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.wikitext.ui.convertToDocbookCommand" commandName="Generate Docbook" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2539. <commands xmi:id="_YQClzT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.part.nextPage" commandName="Next Page" description="Switch to the next page" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2540. <commands xmi:id="_YQClzj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.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="_YPxgIj9AEemkJ6es1zdyvw"/>
  2541. <commands xmi:id="_YQClzz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.CreateBranch" commandName="Create Branch" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2542. <commands xmi:id="_YQCl0D9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.folding.collapseComments" commandName="Collapse Comments" description="Collapse all comments" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2543. <commands xmi:id="_YQCl0T9AEemkJ6es1zdyvw" elementId="org.springframework.ide.eclipse.boot.restart.commands.restart" commandName="Trigger Restart" description="Restart Spring Boot Application" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2544. <commands xmi:id="_YQCl0j9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewClone" commandName="Clone a Git Repository..." description="Clones a Git repository and adds the clone to the Git Repositories view" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2545. <commands xmi:id="_YQCl0z9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.clear.mark" commandName="Clear Mark" description="Clear the mark" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2546. <commands xmi:id="_YQCl1D9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.ui.quick_outline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2547. <commands xmi:id="_YQCl1T9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.inline" commandName="Inline" description="Inline a constant, local variable or function" category="_YPxgED9AEemkJ6es1zdyvw"/>
  2548. <commands xmi:id="_YQCl1j9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewRemove" commandName="Remove Repository" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2549. <commands xmi:id="_YQCl1z9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.PackagesView" commandName="JavaScript Folders" description="Show the Folders view" category="_YPxgEj9AEemkJ6es1zdyvw"/>
  2550. <commands xmi:id="_YQCl2D9AEemkJ6es1zdyvw" elementId="org.eclipse.ant.ui.openExternalDoc" commandName="Open External Documentation" description="Open the External documentation for the current task in the Ant editor" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  2551. <commands xmi:id="_YQCl2T9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewCreateRepository" commandName="Create a Git Repository..." description="Creates a new Git repository and adds it to the Git Repositories view" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2552. <commands xmi:id="_YQCl2j9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.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="_YPxgKT9AEemkJ6es1zdyvw"/>
  2553. <commands xmi:id="_YQCl2z9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.disconnectAll" commandName="&#x5168;&#x90e8;&#x65ad;&#x5f00;" description="&#x5173;&#x95ed;&#x6240;&#x6709;&#x6253;&#x5f00;&#x7684;&#x8fde;&#x63a5;" category="_YPxgJz9AEemkJ6es1zdyvw"/>
  2554. <commands xmi:id="_YQCl3D9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.PushTags" commandName="Push Tags..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2555. <commands xmi:id="_YQCl3T9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.grid.togglePanel" commandName="Show/hide results panel" description="Show/hide some particular results panel" category="_YPw4_T9AEemkJ6es1zdyvw">
  2556. <parameters xmi:id="_YQCl3j9AEemkJ6es1zdyvw" elementId="panelId" name="Panel Name" optional="false"/>
  2557. </commands>
  2558. <commands xmi:id="_YQCl3z9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.ContinueRebase" commandName="Continue Rebase" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2559. <commands xmi:id="_YQCl4D9AEemkJ6es1zdyvw" elementId="org.eclipse.cft.server.ui.disconnectcommand" commandName="Disconnect" description="Disconnect Server" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2560. <commands xmi:id="_YQCl4T9AEemkJ6es1zdyvw" 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="_YPxgJD9AEemkJ6es1zdyvw"/>
  2561. <commands xmi:id="_YQCl4j9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.CreatePatch" commandName="Create Patch..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2562. <commands xmi:id="_YQCl4z9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.object.goto" commandName="&#x6253;&#x5f00;&#x6570;&#x636e;&#x5e93;&#x5bf9;&#x8c61;..." description="&#x6253;&#x5f00;&#x6570;&#x636e;&#x5e93;&#x5143;&#x5bf9;&#x8c61;" category="_YPxgJz9AEemkJ6es1zdyvw"/>
  2563. <commands xmi:id="_YQCl5D9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.Resume" commandName="Resume" description="Resume" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2564. <commands xmi:id="_YQCl5T9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.sql.editor.open" commandName="SQL &#x7f16;&#x8f91;&#x5668;" description="&#x6253;&#x5f00; SQL &#x7f16;&#x8f91;&#x5668;(&#x5df2;&#x5b58;&#x5728;&#x6216;&#x65b0;&#x5efa;)" category="_YPxgJz9AEemkJ6es1zdyvw"/>
  2565. <commands xmi:id="_YQCl5j9AEemkJ6es1zdyvw" elementId="com.genuitec.myeclipse.perspective.meexplorer.search.folderfiltertogglecommand" commandName="Do not match folders" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2566. <commands xmi:id="_YQCl5z9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.toggle.comment" commandName="Toggle Comment" description="Toggle comment the selected lines" category="_YPw49z9AEemkJ6es1zdyvw"/>
  2567. <commands xmi:id="_YQCl6D9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.context.ui.commands.open.context.dialog" commandName="Show Context Quick View" description="Show Context Quick View" category="_YPw49j9AEemkJ6es1zdyvw"/>
  2568. <commands xmi:id="_YQCl6T9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.file.restartWorkbench" commandName="Restart" description="Restart the workbench" category="_YPw4_D9AEemkJ6es1zdyvw"/>
  2569. <commands xmi:id="_YQCl6j9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
  2570. <commands xmi:id="_YQCl6z9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.sync.connection" commandName="&#x4ece;&#x5bfc;&#x822a;&#x8bbe;&#x7f6e;&#x8fde;&#x63a5;" description="&#x6839;&#x636e;&#x6570;&#x636e;&#x5e93;&#x5bfc;&#x822a;&#x5668;&#x7684;&#x9009;&#x62e9;&#x8bbe;&#x7f6e;&#x6d3b;&#x52a8;&#x8fde;&#x63a5;" category="_YPxgDD9AEemkJ6es1zdyvw"/>
  2571. <commands xmi:id="_YQCl7D9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.CompareWithRef" commandName="Compare with Branch, Tag or Reference..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2572. <commands xmi:id="_YQCl7T9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.context.ui.commands.attachment.retrieveContext" commandName="Retrieve Context Attachment" category="_YPw49j9AEemkJ6es1zdyvw"/>
  2573. <commands xmi:id="_YQCl7j9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.toggleOverwrite" commandName="Toggle Overwrite" description="Toggle overwrite mode" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2574. <commands xmi:id="_YQCl7z9AEemkJ6es1zdyvw" elementId="org.springframework.ide.eclipse.boot.dash.boot.dash.RestartAction" commandName="(Re)start" description="(Re)start Boot App" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  2575. <commands xmi:id="_YQCl8D9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.rejectChanges" commandName="&#x653e;&#x5f03;&#x53d8;&#x66f4;" description="&#x653e;&#x5f03;&#x53d8;&#x66f4;" category="_YPw4_T9AEemkJ6es1zdyvw"/>
  2576. <commands xmi:id="_YQCl8T9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.pull.up" commandName="Pull Up" description="Move members to a superclass" category="_YPxgIj9AEemkJ6es1zdyvw"/>
  2577. <commands xmi:id="_YQCl8j9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.folding.collapse_all" commandName="Collapse All" description="Collapses all folded regions" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2578. <commands xmi:id="_YQCl8z9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
  2579. <commands xmi:id="_YQCl9D9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.RefreshRepositoryTasks" commandName="Synchronize Changed" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2580. <commands xmi:id="_YQCl9T9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.ToggleWatchpoint" commandName="Toggle Watchpoint" description="Creates or removes a watchpoint" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2581. <commands xmi:id="_YQCl9j9AEemkJ6es1zdyvw" elementId="org.eclipse.equinox.p2.ui.discovery.commands.ShowRepositoryCatalog" commandName="Show Repository Catalog" category="_YPxgDz9AEemkJ6es1zdyvw">
  2582. <parameters xmi:id="_YQCl9z9AEemkJ6es1zdyvw" elementId="org.eclipse.equinox.p2.ui.discovery.commands.RepositoryParameter" name="P2 Repository URI"/>
  2583. </commands>
  2584. <commands xmi:id="_YQDM0D9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.closeRendering" commandName="Close Rendering" description="Close the selected rendering." category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2585. <commands xmi:id="_YQDM0T9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewOpenInEditor" commandName="Open in Editor" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2586. <commands xmi:id="_YQDM0j9AEemkJ6es1zdyvw" 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="_YPxgED9AEemkJ6es1zdyvw"/>
  2587. <commands xmi:id="_YQDM0z9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.submodule.update" commandName="Update Submodule" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2588. <commands xmi:id="_YQDM1D9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.ProfileLast" commandName="Profile" description="Launch in profile mode" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2589. <commands xmi:id="_YQDM1T9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.navigator.bookmark.navigate" commandName="Navigate To" description="Navigate to the bookmarked object" category="_YPxgFD9AEemkJ6es1zdyvw"/>
  2590. <commands xmi:id="_YQDM1j9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.focus.filter" commandName="&#x6fc0;&#x6d3b;&#x8fc7;&#x6ee4;&#x5668;/&#x6570;&#x636e;&#x7f16;&#x8f91;&#x5668;" description="&#x5c06;&#x7126;&#x70b9;&#x8bbe;&#x7f6e;&#x5230;&#x8fc7;&#x6ee4;&#x7f16;&#x8f91;&#x5668;/&#x6570;&#x636e;&#x7f16;&#x8f91;&#x5668;" category="_YPw4_T9AEemkJ6es1zdyvw"/>
  2591. <commands xmi:id="_YQDM1z9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.Pull" commandName="Pull" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2592. <commands xmi:id="_YQDM2D9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.TypeHierarchy" commandName="JavaScript Type Hierarchy" description="Show the Type Hierarchy view" category="_YPxgEj9AEemkJ6es1zdyvw"/>
  2593. <commands xmi:id="_YQDM2T9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.swap.mark" commandName="Swap Mark" description="Swap the mark with the cursor position" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2594. <commands xmi:id="_YQDM2j9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.correction.addCast" commandName="Quick Fix - Add cast" description="Invokes quick assist and selects 'Add cast'" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  2595. <commands xmi:id="_YQDM2z9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.save.file" commandName="&#x4fdd;&#x5b58; SQL &#x811a;&#x672c;" description="&#x4fdd;&#x5b58;&#x81f3;&#x6587;&#x4ef6;" category="_YPxgDD9AEemkJ6es1zdyvw"/>
  2596. <commands xmi:id="_YQDM3D9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.context.ui.commands.interest.increment" commandName="Make Landmark" description="Make Landmark" category="_YPw49j9AEemkJ6es1zdyvw"/>
  2597. <commands xmi:id="_YQDM3T9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
  2598. <commands xmi:id="_YQDM3j9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.hierarchy" commandName="Quick Hierarchy" description="Show the quick hierarchy of the selected element" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2599. <commands xmi:id="_YQDM3z9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.export.data" commandName="&#x5bfc;&#x51fa;&#x6570;&#x636e;" description="&#x5c06;&#x6570;&#x636e;&#x5bfc;&#x51fa;&#x81f3;&#x6587;&#x4ef6;" category="_YPyHED9AEemkJ6es1zdyvw"/>
  2600. <commands xmi:id="_YQDM4D9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureFetch" commandName="Configure Fetch..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2601. <commands xmi:id="_YQDM4T9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.api.tools.ui.convert.javadocs" commandName="Convert API Tools &amp;Javadoc Tags..." description="Starts a wizard that will allow you to convert existing Javadoc tags to annotations" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2602. <commands xmi:id="_YQDM4j9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.open.external.javadoc" commandName="Open Attached Javadoc" description="Open the attached Javadoc of the selected element in a browser" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2603. <commands xmi:id="_YQDM4z9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.EquinoxLaunchShortcut.run" commandName="Run OSGi Framework" description="Run OSGi Framework" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2604. <commands xmi:id="_YQDM5D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.shiftLeft" commandName="Shift Left" description="Shift a block of text to the left" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2605. <commands xmi:id="_YQDM5T9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.ui.structure.select.next" commandName="Select Next Element" description="Expand selection to include next sibling" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2606. <commands xmi:id="_YQDM5j9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.grid.columnsFitScreen" commandName="Columns pack: fit screen" description="Resize columns to see maximum information" category="_YPw4_T9AEemkJ6es1zdyvw"/>
  2607. <commands xmi:id="_YQDM5z9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.Push" commandName="Push..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2608. <commands xmi:id="_YQDM6D9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.commands.AddClassPrepareBreakpoint" commandName="Add Class Load Breakpoint" description="Add a class load breakpoint" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2609. <commands xmi:id="_YQDM6T9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.ui.convertJavaProjectToJpa" commandName="Convert to JPA Project..." category="_YPw4_D9AEemkJ6es1zdyvw"/>
  2610. <commands xmi:id="_YQDM6j9AEemkJ6es1zdyvw" elementId="com.genuitec.myeclipse.breadcrumb.togglebreadcrumbcommand" commandName="BreadCrumb" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2611. <commands xmi:id="_YQDM6z9AEemkJ6es1zdyvw" elementId="org.eclipse.emf.codegen.ecore.ui.Generate" commandName="Generate Code" description="Generate code for the EMF models in the workspace" category="_YPxgIz9AEemkJ6es1zdyvw"/>
  2612. <commands xmi:id="_YQDM7D9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.generate.javadoc" commandName="Generate JSDoc" description="Generates JSDoc for a selectable set of JavaScript resources" category="_YPxgJT9AEemkJ6es1zdyvw"/>
  2613. <commands xmi:id="_YQDM7T9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.stash.drop" commandName="Delete Stashed Commit..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2614. <commands xmi:id="_YQDM7j9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.comment.multi" commandName="&#x5207;&#x6362;&#x5757;&#x6ce8;&#x91ca;" description="&#x6dfb;&#x52a0;&#x6216;&#x5220;&#x9664;&#x591a;&#x884c;&#x6ce8;&#x91ca;" category="_YPxgDD9AEemkJ6es1zdyvw"/>
  2615. <commands xmi:id="_YQDM7z9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.DebugPerspective" commandName="Debug" description="Open the debug perspective" category="_YPyHET9AEemkJ6es1zdyvw"/>
  2616. <commands xmi:id="_YQDM8D9AEemkJ6es1zdyvw" elementId="org.eclipse.tips.ide.command.open" commandName="Tip of the Day" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2617. <commands xmi:id="_YQDM8T9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.source.quickMenu" commandName="Show Source Quick Menu" description="Shows the source quick menu" category="_YPw49z9AEemkJ6es1zdyvw"/>
  2618. <commands xmi:id="_YQDM8j9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.specific_content_assist.command" commandName="Content Assist" description="A parameterizable command that invokes content assist with a single completion proposal category" category="_YPw48T9AEemkJ6es1zdyvw">
  2619. <parameters xmi:id="_YQDM8z9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.specific_content_assist.category_id" name="type" optional="false"/>
  2620. </commands>
  2621. <commands xmi:id="_YQDM9D9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.search.references.in.hierarchy" commandName="References in Hierarchy" description="Search for references of the selected element in its hierarchy" category="_YPxgKT9AEemkJ6es1zdyvw"/>
  2622. <commands xmi:id="_YQDM9T9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.expandAll" commandName="Expand All" description="Expand the current tree" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2623. <commands xmi:id="_YQDM9j9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.file.saveAll" commandName="Save All" description="Save all current contents" category="_YPw4_D9AEemkJ6es1zdyvw"/>
  2624. <commands xmi:id="_YQDM9z9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.search.method.exits" commandName="Search Method Exit Occurrences in File" description="Search for method exit occurrences of a selected return type" category="_YPxgKT9AEemkJ6es1zdyvw"/>
  2625. <commands xmi:id="_YQDM-D9AEemkJ6es1zdyvw" 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="_YPxgGj9AEemkJ6es1zdyvw"/>
  2626. <commands xmi:id="_YQDM-T9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.folding.collapseMembers" commandName="Collapse Members" description="Collapse all members" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2627. <commands xmi:id="_YQDM-j9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.file.closeOthers" commandName="Close Others" description="Close all editors except the one that is active" category="_YPw4_D9AEemkJ6es1zdyvw"/>
  2628. <commands xmi:id="_YQDM-z9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.rename.element" commandName="Rename - Refactoring " description="Rename the selected element" category="_YPxgED9AEemkJ6es1zdyvw"/>
  2629. <commands xmi:id="_YQDM_D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.editors.quickdiff.revertLine" commandName="Revert Line" description="Revert the current line" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2630. <commands xmi:id="_YQDM_T9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.OpenDebugConfigurations" commandName="Debug..." description="Open debug launch configuration dialog" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2631. <commands xmi:id="_YQDM_j9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.eclipselink.ui.generateDynamicEntities" commandName="Generate Dynamic Entities from Tables..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2632. <commands xmi:id="_YQDM_z9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.SimpleFetch" commandName="Fetch from Upstream" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2633. <commands xmi:id="_YQDNAD9AEemkJ6es1zdyvw" elementId="org.eclipse.m2e.sourcelookup.ui.importBinaryProject" commandName="Import Binary Project" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2634. <commands xmi:id="_YQDNAT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.previousEditor" commandName="Previous Editor" description="Switch to the previous editor" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  2635. <commands xmi:id="_YQDNAj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.copy.qualified.name" commandName="Copy Qualified Name" description="Copy a fully qualified name to the system clipboard" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  2636. <commands xmi:id="_YQDNAz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.promote.local.variable" commandName="Convert Local Variable to Field" description="Convert a local variable to a field" category="_YPxgIj9AEemkJ6es1zdyvw"/>
  2637. <commands xmi:id="_YQDNBD9AEemkJ6es1zdyvw" elementId="com.genuitec.eclipse.inlinesearch.replaceone" commandName="Replace and Find Next" category="_YPyHFj9AEemkJ6es1zdyvw"/>
  2638. <commands xmi:id="_YQDNBT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.sql.editor.recent" commandName="&#x8fd1;&#x671f; SQL &#x7f16;&#x8f91;&#x5668;" description="&#x6253;&#x5f00;&#x8fd1;&#x671f; SQL &#x811a;&#x672c;" category="_YPxgJz9AEemkJ6es1zdyvw"/>
  2639. <commands xmi:id="_YQDNBj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.zoomIn" commandName="Zoom In" description="Zoom in text, increase default font size for text editors" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2640. <commands xmi:id="_YQDNBz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.ide.OpenMarkersView" commandName="Open Another" description="Open another view" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2641. <commands xmi:id="_YQDNCD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.PackageExplorer" commandName="JavaScript Script Explorer" description="Show the Script Explorer" category="_YPxgEj9AEemkJ6es1zdyvw"/>
  2642. <commands xmi:id="_YQDNCT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.correction.changeToStatic" commandName="Quick Fix - Change to static access" description="Invokes quick assist and selects 'Change to static access'" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  2643. <commands xmi:id="_YQDNCj9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.newRendering" commandName="New Rendering" description="Add a new rendering." category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2644. <commands xmi:id="_YQDNCz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.project.closeUnrelatedProjects" commandName="Close Unrelated Projects" description="Close unrelated projects" category="_YPxgJT9AEemkJ6es1zdyvw"/>
  2645. <commands xmi:id="_YQDNDD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.self.encapsulate.field" commandName="Encapsulate Field" description="Create getting and setting methods for the field and use only those to access the field" category="_YPxgIj9AEemkJ6es1zdyvw"/>
  2646. <commands xmi:id="_YQDNDT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.ide.markers.copyMarkerResourceQualifiedName" commandName="Copy Resource Qualified Name To Clipboard" description="Copies markers resource qualified name to the clipboard" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2647. <commands xmi:id="_YQDNDj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.procedure.execute" commandName="&#x6267;&#x884c;&#x5b58;&#x50a8;&#x8fc7;&#x7a0b;" description="&#x6253;&#x5f00;&#x5305;&#x542b;&#x5b58;&#x50a8;&#x8fc7;&#x7a0b;&#x6267;&#x884c;&#x8bed;&#x53e5;&#x7684; SQL &#x7ec8;&#x7aef;" category="_YPxgJz9AEemkJ6es1zdyvw"/>
  2648. <commands xmi:id="_YQDNDz9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.runtimeWorkbenchShortcut.run" commandName="Run Eclipse Application" description="Run Eclipse Application" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2649. <commands xmi:id="_YQDNED9AEemkJ6es1zdyvw" elementId="org.eclipse.search.ui.performTextSearchWorkspace" commandName="Find Text in Workspace" description="Searches the files in the workspace for specific text." category="_YPxgKT9AEemkJ6es1zdyvw"/>
  2650. <commands xmi:id="_YQDNET9AEemkJ6es1zdyvw" 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="_YPxgED9AEemkJ6es1zdyvw"/>
  2651. <commands xmi:id="_YQDNEj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.toggle.result.panel" commandName="&#x5207;&#x6362;&#x7ed3;&#x679c;&#x9762;&#x677f;" description="&#x663e;&#x793a;/&#x9690;&#x85cf;&#x7ed3;&#x679c;&#x9762;&#x677f;" category="_YPxgDD9AEemkJ6es1zdyvw"/>
  2652. <commands xmi:id="_YQDz4D9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.ui.remove.block.comment" commandName="Remove Block Comment" description="Remove Block Comment" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2653. <commands xmi:id="_YQDz4T9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.erd.diagram.create" commandName="&#x521b;&#x5efa; ERD" description="&#x521b;&#x5efa;&#x5b9e;&#x4f53;&#x5173;&#x7cfb;&#x56fe;" category="_YPxgFD9AEemkJ6es1zdyvw"/>
  2654. <commands xmi:id="_YQDz4j9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.runtime.spy.commands.menuSpyCommand" commandName="Plug-in Menu Spy" description="Show the Plug-in Spy" category="_YPyHFT9AEemkJ6es1zdyvw"/>
  2655. <commands xmi:id="_YQDz4z9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.ui.entityMappingsAddPersistentClass" commandName="Add Class..." category="_YPxgCj9AEemkJ6es1zdyvw"/>
  2656. <commands xmi:id="_YQDz5D9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
  2657. <commands xmi:id="_YQDz5T9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ext.oracle.code.compile" commandName="Compile" description="Compile" category="_YPxgEz9AEemkJ6es1zdyvw"/>
  2658. <commands xmi:id="_YQDz5j9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.navigate.gototype" commandName="Go to Type" description="Go to Type" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2659. <commands xmi:id="_YQDz5z9AEemkJ6es1zdyvw" elementId="org.eclipse.m2e.core.ui.command.openPom" commandName="Open Maven POM" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2660. <commands xmi:id="_YQDz6D9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.index.rebuild" commandName="Rebuild Java Index" description="Rebuilds the Java index database" category="_YPxgJT9AEemkJ6es1zdyvw"/>
  2661. <commands xmi:id="_YQDz6T9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.addBookmark" commandName="Add Bookmark" description="Add a bookmark" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2662. <commands xmi:id="_YQDz6j9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xsd.ui.refactor.rename.element" commandName="&amp;Rename XSD element" description="Rename XSD element" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2663. <commands xmi:id="_YQDz6z9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.set.mark" commandName="Set Mark" description="Set the mark" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2664. <commands xmi:id="_YQDz7D9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.goToPreviousUnread" commandName="Go To Previous Unread Task" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2665. <commands xmi:id="_YQDz7T9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.next" commandName="Select Next Element" description="Expand selection to include next sibling" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2666. <commands xmi:id="_YQDz7j9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.navigator.linkeditor" commandName="&#x94fe;&#x63a5;&#x7f16;&#x8f91;&#x5668;" description="&#x94fe;&#x63a5;&#x7f16;&#x8f91;&#x5668;" category="_YPxgFD9AEemkJ6es1zdyvw"/>
  2667. <commands xmi:id="_YQDz7z9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.correction.splitJoinVariableDeclaration.assist" commandName="Quick Assist - Split/Join variable declaration" description="Invokes quick assist and selects 'Split/Join variable declaration'" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  2668. <commands xmi:id="_YQDz8D9AEemkJ6es1zdyvw" elementId="org.springframework.ide.eclipse.boot.ui.EnableDisableBootDevtools" commandName="Add/Remove Boot Devtools" category="_YPxgFT9AEemkJ6es1zdyvw"/>
  2669. <commands xmi:id="_YQDz8T9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.showView" commandName="Show View" description="Shows a particular view" category="_YPxgEj9AEemkJ6es1zdyvw">
  2670. <parameters xmi:id="_YQDz8j9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.showView.viewId" name="View"/>
  2671. <parameters xmi:id="_YQDz8z9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.showView.secondaryId" name="Secondary Id"/>
  2672. <parameters xmi:id="_YQDz9D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.views.showView.makeFast" name="As FastView"/>
  2673. </commands>
  2674. <commands xmi:id="_YQDz9T9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.Ignore" commandName="Ignore" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2675. <commands xmi:id="_YQDz9j9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.commit.Edit" commandName="Edit Commit" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2676. <commands xmi:id="_YQDz9z9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.showResourceByPath" commandName="Show Resource in Navigator" description="Show a resource in the Navigator given its path" category="_YPxgGj9AEemkJ6es1zdyvw">
  2677. <parameters xmi:id="_YQDz-D9AEemkJ6es1zdyvw" elementId="resourcePath" name="Resource Path" typeId="org.eclipse.ui.ide.resourcePath" optional="false"/>
  2678. </commands>
  2679. <commands xmi:id="_YQDz-T9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.SkipAllBreakpoints" commandName="Skip All Breakpoints" description="Sets whether or not any breakpoint should suspend execution" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2680. <commands xmi:id="_YQDz-j9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.selectRootElements" commandName="Select Root Elements" category="_YPw4-z9AEemkJ6es1zdyvw">
  2681. <parameters xmi:id="_YQDz-z9AEemkJ6es1zdyvw" elementId="type" name="type" optional="false"/>
  2682. </commands>
  2683. <commands xmi:id="_YQDz_D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.delimiter.windows" commandName="Convert Line Delimiters to Windows (CRLF, \r\n, 0D0A, &#xa4;&#xb6;)" description="Converts the line delimiters to Windows (CRLF, \r\n, 0D0A, &#xa4;&#xb6;)" category="_YPw4_D9AEemkJ6es1zdyvw"/>
  2684. <commands xmi:id="_YQDz_T9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.findNext" commandName="Find Next" description="Find next item" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2685. <commands xmi:id="_YQDz_j9AEemkJ6es1zdyvw" 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="_YPw4_j9AEemkJ6es1zdyvw"/>
  2686. <commands xmi:id="_YQDz_z9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
  2687. <commands xmi:id="_YQD0AD9AEemkJ6es1zdyvw" elementId="org.springframework.ide.eclipse.boot.commands.editStartersCommand" commandName="Edit Starters" category="_YPxgFT9AEemkJ6es1zdyvw"/>
  2688. <commands xmi:id="_YQD0AT9AEemkJ6es1zdyvw" 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="_YPxgGj9AEemkJ6es1zdyvw"/>
  2689. <commands xmi:id="_YQD0Aj9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.openPluginArtifact" commandName="Open Plug-in Artifact" description="Open a plug-in artifact in the manifest editor" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2690. <commands xmi:id="_YQD0Az9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.server.debug" commandName="Debug" description="Debug server" category="_YPw4-T9AEemkJ6es1zdyvw"/>
  2691. <commands xmi:id="_YQD0BD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.nextSubTab" commandName="Next Sub-Tab" description="Switch to the next sub-tab" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2692. <commands xmi:id="_YQD0BT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.introduce.parameter" commandName="Introduce Parameter" description="Introduce a new method parameter based on the selected expression" category="_YPxgIj9AEemkJ6es1zdyvw"/>
  2693. <commands xmi:id="_YQD0Bj9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.addTaskRepository" commandName="Add Task Repository..." category="_YPw4-D9AEemkJ6es1zdyvw">
  2694. <parameters xmi:id="_YQD0Bz9AEemkJ6es1zdyvw" elementId="connectorKind" name="Repository Type"/>
  2695. </commands>
  2696. <commands xmi:id="_YQD0CD9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.removeAllSessions" commandName="Remove All Sessions" category="_YPw4-z9AEemkJ6es1zdyvw"/>
  2697. <commands xmi:id="_YQD0CT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.localJavaShortcut.run" commandName="Run Java Application" description="Run Java Application" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2698. <commands xmi:id="_YQD0Cj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.addTask" commandName="Add Task..." description="Add a task" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2699. <commands xmi:id="_YQD0Cz9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.updateUnitVersions" commandName="Update IU Versions from Repositories" description="Update to latest IU versions" category="_YPxgDT9AEemkJ6es1zdyvw"/>
  2700. <commands xmi:id="_YQD0DD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.ui.structure.select.enclosing" commandName="Select Enclosing Element" description="Expand selection to include enclosing element" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2701. <commands xmi:id="_YQD0DT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.wsdl.ui.refactor.rename.element" commandName="Rename WSDL component" description="Renames WSDL component" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2702. <commands xmi:id="_YQD0Dj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.cheatsheets.openCheatSheet" commandName="Open Cheat Sheet" description="Open a Cheat Sheet." category="_YPxgJD9AEemkJ6es1zdyvw">
  2703. <parameters xmi:id="_YQD0Dz9AEemkJ6es1zdyvw" elementId="cheatSheetId" name="Identifier"/>
  2704. </commands>
  2705. <commands xmi:id="_YQD0ED9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.viewSource.command" commandName="View Unformatted Text" category="_YPw4-D9AEemkJ6es1zdyvw"/>
  2706. <commands xmi:id="_YQD0ET9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.moveLineDown" commandName="Move Lines Down" description="Moves the selected lines down" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2707. <commands xmi:id="_YQD0Ej9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.SourceView" commandName="JavaScript Declaration" description="Show the Declaration view" category="_YPxgEj9AEemkJ6es1zdyvw"/>
  2708. <commands xmi:id="_YQD0Ez9AEemkJ6es1zdyvw" elementId="org.eclipse.equinox.p2.ui.sdk.update" commandName="Check for Updates" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2709. <commands xmi:id="_YQD0FD9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.searchTargetRepositories" commandName="Add Artifact to Target Platform" description="Add an artifact to your target platform" category="_YPxgDz9AEemkJ6es1zdyvw">
  2710. <parameters xmi:id="_YQD0FT9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.searchTargetRepositories.term" name="The initial search pattern for the artifact search dialog"/>
  2711. </commands>
  2712. <commands xmi:id="_YQD0Fj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.goto.textEnd" commandName="Text End" description="Go to the end of the text" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2713. <commands xmi:id="_YQD0Fz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.goto.matching.bracket" commandName="Go to Matching Bracket" description="Moves the cursor to the matching bracket" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2714. <commands xmi:id="_YQD0GD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.part.previousPage" commandName="Previous Page" description="Switch to the previous page" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2715. <commands xmi:id="_YQD0GT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.override.methods" commandName="Override/Implement Functions" description="Override or implement functions from super types" category="_YPw49z9AEemkJ6es1zdyvw"/>
  2716. <commands xmi:id="_YQD0Gj9AEemkJ6es1zdyvw" elementId="com.genuitec.eclipse.meexplorer.jdtsupport.assignworkingset.command" commandName="Assign Working Sets..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2717. <commands xmi:id="_YQD0Gz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.project.create" commandName="&#x65b0;&#x5efa;&#x9879;&#x76ee;" description="&#x65b0;&#x5efa;&#x9879;&#x76ee;" category="_YPxgFD9AEemkJ6es1zdyvw"/>
  2718. <commands xmi:id="_YQD0HD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.project.closeProject" commandName="Close Project" description="Close the selected project" category="_YPxgJT9AEemkJ6es1zdyvw"/>
  2719. <commands xmi:id="_YQD0HT9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.PullWithOptions" commandName="Pull..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2720. <commands xmi:id="_YQEa8D9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.refactor.migrate.jar" commandName="Migrate JAR File" description="Migrate a JAR File to a new version" category="_YPxgED9AEemkJ6es1zdyvw"/>
  2721. <commands xmi:id="_YQEa8T9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.open.editor" commandName="Open Declaration" description="Open an editor on the selected element" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2722. <commands xmi:id="_YQEa8j9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.server.publish" commandName="Publish" description="Publish to server" category="_YPw4-T9AEemkJ6es1zdyvw"/>
  2723. <commands xmi:id="_YQEa8z9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.introduce.factory" commandName="Introduce Factory" description="Introduce a factory method to encapsulate invocation of the selected constructor" category="_YPxgIj9AEemkJ6es1zdyvw"/>
  2724. <commands xmi:id="_YQEa9D9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.updateClasspath" commandName="Update Classpath" description="Updates the plug-in classpath from latest settings" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2725. <commands xmi:id="_YQEa9T9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.commit.CherryPick" commandName="Cherry Pick" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2726. <commands xmi:id="_YQEa9j9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.use.supertype" commandName="Use Supertype Where Possible" description="Change occurrences of a type to use a supertype instead" category="_YPxgIj9AEemkJ6es1zdyvw"/>
  2727. <commands xmi:id="_YQEa9z9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.markTaskUnread" commandName="Mark Task Unread" category="_YPw4-D9AEemkJ6es1zdyvw"/>
  2728. <commands xmi:id="_YQEa-D9AEemkJ6es1zdyvw" elementId="org.eclipse.search.ui.performTextSearchFile" commandName="Find Text in File" description="Searches the files in the file for specific text." category="_YPxgKT9AEemkJ6es1zdyvw"/>
  2729. <commands xmi:id="_YQEa-T9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.ui.structure.select.last" commandName="Restore Last Selection" description="Restore last selection" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2730. <commands xmi:id="_YQEa-j9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.txn.log" commandName="&#x4e8b;&#x52a1;&#x65e5;&#x5fd7;" description="&#x5f53;&#x524d;&#x4e8b;&#x52a1;&#x65e5;&#x5fd7;&#xff08;&#x6267;&#x884c;&#x7684;&#x67e5;&#x8be2;&#xff09;" category="_YPxgJz9AEemkJ6es1zdyvw"/>
  2731. <commands xmi:id="_YQEa-z9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.sort.members" commandName="Sort Members" description="Sort all members using the member order preference" category="_YPw49z9AEemkJ6es1zdyvw"/>
  2732. <commands xmi:id="_YQEa_D9AEemkJ6es1zdyvw" 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="_YPw49D9AEemkJ6es1zdyvw"/>
  2733. <commands xmi:id="_YQEa_T9AEemkJ6es1zdyvw" elementId="org.eclipse.tm.terminal.view.ui.command.launch" commandName="Open Terminal on Selection" category="_YPxgHj9AEemkJ6es1zdyvw"/>
  2734. <commands xmi:id="_YQEa_j9AEemkJ6es1zdyvw" elementId="org.springsource.ide.eclipse.commons.ui.stop" commandName="Stop Application" description="Stop last launched application" category="_YPxgJj9AEemkJ6es1zdyvw"/>
  2735. <commands xmi:id="_YQEa_z9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.row.previous" commandName="&#x4e0a;&#x4e00;&#x884c;" description="&#x79fb;&#x52a8;&#x5230;&#x4e0a;&#x4e00;&#x884c;" category="_YPw4_T9AEemkJ6es1zdyvw"/>
  2736. <commands xmi:id="_YQEbAD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.folding.expand_all" commandName="Expand All" description="Expands all folded regions" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2737. <commands xmi:id="_YQEbAT9AEemkJ6es1zdyvw" 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="_YPxgGj9AEemkJ6es1zdyvw">
  2738. <parameters xmi:id="_YQEbAj9AEemkJ6es1zdyvw" elementId="elementRef" name="JavaScript element reference" typeId="org.eclipse.wst.jsdt.ui.commands.javaElementReference" optional="false"/>
  2739. </commands>
  2740. <commands xmi:id="_YQEbAz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xsd.ui.refactor.makeElementGlobal" commandName="Make Local Element &amp;Global" description="Promotes local element to global level and replaces its references" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2741. <commands xmi:id="_YQEbBD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.correction.encapsulateField.assist" commandName="Quick Assist - Create getter/setter for field" description="Invokes quick assist and selects 'Create getter/setter for field'" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  2742. <commands xmi:id="_YQEbBT9AEemkJ6es1zdyvw" elementId="org.eclipse.oomph.setup.editor.openEditorDropdown" commandName="Open Setup Editor" category="_YPxgGT9AEemkJ6es1zdyvw"/>
  2743. <commands xmi:id="_YQEbBj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.help.quickStartAction" commandName="Welcome" description="Show help for beginning users" category="_YPxgJD9AEemkJ6es1zdyvw"/>
  2744. <commands xmi:id="_YQEbBz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.ReplaceWithPrevious" commandName="Replace with Previous Revision" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2745. <commands xmi:id="_YQEbCD9AEemkJ6es1zdyvw" elementId="org.eclipse.m2e.sourcelookup.ui.openPom" commandName="Open Pom" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2746. <commands xmi:id="_YQEbCT9AEemkJ6es1zdyvw" elementId="org.eclipse.oomph.setup.ui.questionnaire" commandName="Configuration Questionnaire" description="Review the IDE's most fiercely contested preferences" category="_YPxgGT9AEemkJ6es1zdyvw"/>
  2747. <commands xmi:id="_YQEbCj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.hideShowEditors" commandName="Toggle Shared Area Visibility" description="Toggles the visibility of the shared area" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  2748. <commands xmi:id="_YQEbCz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.folding.restore" commandName="Reset Structure" description="Resets the folding structure" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2749. <commands xmi:id="_YQEbDD9AEemkJ6es1zdyvw" elementId="org.eclipse.help.ui.indexcommand" commandName="Index" description="Show Keyword Index" category="_YPxgJD9AEemkJ6es1zdyvw"/>
  2750. <commands xmi:id="_YQEbDT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.clean.up" commandName="Clean Up" description="Solve problems and improve code style on selected resources" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  2751. <commands xmi:id="_YQEbDj9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.sqleditor.GotoMatchingTokenAction" commandName="Goto Matching Token" category="_YPxgKz9AEemkJ6es1zdyvw"/>
  2752. <commands xmi:id="_YQEbDz9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.api.tools.ui.setup.projects" commandName="API &amp;Tools Setup..." description="Configure projects for API usage and compatibility checks" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2753. <commands xmi:id="_YQEbED9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
  2754. <commands xmi:id="_YQEbET9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.localJavaShortcut.debug" commandName="Debug Java Application" description="Debug Java Application" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2755. <commands xmi:id="_YQEbEj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.forward" commandName="Forward" description="Navigate forward" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2756. <commands xmi:id="_YQEbEz9AEemkJ6es1zdyvw" elementId="org.eclipse.buildship.ui.commands.openbuildscript" commandName="Open Gradle Build Script" description="Opens the Gradle build script for the selected Gradle project" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2757. <commands xmi:id="_YQEbFD9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.eclipselink.ui.convertJavaConverters" commandName="Move Java Converters to XML..." category="_YPxgCD9AEemkJ6es1zdyvw"/>
  2758. <commands xmi:id="_YQEbFT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.last" commandName="Restore Last Selection" description="Restore last selection" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2759. <commands xmi:id="_YQEbFj9AEemkJ6es1zdyvw" elementId="org.eclipse.buildship.ui.commands.openrunconfiguration" commandName="Open Gradle Run Configuration" description="Opens the Run Configuration for the selected Gradle tasks" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2760. <commands xmi:id="_YQEbFz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.DeleteTag" commandName="&amp;Delete Tag" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2761. <commands xmi:id="_YQEbGD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.remove.occurrence.annotations" commandName="Remove Occurrence Annotations" description="Removes the occurrence annotations from the current editor" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  2762. <commands xmi:id="_YQEbGT9AEemkJ6es1zdyvw" elementId="org.eclipse.cft.server.ui.internal.actions.unmapprojectcommand" commandName="Unlink Project" description="Unlink the cloud application and the project." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2763. <commands xmi:id="_YQEbGj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.dashboard.remove" commandName="Remove dashboard" description="Remove dashboard from view" category="_YPxgJz9AEemkJ6es1zdyvw"/>
  2764. <commands xmi:id="_YQEbGz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.toggleOrder" commandName="&#x5207;&#x6362;&#x7ed3;&#x679c;&#x6392;&#x5e8f;" description="&#x5207;&#x6362;&#x7ed3;&#x679c;&#x96c6;&#x7684;&#x6392;&#x5e8f;(&#x5347;&#x5e8f;/&#x964d;&#x5e8f;/&#x9ed8;&#x8ba4;)" category="_YPw4_T9AEemkJ6es1zdyvw"/>
  2765. <commands xmi:id="_YQEbHD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.pinEditor" commandName="Pin Editor" description="Pin the current editor" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  2766. <commands xmi:id="_YQEbHT9AEemkJ6es1zdyvw" 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="_YPxgGj9AEemkJ6es1zdyvw"/>
  2767. <commands xmi:id="_YQEbHj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.goto.pageUp" commandName="Page Up" description="Go up one page" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2768. <commands xmi:id="_YQEbHz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.submodule.sync" commandName="Sync Submodule" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2769. <commands xmi:id="_YQEbID9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.DeleteBranch" commandName="Delete Branch" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2770. <commands xmi:id="_YQEbIT9AEemkJ6es1zdyvw" elementId="org.eclipse.tm.terminal.copy" commandName="Copy" category="_YPxgKD9AEemkJ6es1zdyvw"/>
  2771. <commands xmi:id="_YQEbIj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.goto.columnPrevious" commandName="Previous Column" description="Go to the previous column" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2772. <commands xmi:id="_YQEbIz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.filterMenu.distinct" commandName="&#x6309;&#x6570;&#x503c;&#x8fc7;&#x6ee4;" description="&#x6309;&#x7279;&#x5b9a;&#x7684;&#x5c5e;&#x6027;&#x503c;&#x8fc7;&#x6ee4;" category="_YPw4_T9AEemkJ6es1zdyvw"/>
  2773. <commands xmi:id="_YQEbJD9AEemkJ6es1zdyvw" elementId="org.eclipse.compare.selectNextChange" commandName="Select Next Change" description="Select Next Change" category="_YPxgHz9AEemkJ6es1zdyvw"/>
  2774. <commands xmi:id="_YQEbJT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.ui.generate.xml" commandName="XML File..." description="Generate a XML file from the selected DTD or Schema" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2775. <commands xmi:id="_YQEbJj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.project.refresh" commandName="&#x5237;&#x65b0;&#x9879;&#x76ee;" description="&#x5237;&#x65b0;&#x6574;&#x4e2a;&#x5de5;&#x4f5c;&#x7a7a;&#x95f4;" category="_YPxgFD9AEemkJ6es1zdyvw"/>
  2776. <commands xmi:id="_YQEbJz9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
  2777. <commands xmi:id="_YQEbKD9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
  2778. <commands xmi:id="_YQEbKT9AEemkJ6es1zdyvw" elementId="org.eclipse.ltk.ui.refactoring.commands.renameResource" commandName="Rename Resource" description="Rename the selected resource and notify LTK participants." category="_YPyHEj9AEemkJ6es1zdyvw"/>
  2779. <commands xmi:id="_YQFCAD9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.importFromRepository" commandName="Import Plug-in from a Repository" description="Imports a plug-in from a source repository" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2780. <commands xmi:id="_YQFCAT9AEemkJ6es1zdyvw" elementId="org.springframework.ide.eclipse.boot.dash.boot.dash.StopAction" commandName="Stop" description="Stop Boot App" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  2781. <commands xmi:id="_YQFCAj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.Rebase" commandName="Rebase on" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2782. <commands xmi:id="_YQFCAz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.commit.ShowInHistory" commandName="Show in History" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2783. <commands xmi:id="_YQFCBD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.previousTask" commandName="Previous Task Command" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2784. <commands xmi:id="_YQFCBT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.file.properties" commandName="Properties" description="Display the properties of the selected item" category="_YPw4_D9AEemkJ6es1zdyvw"/>
  2785. <commands xmi:id="_YQFCBj9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
  2786. <commands xmi:id="_YQFCBz9AEemkJ6es1zdyvw" elementId="org.eclipse.cft.server.ui.internal.actions.updaterestartmodulecommand" commandName="Update and Restart" description="=Update and Restart" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2787. <commands xmi:id="_YQFCCD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.ReplaceWithHead" commandName="Replace with HEAD revision" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2788. <commands xmi:id="_YQFCCT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.correction.renameInFile.assist" commandName="Quick Assist - Rename in file" description="Invokes quick assist and selects 'Rename in file'" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  2789. <commands xmi:id="_YQFCCj9AEemkJ6es1zdyvw" elementId="com.genuitec.eclipse.inlinesearch.commands.hideFindReplaceBarCommand" commandName="Close Inline Search" category="_YPyHFj9AEemkJ6es1zdyvw"/>
  2790. <commands xmi:id="_YQFCCz9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
  2791. <commands xmi:id="_YQFCDD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.activeContextInfo" commandName="Show activeContext Info" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  2792. <commands xmi:id="_YQFCDT9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.markTaskReadGoToPreviousUnread" commandName="Mark Task Read and Go To Previous Unread Task" category="_YPw4-D9AEemkJ6es1zdyvw"/>
  2793. <commands xmi:id="_YQFCDj9AEemkJ6es1zdyvw" 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="_YPxgGj9AEemkJ6es1zdyvw"/>
  2794. <commands xmi:id="_YQFCDz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.extract.constant" commandName="Extract Constant" description="Extracts a constant into a new static field and uses the new static field" category="_YPxgIj9AEemkJ6es1zdyvw"/>
  2795. <commands xmi:id="_YQFCED9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.select.textStart" commandName="Select Text Start" description="Select to the beginning of the text" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2796. <commands xmi:id="_YQFCET9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.ui.cleanup.document" commandName="Cleanup Document..." description="Cleanup document" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2797. <commands xmi:id="_YQFCEj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.ConfigurePush" commandName="Configure Upstream Push" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2798. <commands xmi:id="_YQFCEz9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.command.nextpage" commandName="Next Page of Memory" description="Load next page of memory" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2799. <commands xmi:id="_YQFCFD9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.command.gotoaddress" commandName="Go to Address" description="Go to Address" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2800. <commands xmi:id="_YQFCFT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.toggleMode" commandName="&#x5207;&#x6362;&#x8868;&#x683c;/&#x8bb0;&#x5f55;&#x89c6;&#x56fe;" description="&#x5207;&#x6362;&#x7ed3;&#x679c;&#x96c6;&#x7684;&#x8868;&#x683c;/&#x8bb0;&#x5f55;&#x89c6;&#x56fe;" category="_YPw4_T9AEemkJ6es1zdyvw"/>
  2801. <commands xmi:id="_YQFCFj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.maximizePart" commandName="Maximize Active View or Editor" description="Toggles maximize/restore state of active view or editor" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  2802. <commands xmi:id="_YQFCFz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.correction.qualifyField" commandName="Quick Fix - Qualify field access" description="Invokes quick assist and selects 'Qualify field access'" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  2803. <commands xmi:id="_YQFCGD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.newEditor" commandName="Clone Editor" description="Open another editor on the active editor's input" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  2804. <commands xmi:id="_YQFCGT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.ui.format" commandName="Format" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2805. <commands xmi:id="_YQFCGj9AEemkJ6es1zdyvw" elementId="org.eclipse.search.ui.openSearchDialog" commandName="Open Search Dialog" description="Open the Search dialog" category="_YPxgKT9AEemkJ6es1zdyvw"/>
  2806. <commands xmi:id="_YQFCGz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.contentAssist.proposals" commandName="Content Assist" description="Content Assist" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2807. <commands xmi:id="_YQFCHD9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
  2808. <commands xmi:id="_YQFCHT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.up" commandName="Up" description="Navigate up one level" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2809. <commands xmi:id="_YQFCHj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.activateEditor" commandName="Activate Editor" description="Activate the editor" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  2810. <commands xmi:id="_YQFCHz9AEemkJ6es1zdyvw" elementId="org.eclipse.m2e.core.ui.command.addPlugin" commandName="Add Maven Plugin" description="Add Maven Plugin" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2811. <commands xmi:id="_YQFCID9AEemkJ6es1zdyvw" elementId="sed.tabletree.expandAll" commandName="Expand All" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2812. <commands xmi:id="_YQFCIT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.modify.method.parameters" commandName="Change Method Signature" description="Change method signature includes parameter names and parameter order" category="_YPxgIj9AEemkJ6es1zdyvw"/>
  2813. <commands xmi:id="_YQFCIj9AEemkJ6es1zdyvw" 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="_YPw49D9AEemkJ6es1zdyvw"/>
  2814. <commands xmi:id="_YQFCIz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.qm.clear" commandName="&#x6e05;&#x9664;&#x65e5;&#x5fd7;" description="&#x6e05;&#x9664;&#x67e5;&#x8be2;&#x7ba1;&#x7406;&#x5668;&#x65e5;&#x5fd7;" category="_YPyHED9AEemkJ6es1zdyvw"/>
  2815. <commands xmi:id="_YQFCJD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.commit.CreateBranch" commandName="Create Branch..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2816. <commands xmi:id="_YQFCJT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.object.create" commandName="&#x521b;&#x5efa;&#x5bf9;&#x8c61;" description="&#x521b;&#x5efa;&#x65b0;&#x7684;&#x6570;&#x636e;&#x5e93;&#x5bf9;&#x8c61;" category="_YPxgJz9AEemkJ6es1zdyvw"/>
  2817. <commands xmi:id="_YQFCJj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.object.filter.add.exclude" commandName="&#x9690;&#x85cf;&#x9009;&#x4e2d;&#x5bf9;&#x8c61;" description="&#x9690;&#x85cf;&#x9009;&#x4e2d;&#x5bf9;&#x8c61;" category="_YPxgJz9AEemkJ6es1zdyvw"/>
  2818. <commands xmi:id="_YQFCJz9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.mergeSessions" commandName="Merge Sessions" category="_YPw4-z9AEemkJ6es1zdyvw"/>
  2819. <commands xmi:id="_YQFCKD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.correction.extractLocal.assist" commandName="Quick Assist - Extract local variable (replace all occurrences)" description="Invokes quick assist and selects 'Extract local variable (replace all occurrences)'" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  2820. <commands xmi:id="_YQFCKT9AEemkJ6es1zdyvw" elementId="org.springsource.ide.eclipse.commons.ui.relaunch" commandName="Relaunch Application" description="Relaunch last launched application" category="_YPxgJj9AEemkJ6es1zdyvw"/>
  2821. <commands xmi:id="_YQFCKj9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.Terminate" commandName="Terminate" description="Terminate" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2822. <commands xmi:id="_YQFCKz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.ShowRepositoriesView" commandName="Show Git Repositories View" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2823. <commands xmi:id="_YQFCLD9AEemkJ6es1zdyvw" 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="_YPxgJD9AEemkJ6es1zdyvw"/>
  2824. <commands xmi:id="_YQFCLT9AEemkJ6es1zdyvw" elementId="org.eclipse.compare.compareWithOther" commandName="Compare With Other Resource" description="Compare resources, clipboard contents or editors" category="_YPxgHz9AEemkJ6es1zdyvw"/>
  2825. <commands xmi:id="_YQFCLj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.filterMenu" commandName="&#x8fc7;&#x6ee4;&#x5668;&#x83dc;&#x5355;" description="&#x8fc7;&#x6ee4;&#x5668;&#x4e0a;&#x4e0b;&#x6587;&#x83dc;&#x5355;" category="_YPw4_T9AEemkJ6es1zdyvw"/>
  2826. <commands xmi:id="_YQFCLz9AEemkJ6es1zdyvw" 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="_YPxgGj9AEemkJ6es1zdyvw"/>
  2827. <commands xmi:id="_YQFCMD9AEemkJ6es1zdyvw" elementId="org.eclipse.cft.server.ui.connectcommand" commandName="Connect" description="Connect to Server" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2828. <commands xmi:id="_YQFCMT9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.CreatePatch" commandName="Create Patch..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2829. <commands xmi:id="_YQFCMj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.editors.revisions.author.toggle" commandName="Toggle Revision Author Display" description="Toggles the display of the revision author" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2830. <commands xmi:id="_YQFCMz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.goto.windowEnd" commandName="Window End" description="Go to the end of the window" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2831. <commands xmi:id="_YQFCND9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.commit" commandName="&#x63d0;&#x4ea4;" description="&#x63d0;&#x4ea4;&#x5f53;&#x524d;&#x4f1a;&#x8bdd;&#x4e2d;&#x7684;&#x6539;&#x52a8;" category="_YPxgJz9AEemkJ6es1zdyvw"/>
  2832. <commands xmi:id="_YQFCNT9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.eclipselink.ui.persistentTypeAddVirtualAttribute" commandName="Add Virtual Attribute..." category="_YPxgCj9AEemkJ6es1zdyvw"/>
  2833. <commands xmi:id="_YQFpED9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.perspectives.showPerspective" commandName="Show Perspective" description="Show a particular perspective" category="_YPyHET9AEemkJ6es1zdyvw">
  2834. <parameters xmi:id="_YQFpET9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.perspectives.showPerspective.perspectiveId" name="Parameter"/>
  2835. <parameters xmi:id="_YQFpEj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.perspectives.showPerspective.newWindow" name="In New Window"/>
  2836. </commands>
  2837. <commands xmi:id="_YQFpEz9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.eclipselink.ui.newDynamicEntity" commandName="EclipseLink Dynamic Entity" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2838. <commands xmi:id="_YQFpFD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.goto.line" commandName="Go to Line" description="Go to a specified line of text" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2839. <commands xmi:id="_YQFpFT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.editors.quickdiff.revert" commandName="Revert Lines" description="Revert the current selection, block or deleted lines" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2840. <commands xmi:id="_YQFpFj9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
  2841. <commands xmi:id="_YQFpFz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.javaAppletShortcut.debug" commandName="Debug Java Applet" description="Debug Java Applet" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2842. <commands xmi:id="_YQFpGD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.ui.gotoMatchingTag" commandName="Matching Tag" description="Go to Matching Tag" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2843. <commands xmi:id="_YQFpGT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.select.lineUp" commandName="Select Line Up" description="Extend the selection to the previous line of text" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2844. <commands xmi:id="_YQFpGj9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.sqleditor.saveToDatabaseAction" commandName="Save to Database" category="_YPxgKz9AEemkJ6es1zdyvw"/>
  2845. <commands xmi:id="_YQFpGz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.submodule.add" commandName="Add Submodule" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2846. <commands xmi:id="_YQFpHD9AEemkJ6es1zdyvw" 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="_YPw49D9AEemkJ6es1zdyvw"/>
  2847. <commands xmi:id="_YQFpHT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.correction.convertAnonymousToLocal.assist" commandName="Quick Assist - Convert anonymous to local class" description="Invokes quick assist and selects 'Convert anonymous to local class'" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  2848. <commands xmi:id="_YQFpHj9AEemkJ6es1zdyvw" elementId="org.eclipse.compare.copyLeftToRight" commandName="Copy from Left to Right" description="Copy Current Change from Left to Right" category="_YPxgHz9AEemkJ6es1zdyvw"/>
  2849. <commands xmi:id="_YQFpHz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.project.openProject" commandName="Open Project" description="Open a project" category="_YPxgJT9AEemkJ6es1zdyvw"/>
  2850. <commands xmi:id="_YQFpID9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.ShowBlame" commandName="Show Revision Information" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2851. <commands xmi:id="_YQFpIT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.morph.delimited.list" commandName="&#x53d8;&#x6362;&#x4e3a;&#x5e26;&#x5206;&#x9694;&#x7b26;&#x7684;&#x5217;&#x8868;" description="&#x53d8;&#x6362;&#x4e3a;&#x5e26;&#x5206;&#x9694;&#x7b26;&#x7684;&#x5217;&#x8868;" category="_YPxgDD9AEemkJ6es1zdyvw"/>
  2852. <commands xmi:id="_YQFpIj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.correction.addSuppressWarnings" commandName="Quick Fix - Add @SuppressWarnings" description="Invokes quick fix and selects 'Add @SuppressWarnings' " category="_YPyHFD9AEemkJ6es1zdyvw"/>
  2853. <commands xmi:id="_YQFpIz9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.ui.persistentAttributeAddToXml" commandName="Add Attribute to XML" category="_YPxgCj9AEemkJ6es1zdyvw"/>
  2854. <commands xmi:id="_YQFpJD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.data.forSelection" commandName="&#x7f16;&#x8f91;&#x6570;&#x636e;" description="&#x67e5;&#x770b;/&#x7f16;&#x8f91;&#x8868;&#x683c;&#x6570;&#x636e;" category="_YPxgJz9AEemkJ6es1zdyvw"/>
  2855. <commands xmi:id="_YQFpJT9AEemkJ6es1zdyvw" elementId="org.eclipse.tips.ide.command.trim.open" commandName="Tip of the Day" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2856. <commands xmi:id="_YQFpJj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.push.down" commandName="Push Down" description="Move members to subclasses" category="_YPxgED9AEemkJ6es1zdyvw"/>
  2857. <commands xmi:id="_YQFpJz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.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="_YPxgKT9AEemkJ6es1zdyvw"/>
  2858. <commands xmi:id="_YQFpKD9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.selectCounters" commandName="Select Counters" category="_YPw4-z9AEemkJ6es1zdyvw">
  2859. <parameters xmi:id="_YQFpKT9AEemkJ6es1zdyvw" elementId="type" name="type" optional="false"/>
  2860. </commands>
  2861. <commands xmi:id="_YQFpKj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.project.properties" commandName="Properties" description="Display the properties of the selected item's project " category="_YPxgJT9AEemkJ6es1zdyvw"/>
  2862. <commands xmi:id="_YQFpKz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.CompareVersionsInTree" commandName="Compare in Tree" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2863. <commands xmi:id="_YQGQID9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.ui.persistentTypeMapAs" commandName="Map As" category="_YPxgCj9AEemkJ6es1zdyvw">
  2864. <parameters xmi:id="_YQGQIT9AEemkJ6es1zdyvw" elementId="persistentTypeMappingKey" name="mapping key" optional="false"/>
  2865. </commands>
  2866. <commands xmi:id="_YQGQIj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.run.count" commandName="&#x9009;&#x62e9;&#x884c;&#x6570;" description="&#x4e3a;&#x4e0b;&#x9762;&#x7684;&#x67e5;&#x8be2;&#x9009;&#x62e9;&#x884c;&#x6570;" category="_YPxgDD9AEemkJ6es1zdyvw"/>
  2867. <commands xmi:id="_YQGQIz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.close.tab" commandName="&#x5173;&#x95ed;&#x6807;&#x7b7e;&#x9875;" description="&#x5173;&#x95ed;&#x7ed3;&#x679c;&#x6807;&#x7b7e;&#x9875;" category="_YPxgDD9AEemkJ6es1zdyvw"/>
  2868. <commands xmi:id="_YQGQJD9AEemkJ6es1zdyvw" elementId="org.eclipse.epp.package.common.contribute" commandName="Contribute" description="Contribute to the development and success of the Eclipse IDE!" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2869. <commands xmi:id="_YQGQJT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.assist.templates" commandName="&#x8865;&#x5168;&#x6a21;&#x677f;&#x540d;&#x79f0;" description="&#x81ea;&#x52a8;&#x8865;&#x5168;&#x6a21;&#x677f;&#x540d;&#x79f0;" category="_YPxgDD9AEemkJ6es1zdyvw"/>
  2870. <commands xmi:id="_YQGQJj9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.sqleditor.DMLDialogSelectionAction" commandName="Edit in SQL Query Builder..." category="_YPxgKz9AEemkJ6es1zdyvw"/>
  2871. <commands xmi:id="_YQGQJz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.select.columnPrevious" commandName="Select Previous Column" description="Select the previous column" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2872. <commands xmi:id="_YQGQKD9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.junitWorkbenchShortcut.debug" commandName="Debug JUnit Plug-in Test" description="Debug JUnit Plug-in Test" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2873. <commands xmi:id="_YQGQKT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.correction.extractLocalNotReplaceOccurrences.assist" commandName="Quick Assist - Extract local variable" description="Invokes quick assist and selects 'Extract local variable'" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  2874. <commands xmi:id="_YQG3MD9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.sqleditor.attachProfileAction" commandName="Set Connection Information" category="_YPxgKz9AEemkJ6es1zdyvw"/>
  2875. <commands xmi:id="_YQG3MT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.qm.filter" commandName="&#x8fc7;&#x6ee4;..." description="&#x8bbe;&#x7f6e;&#x67e5;&#x8be2;&#x7ba1;&#x7406;&#x5668;&#x7684;&#x8fc7;&#x6ee4;&#x5668;" category="_YPyHED9AEemkJ6es1zdyvw"/>
  2876. <commands xmi:id="_YQG3Mj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesToggleBranchHierarchy" commandName="Toggle Branch Representation" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2877. <commands xmi:id="_YQG3Mz9AEemkJ6es1zdyvw" elementId="org.eclipse.ltk.ui.refactoring.commands.deleteResources" commandName="Delete Resources" description="Delete the selected resources and notify LTK participants." category="_YPyHEj9AEemkJ6es1zdyvw"/>
  2878. <commands xmi:id="_YQG3ND9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.file.print" commandName="Print" description="Print" category="_YPw4_D9AEemkJ6es1zdyvw"/>
  2879. <commands xmi:id="_YQG3NT9AEemkJ6es1zdyvw" elementId="com.genuitec.myeclipse.perspective.meexplorer.search.casesensitivecommand" commandName="Case Sensitive" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2880. <commands xmi:id="_YQG3Nj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.commands.AllReferences" commandName="All References" description="Inspect all references to the selected object" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2881. <commands xmi:id="_YQG3Nz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.junit.junitShortcut.rerunLast" commandName="Rerun JUnit Test" description="Rerun JUnit Test" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2882. <commands xmi:id="_YQG3OD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.ui.format.active.elements" commandName="Format Active Elements" description="Format active elements" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2883. <commands xmi:id="_YQG3OT9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.connectivity.commands.import" commandName="Import Profiles Command" description="Command to import connection profiles" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2884. <commands xmi:id="_YQG3Oj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.showRulerContextMenu" commandName="Show Ruler Context Menu" description="Show the context menu for the ruler" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  2885. <commands xmi:id="_YQG3Oz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.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="_YPxgKT9AEemkJ6es1zdyvw"/>
  2886. <commands xmi:id="_YQG3PD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.task.clearOutgoing" commandName="Clear Outgoing Changes" category="_YPw4-D9AEemkJ6es1zdyvw"/>
  2887. <commands xmi:id="_YQG3PT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.folding.collapse" commandName="Collapse" description="Collapses the folded region at the current selection" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2888. <commands xmi:id="_YQG3Pj9AEemkJ6es1zdyvw" elementId="org.eclipse.epp.mpc.ui.command.showFavorites" commandName="Eclipse Marketplace Favorites" description="Open Marketplace Favorites" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2889. <commands xmi:id="_YQG3Pz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.smartEnterInverse" commandName="Insert Line Above Current Line" description="Adds a new line above the current line" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2890. <commands xmi:id="_YQG3QD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.spy" commandName="Show Contributing Plug-in" description="Shows contribution information for the currently selected element" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  2891. <commands xmi:id="_YQG3QT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.help.helpSearch" commandName="Help Search" description="Open the help search" category="_YPxgJD9AEemkJ6es1zdyvw"/>
  2892. <commands xmi:id="_YQHeQD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.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="_YPxgIj9AEemkJ6es1zdyvw"/>
  2893. <commands xmi:id="_YQHeQT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.goto.lineDown" commandName="Line Down" description="Go down one line of text" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2894. <commands xmi:id="_YQHeQj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.commit.Checkout" commandName="Check Out" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2895. <commands xmi:id="_YQHeQz9AEemkJ6es1zdyvw" elementId="org.eclipse.m2e.actions.LifeCycleClean.run" commandName="Run Maven Clean" description="Run Maven Clean" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2896. <commands xmi:id="_YQHeRD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.gotoLastEditPosition" commandName="Last Edit Location" description="Last edit location" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2897. <commands xmi:id="_YQHeRT9AEemkJ6es1zdyvw" 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="_YPw49D9AEemkJ6es1zdyvw"/>
  2898. <commands xmi:id="_YQHeRj9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.wikitext.ui.convertToEclipseHelpCommand" commandName="Generate Eclipse Help (*.html and *-toc.xml)" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2899. <commands xmi:id="_YQHeRz9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
  2900. <commands xmi:id="_YQHeSD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.navigateLink" commandName="&#x8ffd;&#x8e2a;&#x5916;&#x952e;&#x94fe;&#x63a5;" description="&#x8ffd;&#x8e2a;&#x5916;&#x952e;&#x94fe;&#x63a5;" category="_YPw4_T9AEemkJ6es1zdyvw"/>
  2901. <commands xmi:id="_YQHeST9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.command.prevpage" commandName="Previous Page of Memory" description="Load previous page of memory" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2902. <commands xmi:id="_YQHeSj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.commands.ForceReturn" commandName="Force Return" description="Forces return from method with value of selected expression " category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2903. <commands xmi:id="_YQHeSz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.ide.configureFilters" commandName="Filters..." description="Configure the filters to apply to the markers view" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2904. <commands xmi:id="_YQHeTD9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.importSession" commandName="Import Session..." category="_YPw4-z9AEemkJ6es1zdyvw"/>
  2905. <commands xmi:id="_YQHeTT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.previousTab" commandName="Previous Tab" description="Switch to the previous tab" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2906. <commands xmi:id="_YQHeTj9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
  2907. <commands xmi:id="_YQHeTz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.dialogs.openMessageDialog" commandName="Open Message Dialog" description="Open a Message Dialog" category="_YPxgBT9AEemkJ6es1zdyvw">
  2908. <parameters xmi:id="_YQHeUD9AEemkJ6es1zdyvw" elementId="title" name="Title"/>
  2909. <parameters xmi:id="_YQHeUT9AEemkJ6es1zdyvw" elementId="message" name="Message"/>
  2910. <parameters xmi:id="_YQHeUj9AEemkJ6es1zdyvw" elementId="imageType" name="Image Type Constant" typeId="org.eclipse.ui.dialogs.Integer"/>
  2911. <parameters xmi:id="_YQHeUz9AEemkJ6es1zdyvw" elementId="defaultIndex" name="Default Button Index" typeId="org.eclipse.ui.dialogs.Integer"/>
  2912. <parameters xmi:id="_YQHeVD9AEemkJ6es1zdyvw" elementId="buttonLabel0" name="First Button Label"/>
  2913. <parameters xmi:id="_YQHeVT9AEemkJ6es1zdyvw" elementId="buttonLabel1" name="Second Button Label"/>
  2914. <parameters xmi:id="_YQHeVj9AEemkJ6es1zdyvw" elementId="buttonLabel2" name="Third Button Label"/>
  2915. <parameters xmi:id="_YQHeVz9AEemkJ6es1zdyvw" elementId="buttonLabel3" name="Fourth Button Label"/>
  2916. <parameters xmi:id="_YQHeWD9AEemkJ6es1zdyvw" elementId="cancelReturns" name="Return Value on Cancel"/>
  2917. </commands>
  2918. <commands xmi:id="_YQHeWT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.genericeditor.findReferences" commandName="Find References" description="Find other code items referencing the current selected item." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2919. <commands xmi:id="_YQHeWj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.goto.lineEnd" commandName="Line End" description="Go to the end of the line of text" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2920. <commands xmi:id="_YQHeWz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.commit.CreateTag" commandName="Create Tag..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2921. <commands xmi:id="_YQHeXD9AEemkJ6es1zdyvw" 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="_YPxgED9AEemkJ6es1zdyvw"/>
  2922. <commands xmi:id="_YQHeXT9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.ui.generateDDL" commandName="Generate Tables from Entities..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2923. <commands xmi:id="_YQHeXj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.ui.referencedFileErrors" commandName="Show Details..." description="Show Details..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2924. <commands xmi:id="_YQHeXz9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.sqleditor.runAction" commandName="Run" category="_YPxgKz9AEemkJ6es1zdyvw"/>
  2925. <commands xmi:id="_YQHeYD9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.RunLast" commandName="Run" description="Launch in run mode" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2926. <commands xmi:id="_YQHeYT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.externalTools.commands.OpenExternalToolsConfigurations" commandName="External Tools..." description="Open external tools launch configuration dialog" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2927. <commands xmi:id="_YQHeYj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.command.OpenFromClipboard" commandName="Open from Clipboard" description="Opens a Java element or a Java stack trace from clipboard" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2928. <commands xmi:id="_YQHeYz9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.internationalize" commandName="Internationalize Plug-ins" description="Sets up internationalization for a plug-in" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2929. <commands xmi:id="_YQHeZD9AEemkJ6es1zdyvw" elementId="com.genuitec.eclipse.webclipse.evergreen.checkForUpdates" commandName="Check for Updates" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2930. <commands xmi:id="_YQHeZT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.deletePrevious" commandName="Delete Previous" description="Delete the previous character" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2931. <commands xmi:id="_YQHeZj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.generateScript" commandName="&#x751f;&#x6210;&#x811a;&#x672c;" description="&#x751f;&#x6210;&#x53d8;&#x66f4;&#x811a;&#x672c;" category="_YPw4_T9AEemkJ6es1zdyvw"/>
  2932. <commands xmi:id="_YQHeZz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.project.select" commandName="&#x9009;&#x62e9;&#x6d3b;&#x52a8;&#x9879;&#x76ee;" description="&#x9009;&#x62e9;&#x6d3b;&#x52a8;&#x9879;&#x76ee;" category="_YPxgFD9AEemkJ6es1zdyvw"/>
  2933. <commands xmi:id="_YQHeaD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.CompareWithPrevious" commandName="Compare with Previous Revision" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2934. <commands xmi:id="_YQHeaT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.select.columnNext" commandName="Select Next Column" description="Select the next column" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2935. <commands xmi:id="_YQHeaj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.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="_YPxgKT9AEemkJ6es1zdyvw"/>
  2936. <commands xmi:id="_YQHeaz9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
  2937. <commands xmi:id="_YQHebD9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.TerminateAndRelaunch" commandName="Terminate and Relaunch" description="Terminate and Relaunch" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2938. <commands xmi:id="_YQHebT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.JavaHierarchyPerspective" commandName="Java Type Hierarchy" description="Show the Java Type Hierarchy perspective" category="_YPyHET9AEemkJ6es1zdyvw"/>
  2939. <commands xmi:id="_YQHebj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.dashboard.configure" commandName="Settings" description="Dashboard view settings" category="_YPxgJz9AEemkJ6es1zdyvw"/>
  2940. <commands xmi:id="_YQHebz9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
  2941. <commands xmi:id="_YQHecD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.surround.with.try.multicatch" commandName="Surround with try/multi-catch Block" description="Surround the selected text with a try/multi-catch block" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  2942. <commands xmi:id="_YQHecT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.sql.editor.forSelection" commandName="&#x5728; SQL &#x63a7;&#x5236;&#x53f0;&#x4e2d;&#x8bfb;&#x6570;&#x636e;" description="&#x6253;&#x5f00;&#x5305;&#x542b;&#x6570;&#x636e;&#x8bfb;&#x53d6;&#x8bed;&#x53e5;&#x7684;&#x65b0; SQL &#x63a7;&#x5236;&#x53f0;" category="_YPxgJz9AEemkJ6es1zdyvw"/>
  2943. <commands xmi:id="_YQIFUD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.Tag" commandName="Create Tag..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2944. <commands xmi:id="_YQIFUT9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.NoAssumeUnchanged" commandName="No Assume Unchanged" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2945. <commands xmi:id="_YQIFUj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.JavadocView" commandName="Documentation" description="Show the JavaScript Documentation view" category="_YPxgEj9AEemkJ6es1zdyvw"/>
  2946. <commands xmi:id="_YQIFUz9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.RemoveAllBreakpoints" commandName="Remove All Breakpoints" description="Removes all breakpoints" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2947. <commands xmi:id="_YQIFVD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigator.resources.nested.changeProjectPresentation" commandName="P&amp;rojects Presentation" category="_YPxgDz9AEemkJ6es1zdyvw">
  2948. <parameters xmi:id="_YQIFVT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigator.resources.nested.enabled" name="&amp;Hierarchical"/>
  2949. <parameters xmi:id="_YQIFVj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.commands.radioStateParameter" name="Nested Project view - Radio State" optional="false"/>
  2950. </commands>
  2951. <commands xmi:id="_YQIFVz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.showKeyAssist" commandName="Show Key Assist" description="Show the key assist dialog" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  2952. <commands xmi:id="_YQIFWD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.genericeditor.togglehighlight" commandName="Toggle Highlight" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2953. <commands xmi:id="_YQIFWT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.introduce.parameter.object" commandName="Introduce Parameter Object" description="Introduce a parameter object to a selected method" category="_YPxgIj9AEemkJ6es1zdyvw"/>
  2954. <commands xmi:id="_YQIFWj9AEemkJ6es1zdyvw" elementId="org.dadacoalition.yedit.command.formatDocument" commandName="Format" description="Format the document according to format preferences" category="_YPw49T9AEemkJ6es1zdyvw"/>
  2955. <commands xmi:id="_YQIFWz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.rollback" commandName="&#x56de;&#x6eda;" description="&#x56de;&#x6eda;&#x5f53;&#x524d;&#x4f1a;&#x8bdd;&#x7684;&#x4fee;&#x6539;" category="_YPxgJz9AEemkJ6es1zdyvw"/>
  2956. <commands xmi:id="_YQIFXD9AEemkJ6es1zdyvw" elementId="org.eclipse.gef.zoom_out" commandName="Zoom Out" description="Zoom Out" category="_YPyHEz9AEemkJ6es1zdyvw"/>
  2957. <commands xmi:id="_YQIFXT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.commands.openElementInEditor" commandName="Open Java Element" description="Open a Java element in its editor" category="_YPxgGj9AEemkJ6es1zdyvw">
  2958. <parameters xmi:id="_YQIFXj9AEemkJ6es1zdyvw" elementId="elementRef" name="Java element reference" typeId="org.eclipse.jdt.ui.commands.javaElementReference" optional="false"/>
  2959. </commands>
  2960. <commands xmi:id="_YQIFXz9AEemkJ6es1zdyvw" elementId="com.genuitec.eclipse.inlinesearch.replace.toggle.close" commandName="Close Replace Bar" category="_YPyHFj9AEemkJ6es1zdyvw"/>
  2961. <commands xmi:id="_YQIFYD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.uncomment" commandName="Uncomment" description="Uncomment the selected JavaScript comment lines" category="_YPw49z9AEemkJ6es1zdyvw"/>
  2962. <commands xmi:id="_YQIFYT9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.result.removeInstance" commandName="Remove Result" category="_YPxgAj9AEemkJ6es1zdyvw"/>
  2963. <commands xmi:id="_YQIFYj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.AddToIndex" commandName="Add to Index" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2964. <commands xmi:id="_YQIFYz9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.discovery.ui.discoveryWizardCommand" commandName="Discovery Wizard" description="shows the connector discovery wizard" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2965. <commands xmi:id="_YQIFZD9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
  2966. <commands xmi:id="_YQIFZT9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.ui.persistentAttributeAddToXmlAndMap" commandName="Add Attribute to XML and Map..." category="_YPxgCj9AEemkJ6es1zdyvw"/>
  2967. <commands xmi:id="_YQIFZj9AEemkJ6es1zdyvw" elementId="org.eclipse.buildship.ui.commands.refreshtaskview" commandName="Refresh View (Gradle Tasks)" description="Refreshes the Gradle Tasks view" category="_YPxgEj9AEemkJ6es1zdyvw"/>
  2968. <commands xmi:id="_YQIFZz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.ui.toggle.comment" commandName="Toggle Comment" description="Toggle Comment" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2969. <commands xmi:id="_YQIFaD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.grid.columnsFitValue" commandName="Columns pack: fit values" description="Resize columns to fit row values" category="_YPw4_T9AEemkJ6es1zdyvw"/>
  2970. <commands xmi:id="_YQIFaT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.help.tipsAndTricksAction" commandName="Tips and Tricks" description="Open the tips and tricks help page" category="_YPxgJD9AEemkJ6es1zdyvw"/>
  2971. <commands xmi:id="_YQIFaj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.format" commandName="Format" description="Format the selected text" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  2972. <commands xmi:id="_YQIFaz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.smartEnter" commandName="Insert Line Below Current Line" description="Adds a new line below the current line" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2973. <commands xmi:id="_YQIFbD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.select.previous" commandName="Select Previous Element" description="Expand selection to include previous sibling" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2974. <commands xmi:id="_YQIFbT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.goto.lineStart" commandName="Line Start" description="Go to the start of the line of text" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2975. <commands xmi:id="_YQIFbj9AEemkJ6es1zdyvw" elementId="org.eclipse.oomph.setup.editor.synchronizePreferences" commandName="Synchronize Preferences" category="_YPxgGT9AEemkJ6es1zdyvw"/>
  2976. <commands xmi:id="_YQIFbz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.ui.cmnd.contentmodel.sych" commandName="Synch" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2977. <commands xmi:id="_YQIFcD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureBranch" commandName="Configure Branch" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2978. <commands xmi:id="_YQIFcT9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.Suspend" commandName="Suspend" description="Suspend" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2979. <commands xmi:id="_YQIFcj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.hippieCompletion" commandName="Word Completion" description="Context insensitive completion" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2980. <commands xmi:id="_YQIFcz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.grid.toggleLayout" commandName="&#x5207;&#x6362;&#x9762;&#x677f;&#x5e03;&#x5c40;" description="&#x5207;&#x6362;&#x5782;&#x76f4;/&#x6c34;&#x5e73;&#x9762;&#x677f;&#x5e03;&#x5c40;" category="_YPw4_T9AEemkJ6es1zdyvw"/>
  2981. <commands xmi:id="_YQIFdD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xsd.ui.refactor.renameTargetNamespace" commandName="Rename Target Namespace" description="Changes the target namespace of the schema" category="_YPw48T9AEemkJ6es1zdyvw"/>
  2982. <commands xmi:id="_YQIFdT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.folding.collapseComments" commandName="Collapse Comments" description="Collapse all comments" category="_YPw49D9AEemkJ6es1zdyvw"/>
  2983. <commands xmi:id="_YQIFdj9AEemkJ6es1zdyvw" elementId="org.eclipse.team.ui.synchronizeLast" commandName="Repeat last synchronization" description="Repeat the last synchronization" category="_YPxgET9AEemkJ6es1zdyvw"/>
  2984. <commands xmi:id="_YQIFdz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.generate.javadoc" commandName="Generate Javadoc" description="Generates Javadoc for a selectable set of Java resources" category="_YPxgJT9AEemkJ6es1zdyvw"/>
  2985. <commands xmi:id="_YQIFeD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.RepositoriesViewConfigureGerritRemote" commandName="Gerrit Configuration..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2986. <commands xmi:id="_YQIFeT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.commands.StepIntoSelection" commandName="Step Into Selection" description="Step into the current selected statement" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2987. <commands xmi:id="_YQIFej9AEemkJ6es1zdyvw" elementId="org.eclipse.buildship.ui.shortcut.test.run" commandName="Run Gradle Test" description="Run Gradle test based on the current selection" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2988. <commands xmi:id="_YQIFez9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.ide.configureColumns" commandName="Configure Columns..." description="Configure the columns in the markers view" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2989. <commands xmi:id="_YQIFfD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.ReplaceWithCommit" commandName="Replace with commit" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  2990. <commands xmi:id="_YQIFfT9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.pagedesigner.design" commandName="Graphical Designer" category="_YPxgFj9AEemkJ6es1zdyvw"/>
  2991. <commands xmi:id="_YQIFfj9AEemkJ6es1zdyvw" elementId="org.eclipse.tm.terminal.quickaccess" commandName="Quick Access" category="_YPxgKD9AEemkJ6es1zdyvw"/>
  2992. <commands xmi:id="_YQIFfz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.navigator.preferences" commandName="&#x9996;&#x9009;&#x9879;" description="&#x5bfc;&#x822a;&#x9996;&#x9009;&#x9879;" category="_YPxgFD9AEemkJ6es1zdyvw"/>
  2993. <commands xmi:id="_YQIFgD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resource.link.folder" commandName="&#x94fe;&#x63a5;&#x6587;&#x4ef6;&#x5939;" description="&#x521b;&#x5efa;&#x5230;&#x6587;&#x4ef6;&#x5939;&#x7684;&#x94fe;&#x63a5;" category="_YPxgFD9AEemkJ6es1zdyvw"/>
  2994. <commands xmi:id="_YQIFgT9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.DebugLast" commandName="Debug" description="Launch in debug mode" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  2995. <commands xmi:id="_YQIFgj9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.wikitext.ui.convertToHtmlCommand" commandName="Generate HTML" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  2996. <commands xmi:id="_YQIFgz9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.openManifest" commandName="Open Manifest" description="Open the plug-in manifest" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  2997. <commands xmi:id="_YQIFhD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.previousView" commandName="Previous View" description="Switch to the previous view" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  2998. <commands xmi:id="_YQIFhT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.object.filter.toggle" commandName="&#x5207;&#x6362;&#x8fc7;&#x6ee4;&#x5668;" description="&#x5207;&#x6362;(&#x542f;&#x7528;/&#x7981;&#x7528;)&#x5b9a;&#x4e49;&#x7684;&#x8fc7;&#x6ee4;&#x5668;" category="_YPxgJz9AEemkJ6es1zdyvw"/>
  2999. <commands xmi:id="_YQIFhj9AEemkJ6es1zdyvw" 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="_YPxgED9AEemkJ6es1zdyvw"/>
  3000. <commands xmi:id="_YQIFhz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.generate.tostring" commandName="Generate toString()" description="Generates the toString() method for the type" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  3001. <commands xmi:id="_YQIFiD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.CompareWithHead" commandName="Compare with HEAD Revision" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3002. <commands xmi:id="_YQIFiT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.organize.imports" commandName="Organize Imports" description="Evaluate all required imports and replace the current imports" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  3003. <commands xmi:id="_YQIFij9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.ide.markers.copyDescription" commandName="Copy Description To Clipboard" description="Copies markers description field to the clipboard" category="_YPw48T9AEemkJ6es1zdyvw"/>
  3004. <commands xmi:id="_YQIFiz9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.DropToFrame" commandName="Drop to Frame" description="Drop to Frame" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  3005. <commands xmi:id="_YQIFjD9AEemkJ6es1zdyvw" elementId="org.springsource.ide.eclipse.boot.BootLaunchShortcut.debug" commandName="Debug Spring Boot App" description="Debug Spring Boot App" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  3006. <commands xmi:id="_YQIFjT9AEemkJ6es1zdyvw" 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="_YPxgED9AEemkJ6es1zdyvw"/>
  3007. <commands xmi:id="_YQIFjj9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.api.tools.ui.compare.to.baseline" commandName="API Baseline..." description="Allows to compare the selected resource with the current baseline" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3008. <commands xmi:id="_YQIFjz9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.imagebrowser.saveToWorkspace" commandName="Save Image" description="Save the selected image into a project in the workspace" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3009. <commands xmi:id="_YQIsYD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.debug.ui.commands.Display" commandName="Display" description="Display result of evaluating selected text" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  3010. <commands xmi:id="_YQIsYT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.sql.editor.create" commandName="&#x65b0;&#x5efa; SQL &#x7f16;&#x8f91;&#x5668;" description="&#x6253;&#x5f00;&#x65b0; SQL &#x7f16;&#x8f91;&#x5668;(&#x65b0;&#x5efa;&#x811a;&#x672c;)" category="_YPxgJz9AEemkJ6es1zdyvw"/>
  3011. <commands xmi:id="_YQIsYj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.search.exception.occurrences" commandName="Search Exception Occurrences in File" description="Search for exception occurrences of a selected exception type" category="_YPxgKT9AEemkJ6es1zdyvw"/>
  3012. <commands xmi:id="_YQIsYz9AEemkJ6es1zdyvw" elementId="org.eclipse.tm.terminal.view.ui.command.disconnect" commandName="Disconnect Terminal" category="_YPxgHj9AEemkJ6es1zdyvw"/>
  3013. <commands xmi:id="_YQIsZD9AEemkJ6es1zdyvw" elementId="org.springframework.ide.eclipse.boot.dash.boot.dash.RedebugAction" commandName="(Re)debug" description="(Re)debug Boot App" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  3014. <commands xmi:id="_YQIsZT9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.ShowBlame" commandName="Show Revision Information" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  3015. <commands xmi:id="_YQIsZj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.correction.assignToField.assist" commandName="Quick Assist - Assign to field" description="Invokes quick assist and selects 'Assign to field'" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  3016. <commands xmi:id="_YQIsZz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.folding.expand" commandName="Expand" description="Expands the folded region at the current selection" category="_YPw49D9AEemkJ6es1zdyvw"/>
  3017. <commands xmi:id="_YQIsaD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.extract.method" commandName="Extract Method" description="Extract a set of statements or an expression into a new method and use the new method" category="_YPxgIj9AEemkJ6es1zdyvw"/>
  3018. <commands xmi:id="_YQIsaT9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.eclipselink.ui.newEclipseLinkMappingFile" commandName="EclipseLink ORM Mapping File" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3019. <commands xmi:id="_YQIsaj9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.openRemoteTask" commandName="Open Remote Task" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  3020. <commands xmi:id="_YQIsaz9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.nextMemoryBlock" commandName="Next Memory Monitor" description="Show renderings from next memory monitor." category="_YPxgBD9AEemkJ6es1zdyvw"/>
  3021. <commands xmi:id="_YQIsbD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.internal.reflog.OpenInCommitViewerCommand" commandName="Open in Commit Viewer" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3022. <commands xmi:id="_YQIsbT9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.context.ui.commands.task.retrieveContext" commandName="Retrieve Context" category="_YPw49j9AEemkJ6es1zdyvw"/>
  3023. <commands xmi:id="_YQIsbj9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.jsp.ui.refactor.rename" commandName="Rename" description="Rename a Java Element" category="_YPw48T9AEemkJ6es1zdyvw"/>
  3024. <commands xmi:id="_YQIsbz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.Fetch" commandName="Fetch" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  3025. <commands xmi:id="_YQIscD9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.junitWorkbenchShortcut.run" commandName="Run JUnit Plug-in Test" description="Run JUnit Plug-in Test" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  3026. <commands xmi:id="_YQIscT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.navigate.gotopackage" commandName="Go to Package" description="Go to Package" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  3027. <commands xmi:id="_YQIscj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.togglestatusbar" commandName="Toggle Statusbar" description="Toggle the visibility of the bottom status bar" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  3028. <commands xmi:id="_YQIscz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.chromium.debug.ui.commands.Inspect" commandName="Inspect" description="Inspect result of evaluating selected text" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  3029. <commands xmi:id="_YQIsdD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.task.ui.editor.QuickOutline" commandName="Quick Outline" description="Show the quick outline for the editor input" category="_YPw4-D9AEemkJ6es1zdyvw"/>
  3030. <commands xmi:id="_YQIsdT9AEemkJ6es1zdyvw" elementId="org.eclipse.buildship.ui.commands.addbuildshipnature" commandName="Add Gradle Nature" description="Adds the Gradle nature and synchronizes this project as if the Gradle Import wizard had been run on its location." category="_YPw48z9AEemkJ6es1zdyvw"/>
  3031. <commands xmi:id="_YQIsdj9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.eof" commandName="EOF" description="Send end of file" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  3032. <commands xmi:id="_YQIsdz9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.pagedesigner.horizotal" commandName="Horizontal Layout" category="_YPxgFj9AEemkJ6es1zdyvw"/>
  3033. <commands xmi:id="_YQIseD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.AbortRebase" commandName="Abort Rebase" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  3034. <commands xmi:id="_YQIseT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.edit.paste.special" commandName="&#x9ad8;&#x7ea7;&#x7c98;&#x8d34;" description="&#x7c98;&#x8d34;&#x5e76;&#x4fdd;&#x7559;&#x989d;&#x5916;&#x8bbe;&#x7f6e;" category="_YPyHED9AEemkJ6es1zdyvw"/>
  3035. <commands xmi:id="_YQIsej9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.showInQuickMenu" commandName="Show In..." description="Open the Show In menu" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  3036. <commands xmi:id="_YQIsez9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.copyLineUp" commandName="Duplicate Lines" description="Duplicates the selected lines and leaves the selection unchanged" category="_YPw49D9AEemkJ6es1zdyvw"/>
  3037. <commands xmi:id="_YQIsfD9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.ToggleMethodBreakpoint" commandName="Toggle Method Breakpoint" description="Creates or removes a method breakpoint" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  3038. <commands xmi:id="_YQIsfT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.navigate.java.open.structure" commandName="Open Structure" description="Show the structure of the selected element" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  3039. <commands xmi:id="_YQIsfj9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.chromium.debug.js.command" commandName="Chrome / Chromium Debugger" category="_YPxgBz9AEemkJ6es1zdyvw"/>
  3040. <commands xmi:id="_YQIsfz9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
  3041. <commands xmi:id="_YQIsgD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.next" commandName="Next" description="Navigate to the next item" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  3042. <commands xmi:id="_YQIsgT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.edit.copy.special" commandName="&#x9ad8;&#x7ea7;&#x590d;&#x5236;" description="&#x590d;&#x5236;&#x7279;&#x522b;&#x7684;&#x4fe1;&#x606f;" category="_YPyHED9AEemkJ6es1zdyvw"/>
  3043. <commands xmi:id="_YQIsgj9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.bugs.commands.newTaskFromMarker" commandName="New Task from Marker..." description="Report as Bug from Marker" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3044. <commands xmi:id="_YQIsgz9AEemkJ6es1zdyvw" 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="_YPxgED9AEemkJ6es1zdyvw"/>
  3045. <commands xmi:id="_YQIshD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.server.run" commandName="Run" description="Run server" category="_YPw4-T9AEemkJ6es1zdyvw"/>
  3046. <commands xmi:id="_YQIshT9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.context.ui.commands.focus.view" commandName="Focus View" category="_YPxgDz9AEemkJ6es1zdyvw">
  3047. <parameters xmi:id="_YQIshj9AEemkJ6es1zdyvw" elementId="viewId" name="View ID to Focus" optional="false"/>
  3048. </commands>
  3049. <commands xmi:id="_YQIshz9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.testNgShortcut.coverage" commandName="Coverage TestNG Test" description="Coverage TestNG Test" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  3050. <commands xmi:id="_YQIsiD9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.StepReturn" commandName="Step Return" description="Step return" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  3051. <commands xmi:id="_YQIsiT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.browser.openBundleResource" commandName="Open Resource in Browser" description="Opens a bundle resource in the default web browser." category="_YPw4_j9AEemkJ6es1zdyvw">
  3052. <parameters xmi:id="_YQIsij9AEemkJ6es1zdyvw" elementId="plugin" name="Plugin"/>
  3053. <parameters xmi:id="_YQIsiz9AEemkJ6es1zdyvw" elementId="path" name="Path"/>
  3054. </commands>
  3055. <commands xmi:id="_YQIsjD9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.pagedesigner.source" commandName="Source Code" category="_YPxgFj9AEemkJ6es1zdyvw"/>
  3056. <commands xmi:id="_YQIsjT9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ui.editors.sql.run.scriptNew" commandName="&#x5728;&#x5355;&#x72ec;&#x7684;&#x6807;&#x7b7e;&#x9875;&#x4e2d;&#x6267;&#x884c;&#x8bed;&#x53e5;" description="&#x5728;&#x5355;&#x72ec;&#x7684;&#x7ed3;&#x679c;&#x6807;&#x7b7e;&#x9875;&#x4e2d;&#x6267;&#x884c;&#x811a;&#x672c;&#x7684;&#x8bed;&#x53e5;" category="_YPxgDD9AEemkJ6es1zdyvw"/>
  3057. <commands xmi:id="_YQIsjj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.help.aboutAction" commandName="About" description="Open the about dialog" category="_YPxgJD9AEemkJ6es1zdyvw"/>
  3058. <commands xmi:id="_YQIsjz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.common.project.facet.ui.ConvertProjectToFacetedForm" commandName="Convert to Faceted Form..." category="_YPw4_D9AEemkJ6es1zdyvw"/>
  3059. <commands xmi:id="_YQIskD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.annotate.classFile" commandName="Annotate Class File" description="Externally add Annotations to a Class File." category="_YPyHFD9AEemkJ6es1zdyvw"/>
  3060. <commands xmi:id="_YQIskT9AEemkJ6es1zdyvw" elementId="org.eclipse.cft.server.ui.internal.actions.openhomepagecommand" commandName="Open Home Page" description="Open Home Page" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3061. <commands xmi:id="_YQIskj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.stash.create" commandName="Stash Changes..." category="_YPxgKj9AEemkJ6es1zdyvw"/>
  3062. <commands xmi:id="_YQIskz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.replace.invocations" commandName="Replace Invocations" description="Replace invocations of the selected function" category="_YPxgED9AEemkJ6es1zdyvw"/>
  3063. <commands xmi:id="_YQIslD9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.CheckoutCommand" commandName="Check Out" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3064. <commands xmi:id="_YQIslT9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.command.activateSelectedTask" commandName="Activate Selected Task" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  3065. <commands xmi:id="_YQIslj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.search.references.in.workspace" commandName="References in Workspace" description="Search for references to the selected element in the workspace" category="_YPxgKT9AEemkJ6es1zdyvw"/>
  3066. <commands xmi:id="_YQIslz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.ui.format.document" commandName="Format" description="Format selection" category="_YPw48T9AEemkJ6es1zdyvw"/>
  3067. <commands xmi:id="_YQIsmD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.correction.addNonNLS" commandName="Quick Fix - Add non-NLS tag" description="Invokes quick assist and selects 'Add non-NLS tag'" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  3068. <commands xmi:id="_YQIsmT9AEemkJ6es1zdyvw" 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="_YPxgKT9AEemkJ6es1zdyvw"/>
  3069. <commands xmi:id="_YQIsmj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.team.RemoveFromIndex" commandName="Remove from Index" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  3070. <commands xmi:id="_YQIsmz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.newWizard" commandName="New" description="Open the New item wizard" category="_YPw4_D9AEemkJ6es1zdyvw">
  3071. <parameters xmi:id="_YQIsnD9AEemkJ6es1zdyvw" elementId="newWizardId" name="New Wizard"/>
  3072. </commands>
  3073. <commands xmi:id="_YQIsnT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.window.newWindow" commandName="New Window" description="Open another window" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  3074. <commands xmi:id="_YQJTcD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.uncomment" commandName="Uncomment" description="Uncomment the selected Java comment lines" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  3075. <commands xmi:id="_YQJTcT9AEemkJ6es1zdyvw" elementId="org.eclipse.e4.ui.importer.configureProject" commandName="Configure and Detect Nested Projects..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3076. <commands xmi:id="_YQJTcj9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui.selectActiveSession" commandName="Select Active Session..." category="_YPw4-z9AEemkJ6es1zdyvw"/>
  3077. <commands xmi:id="_YQJTcz9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.history.CompareVersions" commandName="Compare with each other" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3078. <commands xmi:id="_YQJTdD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.generate.uuid" commandName="Generate UUID" description="Generates UUID/GUID and inserts into active text editor or data editor" category="_YPxgJz9AEemkJ6es1zdyvw"/>
  3079. <commands xmi:id="_YQJTdT9AEemkJ6es1zdyvw" elementId="org.eclipse.equinox.p2.ui.sdk.install" commandName="Install New Software..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3080. <commands xmi:id="_YQJTdj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.erd.diagram.view" commandName="View Diagram" description="View Entity Relations Diagram" category="_YPxgFD9AEemkJ6es1zdyvw"/>
  3081. <commands xmi:id="_YQJTdz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.row.copy" commandName="&#x590d;&#x5236;&#x884c;" description="&#x590d;&#x5236;&#x5f53;&#x524d;&#x884c;" category="_YPw4_T9AEemkJ6es1zdyvw"/>
  3082. <commands xmi:id="_YQJTeD9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.context.ui.commands.interest.decrement" commandName="Make Less Interesting" description="Make Less Interesting" category="_YPw49j9AEemkJ6es1zdyvw"/>
  3083. <commands xmi:id="_YQJTeT9AEemkJ6es1zdyvw" elementId="org.springsource.ide.eclipse.quicksearch.commands.quicksearchCommand" commandName="Quick Search Command" category="_YPyHFz9AEemkJ6es1zdyvw"/>
  3084. <commands xmi:id="_YQJTej9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.externaltools.ExternalToolMenuDelegateToolbar" commandName="Run Last Launched External Tool" description="Runs the last launched external Tool" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  3085. <commands xmi:id="_YQJTez9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.CheckoutCommand" commandName="Check Out" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  3086. <commands xmi:id="_YQJTfD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.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="_YPxgKT9AEemkJ6es1zdyvw"/>
  3087. <commands xmi:id="_YQJTfT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.moveLineUp" commandName="Move Lines Up" description="Moves the selected lines up" category="_YPw49D9AEemkJ6es1zdyvw"/>
  3088. <commands xmi:id="_YQJTfj9AEemkJ6es1zdyvw" elementId="org.eclipse.equinox.p2.ui.discovery.commands.ShowBundleCatalog" commandName="Show Bundle Catalog" category="_YPxgDz9AEemkJ6es1zdyvw">
  3089. <parameters xmi:id="_YQJTfz9AEemkJ6es1zdyvw" elementId="org.eclipse.equinox.p2.ui.discovery.commands.DirectoryParameter" name="Directory URL"/>
  3090. <parameters xmi:id="_YQJTgD9AEemkJ6es1zdyvw" elementId="org.eclipse.equinox.p2.ui.discovery.commands.TagsParameter" name="Tags"/>
  3091. </commands>
  3092. <commands xmi:id="_YQJTgT9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.gotoBreadcrumb" commandName="Show In Breadcrumb" description="Shows the Java editor breadcrumb and sets the keyboard focus into it" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  3093. <commands xmi:id="_YQJTgj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.resultset.row.delete" commandName="&#x5220;&#x9664;&#x884c;" description="&#x5220;&#x9664;&#x884c;" category="_YPw4_T9AEemkJ6es1zdyvw"/>
  3094. <commands xmi:id="_YQJTgz9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.runtimeWorkbenchShortcut.debug" commandName="Debug Eclipse Application" description="Debug Eclipse Application" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  3095. <commands xmi:id="_YQJThD9AEemkJ6es1zdyvw" elementId="org.eclipse.userstorage.ui.showPullDown" commandName="Show Pull Down Menu" category="_YPxgJD9AEemkJ6es1zdyvw">
  3096. <parameters xmi:id="_YQJThT9AEemkJ6es1zdyvw" elementId="intoolbar" name="In Tool Bar" optional="false"/>
  3097. </commands>
  3098. <commands xmi:id="_YQJThj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.import.data" commandName="&#x5bfc;&#x5165;&#x6570;&#x636e;" description="&#x4ece;&#x6570;&#x636e;&#x5e93;&#x8868;&#x4e2d;&#x5bfc;&#x5165;&#x6570;&#x636e;" category="_YPyHED9AEemkJ6es1zdyvw"/>
  3099. <commands xmi:id="_YQJThz9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.ui.makePersistent" commandName="Make Persistent..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3100. <commands xmi:id="_YQJTiD9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.sqleditor.ExecuteSelectionAction" commandName="Execute Selected Text" category="_YPxgKz9AEemkJ6es1zdyvw"/>
  3101. <commands xmi:id="_YQJTiT9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jaxb.ui.command.createPackageInfo" commandName="Create package-info.java" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3102. <commands xmi:id="_YQJTij9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.edit.text.java.extract.class" commandName="Extract Class..." description="Extracts fields into a new class" category="_YPxgIj9AEemkJ6es1zdyvw"/>
  3103. <commands xmi:id="_YQJTiz9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.correction.extractConstant.assist" commandName="Quick Assist - Extract constant" description="Invokes quick assist and selects 'Extract constant'" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  3104. <commands xmi:id="_YQJTjD9AEemkJ6es1zdyvw" elementId="org.eclipse.compare.copyRightToLeft" commandName="Copy from Right to Left" description="Copy Current Change from Right to Left" category="_YPxgHz9AEemkJ6es1zdyvw"/>
  3105. <commands xmi:id="_YQJTjT9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.commands.OpenProfileConfigurations" commandName="Profile..." description="Open profile launch configuration dialog" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  3106. <commands xmi:id="_YQJTjj9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.ui.newMappingFile" commandName="JPA ORM Mapping File" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3107. <commands xmi:id="_YQJTjz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.ide.markCompleted" commandName="Mark Completed" description="Mark the selected tasks as completed" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3108. <commands xmi:id="_YQJTkD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.edit.text.java.comment" commandName="Comment" description="Turn the selected lines into JavaScript comments" category="_YPw49z9AEemkJ6es1zdyvw"/>
  3109. <commands xmi:id="_YQJTkT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.recenter" commandName="Recenter" description="Scroll cursor line to center, top and bottom" category="_YPw49D9AEemkJ6es1zdyvw"/>
  3110. <commands xmi:id="_YQJTkj9AEemkJ6es1zdyvw" elementId="org.springsource.ide.eclipse.boot.BootLaunchShortcut.run" commandName="Run Spring Boot App" description="Run Spring Boot App" category="_YPxgBD9AEemkJ6es1zdyvw"/>
  3111. <commands xmi:id="_YQJTkz9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.ui.xmlFileUpgradeToLatestVersion" commandName="Upgrade JPA Document Version" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3112. <commands xmi:id="_YQJTlD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.edit.text.scroll.lineDown" commandName="Scroll Line Down" description="Scroll down one line of text" category="_YPw49D9AEemkJ6es1zdyvw"/>
  3113. <commands xmi:id="_YQJTlT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.ui.search.find.occurrences" commandName="Occurrences in File" description="Find occurrences of the selection in the file" category="_YPw48T9AEemkJ6es1zdyvw"/>
  3114. <commands xmi:id="_YQJTlj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.ToggleCoolbarAction" commandName="Toggle Main Toolbar Visibility" description="Toggles the visibility of the window toolbar" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  3115. <commands xmi:id="_YQJTlz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.navigator.bookmark.add" commandName="&#x6dfb;&#x52a0;&#x4e66;&#x7b7e;" description="&#x6dfb;&#x52a0;&#x4e66;&#x7b7e;" category="_YPxgFD9AEemkJ6es1zdyvw"/>
  3116. <commands xmi:id="_YQJTmD9AEemkJ6es1zdyvw" 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="_YPxgGj9AEemkJ6es1zdyvw"/>
  3117. <commands xmi:id="_YQJTmT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.sse.ui.outline.customFilter" commandName="&amp;Filters" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3118. <commands xmi:id="_YQJTmj9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.sqlscrapbook.commands.openscrapbook" commandName="Open SQL Scrapboo&amp;k" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3119. <commands xmi:id="_YQJTmz9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.navigate.openResource" commandName="Open Resource" description="Open an editor on a particular resource" category="_YPxgGj9AEemkJ6es1zdyvw">
  3120. <parameters xmi:id="_YQJTnD9AEemkJ6es1zdyvw" elementId="filePath" name="File Path" typeId="org.eclipse.ui.ide.resourcePath"/>
  3121. </commands>
  3122. <commands xmi:id="_YQJTnT9AEemkJ6es1zdyvw" 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="_YPw49z9AEemkJ6es1zdyvw"/>
  3123. <commands xmi:id="_YQJTnj9AEemkJ6es1zdyvw" 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="_YPxgGj9AEemkJ6es1zdyvw"/>
  3124. <commands xmi:id="_YQJTnz9AEemkJ6es1zdyvw" elementId="org.springframework.tooling.ls.eclipse.commons.commands.OpenJavaElementInEditor" commandName="Open Java Element in Editor" category="_YPxgDz9AEemkJ6es1zdyvw">
  3125. <parameters xmi:id="_YQJToD9AEemkJ6es1zdyvw" elementId="bindingKey" name="bindingKey" optional="false"/>
  3126. <parameters xmi:id="_YQJToT9AEemkJ6es1zdyvw" elementId="projectName" name="projectName" optional="false"/>
  3127. </commands>
  3128. <commands xmi:id="_YcjXwD9AEemkJ6es1zdyvw" elementId="com.genuitec.myeclipse.help.darktheme.commandid" commandName="com.genuitec.myeclipse.help.darktheme.commandid"/>
  3129. <commands xmi:id="_YcoQQD9AEemkJ6es1zdyvw" elementId="com.genuitec.migrate.to.codemix" commandName="com.genuitec.migrate.to.codemix"/>
  3130. <commands xmi:id="_Y4NZAD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.ant.ui.actionSet.presentation/org.eclipse.ant.ui.toggleAutoReconcile" commandName="Toggle Ant Editor Auto Reconcile" description="Toggle Ant Editor Auto Reconcile" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3131. <commands xmi:id="_Y4OnID9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.datatools.sqltools.sqlscrapbook.actionSet/org.eclipse.datatools.sqltools.sqlscrapbook.actions.OpenScrapbookAction" commandName="Open SQL Scrapbook" description="Open scrapbook to edit SQL statements" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3132. <commands xmi:id="_Y4SRgD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.RunWithConfigurationAction" commandName="Run As" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3133. <commands xmi:id="_Y4SRgT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.RunHistoryMenuAction" commandName="Run History" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3134. <commands xmi:id="_Y4UGsD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.RunDropDownAction" commandName="Run" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3135. <commands xmi:id="_Y4UGsT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.DebugWithConfigurationAction" commandName="Debug As" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3136. <commands xmi:id="_Y4UtwD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.DebugHistoryMenuAction" commandName="Debug History" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3137. <commands xmi:id="_Y4VU0D9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.launchActionSet/org.eclipse.debug.internal.ui.actions.DebugDropDownAction" commandName="Debug" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3138. <commands xmi:id="_Y4VU0T9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.profileActionSet/org.eclipse.debug.internal.ui.actions.ProfileDropDownAction" commandName="Profile" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3139. <commands xmi:id="_Y4V74D9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.profileActionSet/org.eclipse.debug.internal.ui.actions.ProfileWithConfigurationAction" commandName="Profile As" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3140. <commands xmi:id="_Y4Wi8D9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.profileActionSet/org.eclipse.debug.internal.ui.actions.ProfileHistoryMenuAction" commandName="Profile History" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3141. <commands xmi:id="_Y4Wi8T9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.eclemma.ui.CoverageActionSet/org.eclipse.eclemma.ui.actions.CoverageDropDownAction" commandName="Coverage" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3142. <commands xmi:id="_Y4XKAD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.eclemma.ui.CoverageActionSet/org.eclipse.eclemma.ui.actions.CoverageAsAction" commandName="Coverage As" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3143. <commands xmi:id="_Y4XKAT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.eclemma.ui.CoverageActionSet/org.eclipse.eclemma.ui.actions.CoverageHistoryAction" commandName="Coverage History" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3144. <commands xmi:id="_Y4Y_MD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.egit.ui.SearchActionSet/org.eclipse.egit.ui.actions.OpenCommitSearchPage" commandName="Git..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3145. <commands xmi:id="_Y4d3sD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.ui.JavaElementCreationActionSet/org.eclipse.jdt.ui.actions.NewTypeDropDown" commandName="Class..." description="New Java Class" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3146. <commands xmi:id="_Y4d3sT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.ui.JavaElementCreationActionSet/org.eclipse.jdt.ui.actions.OpenPackageWizard" commandName="Package..." description="New Java Package" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3147. <commands xmi:id="_Y4eewD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.ui.JavaElementCreationActionSet/org.eclipse.jdt.ui.actions.OpenProjectWizard" commandName="Java Project..." description="New Java Project" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3148. <commands xmi:id="_Y4jXQD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.ui.SearchActionSet/org.eclipse.jdt.ui.actions.OpenJavaSearchPage" commandName="Java..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3149. <commands xmi:id="_Y4j-UD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jst.j2ee.J2eeMainActionSet/org.eclipse.jst.j2ee.internal.actions.NewJavaEEArtifact" commandName="Servlet" description="Create a new Servlet" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3150. <commands xmi:id="_Y4klYD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jst.j2ee.J2eeMainActionSet/org.eclipse.jst.j2ee.internal.actions.NewJavaEEProject" commandName="Dynamic Web Project" description="Create a Dynamic Web project" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3151. <commands xmi:id="_Y4klYT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.mylyn.java.actionSet.browsing/org.eclipse.mylyn.java.ui.actions.ApplyMylynToBrowsingPerspectiveAction" commandName="Focus Browsing Perspective" description="Focus Java Browsing Views on Active Task" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3152. <commands xmi:id="_Y4makD9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
  3153. <commands xmi:id="_Y4nosD9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
  3154. <commands xmi:id="_Y4nosT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.pde.ui.SearchActionSet/org.eclipse.pde.ui.actions.OpenPluginSearchPage" commandName="Plug-in..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3155. <commands xmi:id="_Y4oPwD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.ui.cheatsheets.actionSet/org.eclipse.ui.cheatsheets.actions.CheatSheetHelpMenuAction" commandName="Cheat Sheets..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3156. <commands xmi:id="_Y4oPwT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.rse.core.search.searchActionSet/org.eclipse.rse.core.search.searchAction" commandName="Remote..." description="Opens Remote Search dialog page for text and file searching on remote systems" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3157. <commands xmi:id="_Y4oPwj9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.search.searchActionSet/org.eclipse.search.OpenSearchDialogPage" commandName="Search..." description="Search" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3158. <commands xmi:id="_Y4oPwz9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.team.ui.actionSet/org.eclipse.team.ui.synchronizeAll" commandName="Synchronize..." description="Synchronize..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3159. <commands xmi:id="_Y4o20D9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
  3160. <commands xmi:id="_Y4o20T9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.ui.externaltools.ExternalToolsSet/org.eclipse.ui.externaltools.ExternalToolMenuDelegateMenu" commandName="External Tools" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3161. <commands xmi:id="_Y4pd4D9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
  3162. <commands xmi:id="_Y4pd4T9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.jsdt.ui.JavaElementCreationActionSet/org.eclipse.wst.jsdt.ui.actions.OpenFileWizard" commandName="JavaScript Source File" description="New JavaScript file" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3163. <commands xmi:id="_Y4qE8D9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.jsdt.ui.JavaElementCreationActionSet/org.eclipse.wst.jsdt.ui.actions.OpenProjectWizard" commandName="JavaScript Project..." description="New JavaScript Project" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3164. <commands xmi:id="_Y4r6ID9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.refactor.show.refactoring.history" commandName="History..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3165. <commands xmi:id="_Y4r6IT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.jsdt.ui.SearchActionSet/org.eclipse.wst.jsdt.ui.actions.OpenJavaSearchPage" commandName="JavaScript..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3166. <commands xmi:id="_Y4tvUD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.server.ui.new.actionSet/org.eclipse.wst.server.ui.action.new.server" commandName="Create Server" description="Create Server" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3167. <commands xmi:id="_Y4tvUT9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
  3168. <commands xmi:id="_Y4uWYD9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
  3169. <commands xmi:id="_Y4uWYT9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
  3170. <commands xmi:id="_Y4uWYj9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.web.ui.wizardsActionSet/org.eclipse.wst.web.ui.actions.newJSFile" commandName="JavaScript" description="Create a new JavaScript file" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3171. <commands xmi:id="_Y4u9cD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.web.ui.wizardsActionSet/org.eclipse.wst.web.ui.actions.newHTMLFile" commandName="HTML" description="Create a new HTML page" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3172. <commands xmi:id="_Y4u9cT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.ws.explorer.explorer/org.eclipse.wst.ws.internal.explorer.action.LaunchWSEAction" commandName="Launch the Web Services Explorer" description="Launch the Web Services Explorer" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3173. <commands xmi:id="_Y4vkgD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.springsource.ide.eclipse.commons.launch.actionSet/org.springsource.ide.eclipse.commons.launch.relaunch.action" commandName="Relaunch" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3174. <commands xmi:id="_Y4vkgT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.springsource.ide.eclipse.commons.launch.actionSet/org.springsource.ide.eclipse.commons.launch.stop.action" commandName="Terminate" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3175. <commands xmi:id="_Y4vkgj9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.search.OpenDataSearchPage" commandName="&#x6570;&#x636e;&#x5e93;&#x5168;&#x6587;&#x672c;" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3176. <commands xmi:id="_Y4wLkD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.search.OpenMetadataSearchPage" commandName="&#x6570;&#x636e;&#x5e93;&#x5143;&#x6570;&#x636e;" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3177. <commands xmi:id="_Y4wLkT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.ant.ui.BreakpointRulerActions/org.eclipse.ant.ui.actions.ManageBreakpointRulerAction" commandName="Toggle Breakpoint" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3178. <commands xmi:id="_Y4wyoD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.datatools.sqltools.rullerDoubleClick/org.eclipse.jdt.debug.ui.actions.ManageBreakpointRulerAction" commandName="Add Breakpoint" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3179. <commands xmi:id="_Y4wyoT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.emf.exporter.genModelEditorContribution/org.eclipse.emf.exporter.ui.GenModelExportActionDelegate.Editor" commandName="Export Model..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3180. <commands xmi:id="_Y4wyoj9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.emf.importer.genModelEditorContribution/org.eclipse.emf.importer.ui.GenModelReloadActionDelegate.Editor" commandName="Reload..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3181. <commands xmi:id="_Y4wyoz9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.action.RemoveMappingActionID" commandName="Remove Mapping" description="Remove the mapping associated with the selected objects." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3182. <commands xmi:id="_Y4zO4D9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.action.TypeMatchMappingActionID" commandName="Match Mapping by Type" description="Create child mappings automatically by type." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3183. <commands xmi:id="_Y4z18D9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.action.NameMatchMappingActionID" commandName="Match Mapping by Name" description="Create child mappings automatically by name." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3184. <commands xmi:id="_Y4z18T9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.action.CreateOneSidedMappingActionID" commandName="Create One-sided Mapping" description="Create a new mapping for the selected object." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3185. <commands xmi:id="_Y40dAD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.action.CreateMappingActionID" commandName="Create Mapping" description="Create a new mapping between the selected objects." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3186. <commands xmi:id="_Y40dAT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.ecore2ecore.action.AddOuputRootActionID" commandName="Add Output Root..." description="Add new output root." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3187. <commands xmi:id="_Y41EED9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.emf.mapping.ecore2ecore.presentation.Ecore2EcoreContributionID/org.eclipse.emf.mapping.ecore2ecore.action.AddInputRootActionID" commandName="Add Input Root..." description="Add new input root." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3188. <commands xmi:id="_Y41EET9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.CompilationUnitEditor.BreakpointRulerActions/org.eclipse.jdt.debug.ui.actions.ManageBreakpointRulerAction" commandName="Toggle Breakpoint" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3189. <commands xmi:id="_Y41EEj9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ClassFileEditor.BreakpointRulerActions/org.eclipse.jdt.debug.ui.actions.ManageBreakpointRulerAction" commandName="Toggle Breakpoint" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3190. <commands xmi:id="_Y41EEz9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.JavaSnippetToolbarActions/org.eclipse.jdt.debug.ui.SnippetExecute" commandName="Execute" description="Execute the Selected Text" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3191. <commands xmi:id="_Y41rID9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.JavaSnippetToolbarActions/org.eclipse.jdt.debug.ui.SnippetDisplay" commandName="Display" description="Display Result of Evaluating Selected Text" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3192. <commands xmi:id="_Y42SMD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.JavaSnippetToolbarActions/org.eclipse.jdt.debug.ui.SnippetInspect" commandName="Inspect" description="Inspect Result of Evaluating Selected Text" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3193. <commands xmi:id="_Y42SMT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.CompilationUnitEditor.ruler.actions/org.eclipse.jdt.internal.ui.javaeditor.BookmarkRulerAction" commandName="Java Editor Bookmark Ruler Action" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3194. <commands xmi:id="_Y42SMj9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.CompilationUnitEditor.ruler.actions/org.eclipse.jdt.internal.ui.javaeditor.JavaSelectRulerAction" commandName="Java Editor Ruler Single-Click" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3195. <commands xmi:id="_Y425QD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.ClassFileEditor.ruler.actions/org.eclipse.jdt.internal.ui.javaeditor.JavaSelectRulerAction" commandName="Java Editor Ruler Single-Click" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3196. <commands xmi:id="_Y425QT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.PropertiesFileEditor.ruler.actions/org.eclipse.jdt.internal.ui.propertiesfileeditor.BookmarkRulerAction" commandName="Java Editor Bookmark Ruler Action" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3197. <commands xmi:id="_Y43gUD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.internal.ui.PropertiesFileEditor.ruler.actions/org.eclipse.jdt.internal.ui.propertiesfileeditor.SelectRulerAction" commandName="Java Editor Ruler Single-Click" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3198. <commands xmi:id="_Y43gUT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jst.jsp.core.jspsource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3199. <commands xmi:id="_Y43gUj9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jst.jsp.core.jspsource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3200. <commands xmi:id="_Y43gUz9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.m2e.jdt.ui.downloadSourcesContribution/org.eclipse.m2e.jdt.ui.downloadSourcesAction" commandName="label" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3201. <commands xmi:id="_Y43gVD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.m2e.jdt.ui.downloadSourcesContribution_38/org.eclipse.m2e.jdt.ui.downloadSourcesAction_38" commandName="label" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3202. <commands xmi:id="_Y44HYD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.ui.texteditor.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Text Editor Bookmark Ruler Action" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3203. <commands xmi:id="_Y44HYT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.ui.texteditor.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Text Editor Ruler Single-Click" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3204. <commands xmi:id="_Y44ucD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.css.core.csssource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3205. <commands xmi:id="_Y44ucT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.css.core.csssource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3206. <commands xmi:id="_Y44ucj9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.dtd.core.dtdsource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3207. <commands xmi:id="_Y45VgD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.dtd.core.dtdsource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3208. <commands xmi:id="_Y45VgT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.html.core.htmlsource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3209. <commands xmi:id="_Y45Vgj9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.html.core.htmlsource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3210. <commands xmi:id="_Y45Vgz9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
  3211. <commands xmi:id="_Y458kD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.jsdt.debug.ui.togglebreakpoint/org.eclipse.wst.jsdt.debug.ui.RulerToggleBreakpoint" commandName="Toggle Breakpoint" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3212. <commands xmi:id="_Y46joD9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
  3213. <commands xmi:id="_Y46joT9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
  3214. <commands xmi:id="_Y46joj9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
  3215. <commands xmi:id="_Y47KsD9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
  3216. <commands xmi:id="_Y47KsT9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
  3217. <commands xmi:id="_Y47xwD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.json.core.jsonsource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="%AddBookmark.label" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3218. <commands xmi:id="_Y47xwT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.json.core.jsonsource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="%SelectRuler.label" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3219. <commands xmi:id="_Y47xwj9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.ui.articles.action.contribution.editor/org.eclipse.wst.wsdl.ui.actions.ReloadDependenciesActionDelegate" commandName="Reload Dependencies" description="Reload Dependencies" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3220. <commands xmi:id="_Y48Y0D9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.wsdl.wsdlsource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3221. <commands xmi:id="_Y48Y0T9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.wsdl.wsdlsource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3222. <commands xmi:id="_Y48Y0j9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.core.runtime.xml.source.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3223. <commands xmi:id="_Y48_4D9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.core.runtime.xml.source.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3224. <commands xmi:id="_Y48_4T9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.xsd.core.xsdsource.ruler.actions/org.eclipse.ui.texteditor.BookmarkRulerAction" commandName="Add Bookmark..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3225. <commands xmi:id="_Y49m8D9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.wst.xsd.core.xsdsource.ruler.actions/org.eclipse.ui.texteditor.SelectRulerAction" commandName="Select Ruler" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3226. <commands xmi:id="_Y49m8T9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.jkiss.dbeaver.debug.ui.editorContribution/org.jkiss.dbeaver.debug.ui.actions.ManageBreakpointRulerAction" commandName="%actions.ManageBreakpointRulerAction.label" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3227. <commands xmi:id="_Y4-OAD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.PulldownActions/org.eclipse.debug.ui.debugview.pulldown.ViewManagementAction" commandName="View Management..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3228. <commands xmi:id="_Y4-OAT9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
  3229. <commands xmi:id="_Y4-OAj9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.removeAll" commandName="Remove All" description="Remove All Breakpoints" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3230. <commands xmi:id="_Y5AqQD9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
  3231. <commands xmi:id="_Y5BRUD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.workingSets" commandName="Working Sets..." description="Manage Working Sets" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3232. <commands xmi:id="_Y5BRUT9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
  3233. <commands xmi:id="_Y5BRUj9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
  3234. <commands xmi:id="_Y5B4YD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.sortByAction" commandName="Sort By" description="Sort By" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3235. <commands xmi:id="_Y5B4YT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.breakpointsview.toolbar/org.eclipse.debug.ui.breakpointsView.toolbar.groupByAction" commandName="Group By" description="Show" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3236. <commands xmi:id="_Y5B4Yj9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.expressionsView.toolbar/org.eclipse.debug.ui.expresssionsView.toolbar.removeAll" commandName="Remove All" description="Remove All Expressions" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3237. <commands xmi:id="_Y5B4Yz9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
  3238. <commands xmi:id="_Y5CfcD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.PinMemoryBlockAction" commandName="Pin Memory Monitor" description="Pin Memory Monitor" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3239. <commands xmi:id="_Y5CfcT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.NewMemoryViewAction" commandName="New Memory View" description="New Memory View" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3240. <commands xmi:id="_Y5Cfcj9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.togglemonitors" commandName="Toggle Memory Monitors Pane" description="Toggle Memory Monitors Pane" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3241. <commands xmi:id="_Y5DtkD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.linkrenderingpanes" commandName="Link Memory Rendering Panes" description="Link Memory Rendering Panes" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3242. <commands xmi:id="_Y5DtkT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.tablerendering.preferencesaction" commandName="Table Renderings Preferences..." description="&amp;Table Renderings Preferences..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3243. <commands xmi:id="_Y5EUoD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.togglesplitpane" commandName="Toggle Split Pane" description="Toggle Split Pane" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3244. <commands xmi:id="_Y5EUoT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.switchMemoryBlock" commandName="Switch Memory Monitor" description="Switch Memory Monitor" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3245. <commands xmi:id="_Y5E7sD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.debug.ui.memoryView.toolbar/org.eclipse.debug.ui.memoryViewPreferencesAction" commandName="Preferences..." description="&amp;Preferences..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3246. <commands xmi:id="_Y5E7sT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.Preferences" commandName="Java Preferences..." description="Opens preferences for Java variables" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3247. <commands xmi:id="_Y5FiwD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variablesViewActions.AllReferencesInView" commandName="Show References" description="Shows references to each object in the variables view as an array of objects." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3248. <commands xmi:id="_Y5GJ0D9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowNullEntries" commandName="Show Null Array Entries" description="Show Null Array Entries" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3249. <commands xmi:id="_Y5GJ0T9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3250. <commands xmi:id="_Y5Gw4D9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowStatic" commandName="Show Static Variables" description="Show Static Variables" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3251. <commands xmi:id="_Y5Gw4T9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.VariableViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowConstants" commandName="Show Constants" description="Show Constants" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3252. <commands xmi:id="_Y5HX8D9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.variableViewActions.Preferences" commandName="Java Preferences..." description="Opens preferences for Java variables" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3253. <commands xmi:id="_Y5HX8T9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.AllReferencesInView" commandName="Show References" description="Show &amp;References" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3254. <commands xmi:id="_Y5H_AD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.variableViewActions.ShowNullEntries" commandName="Show Null Array Entries" description="Show Null Array Entries" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3255. <commands xmi:id="_Y5ImED9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3256. <commands xmi:id="_Y5ImET9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.ShowStatic" commandName="Show Static Variables" description="Show Static Variables" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3257. <commands xmi:id="_Y5KbQD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.ExpressionViewActions/org.eclipse.jdt.debug.ui.expressionViewActions.ShowConstants" commandName="Show Constants" description="Show Constants" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3258. <commands xmi:id="_Y5KbQT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.BreakpointViewActions/org.eclipse.jdt.debug.ui.actions.AddException" commandName="Add Java Exception Breakpoint" description="Add Java Exception Breakpoint" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3259. <commands xmi:id="_Y5LCUD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.BreakpointViewActions/org.eclipse.jdt.debug.ui.breakpointViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3260. <commands xmi:id="_Y5LCUT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowThreadGroups" commandName="Show Thread Groups" description="Show Thread Groups" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3261. <commands xmi:id="_Y5LpYD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowQualified" commandName="Show Qualified Names" description="Show Qualified Names" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3262. <commands xmi:id="_Y5LpYT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowSystemThreads" commandName="Show System Threads" description="Show System Threads" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3263. <commands xmi:id="_Y5MQcD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowRunningThreads" commandName="Show Running Threads" description="Show Running Threads" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3264. <commands xmi:id="_Y5MQcT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.LaunchViewActions/org.eclipse.jdt.debug.ui.launchViewActions.ShowMonitorThreadInfo" commandName="Show Monitors" description="Show the Thread &amp; Monitor Information" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3265. <commands xmi:id="_Y5MQcj9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.DisplayViewActions/org.eclipse.jdt.debug.ui.displayViewToolbar.Watch" commandName="Watch" description="Create a Watch Expression from the Selected Text" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3266. <commands xmi:id="_Y5M3gD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.DisplayViewActions/org.eclipse.jdt.debug.ui.displayViewToolbar.Execute" commandName="Execute" description="Execute the Selected Text" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3267. <commands xmi:id="_Y5M3gT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.DisplayViewActions/org.eclipse.jdt.debug.ui.displayViewToolbar.Display" commandName="Display" description="Display Result of Evaluating Selected Text" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3268. <commands xmi:id="_Y5NekD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.jdt.debug.ui.DisplayViewActions/org.eclipse.jdt.debug.ui.displayViewToolbar.Inspect" commandName="Inspect" description="Inspect Result of Evaluating Selected Text" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3269. <commands xmi:id="_Y5OssD9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
  3270. <commands xmi:id="_Y5OssT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.mylyn.java.ui.markers.breakpoints.contribution/org.eclipse.mylyn.java.ui.actions.focus.markers.breakpoints" commandName="Focus on Active Task" description="Focus on Active Task" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3271. <commands xmi:id="_Y5P60D9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
  3272. <commands xmi:id="_Y5P60T9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
  3273. <commands xmi:id="_Y5Qh4D9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.mylyn.ui.search.contribution/org.eclipse.mylyn.ide.ui.actions.focus.search.results" commandName="Focus on Active Task" description="Focus on Active Task (Alt+click to reveal filtered elements)" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3274. <commands xmi:id="_Y5RI8D9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
  3275. <commands xmi:id="_Y5RI8T9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
  3276. <commands xmi:id="_Y5RwAD9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
  3277. <commands xmi:id="_Y5RwAT9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
  3278. <commands xmi:id="_Y5RwAj9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
  3279. <commands xmi:id="_Y5RwAz9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.mylyn.java.explorer.contribution/org.eclipse.mylyn.java.actions.focus.packageExplorer" commandName="Focus on Active Task" description="Focus on Active Task (Alt+click to reveal filtered elements)" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3280. <commands xmi:id="_Y5SXED9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.mylyn.tasks.ui.actions.view/org.eclipse.mylyn.tasks.ui.search.open" commandName="Search Repository..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3281. <commands xmi:id="_Y5SXET9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.mylyn.tasks.ui.actions.view/org.eclipse.mylyn.tasks.ui.synchronize.changed" commandName="Synchronize Changed" description="Synchronize Changed" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3282. <commands xmi:id="_Y5SXEj9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.mylyn.tasks.ui.actions.view/org.eclipse.mylyn.tasks.ui.tasks.restore" commandName="Restore Tasks from History..." category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3283. <commands xmi:id="_Y5SXEz9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
  3284. <commands xmi:id="_Y5SXFD9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
  3285. <commands xmi:id="_Y5S-ID9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
  3286. <commands xmi:id="_Y5S-IT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.pde.ui.logViewActions/org.eclipse.jdt.debug.ui.LogViewActions.showStackTrace" commandName="Show Stack Trace in Console View" description="Show Stack Trace in Console View" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3287. <commands xmi:id="_Y5S-Ij9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.rse.ui.view.systemView.toolbar/org.eclipse.rse.ui.view.systemView.toolbar.linkWithSystemView" commandName="Link with Editor" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3288. <commands xmi:id="_Y5S-Iz9AEemkJ6es1zdyvw" elementId="AUTOGEN:::breakpointsViewActions/org.eclipse.wst.jsdt.debug.ui.add.scriptload.breakpoint" commandName="Add Script Load Breakpoint" description="Add Script Load Breakpoint" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3289. <commands xmi:id="_Y5TlMD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::breakpointsViewActions/org.eclipse.jdt.debug.ui.breakpointViewActions.ShowQualified" commandName="Suspend For All Script Loads" description="Suspends when any script is loaded" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3290. <commands xmi:id="_Y5TlMT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::breakpointsViewActions/org.eclipse.wst.jsdt.debug.ui.suspend.on.exceptions" commandName="Suspend On JavaScript Exceptions" description="Suspend on all JavaScript exceptions" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3291. <commands xmi:id="_Y5TlMj9AEemkJ6es1zdyvw" 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="_YPxgDz9AEemkJ6es1zdyvw"/>
  3292. <commands xmi:id="_Y5TlMz9AEemkJ6es1zdyvw" elementId="AUTOGEN:::variableViewActions/org.eclipse.wst.jsdt.debug.ui.variableview.show.functions" commandName="Show function variables" description="Show or hide function variables" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3293. <commands xmi:id="_Y5TlND9AEemkJ6es1zdyvw" elementId="AUTOGEN:::variableViewActions/org.eclipse.wst.jsdt.debug.ui.variableview.show.this" commandName="Show 'this' variable" description="Show or hide the this variable" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3294. <commands xmi:id="_Y5UMQD9AEemkJ6es1zdyvw" elementId="AUTOGEN:::variableViewActions/org.eclipse.wst.jsdt.debug.ui.variableview.show.prototypes" commandName="Show proto variables" description="Show or hide proto variables" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3295. <commands xmi:id="_Y5UMQT9AEemkJ6es1zdyvw" elementId="AUTOGEN:::org.eclipse.ui.articles.action.contribution.view/org.eclipse.wst.wsi.ui.internal.actions.actionDelegates.ValidateWSIProfileActionDelegate" commandName="WS-I Profile Validator" description="Validate WS-I Message Log File" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3296. <commands xmi:id="_OB6lcEvkEemRUu80Py4P3w" elementId="com.genuitec.eclipse.inlinesearch.delete.previous" commandName="Delete Previous Word" category="_YPyHFj9AEemkJ6es1zdyvw"/>
  3297. <commands xmi:id="_OB6lcUvkEemRUu80Py4P3w" elementId="com.genuitec.eclipse.inlinesearch.delete.next" commandName="Delete Next Word" category="_YPyHFj9AEemkJ6es1zdyvw"/>
  3298. <commands xmi:id="_iPLsMCfvEeq9j5-P04oEqA" elementId="org.eclipse.emf.codegen.ui.jet.goto.matching.bracket" commandName="Goto Matching Bracket" description="Goto Matching Bracket" category="_YPxgGj9AEemkJ6es1zdyvw"/>
  3299. <commands xmi:id="_iPLsMSfvEeq9j5-P04oEqA" elementId="org.eclipse.egit.ui.team.Revert" commandName="Revert Commit" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  3300. <commands xmi:id="_iPLsMifvEeq9j5-P04oEqA" elementId="org.eclipse.egit.ui.RepositoriesViewCollapseWorkingTree" commandName="Collapse Working Tree" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  3301. <commands xmi:id="_iPLsMyfvEeq9j5-P04oEqA" elementId="org.eclipse.ui.toggleShowKeys" commandName="Toggle Show Key Bindings" description="Shows key binding when command is invoked" category="_YPw4_j9AEemkJ6es1zdyvw"/>
  3302. <commands xmi:id="_iPLsNCfvEeq9j5-P04oEqA" elementId="org.eclipse.codegen.ui.jet.rename" commandName="Rename" description="Rename" category="_iPKeECfvEeq9j5-P04oEqA"/>
  3303. <commands xmi:id="_iPMTQCfvEeq9j5-P04oEqA" elementId="org.eclipse.codegen.ui.jet.source.quickmenu" commandName="Show Source Quick Menu" description="Shows the source quick menu" category="_iPKeESfvEeq9j5-P04oEqA"/>
  3304. <commands xmi:id="_iPMTQSfvEeq9j5-P04oEqA" elementId="org.eclipse.jdt.ui.edit.text.java.add.textblock" commandName="Add Text Block" description="Adds Text Block" category="_YPyHFD9AEemkJ6es1zdyvw"/>
  3305. <commands xmi:id="_iPMTQifvEeq9j5-P04oEqA" elementId="org.eclipse.text.quicksearch.commands.quicksearchCommand" commandName="Quick Search" category="_iPJ3ASfvEeq9j5-P04oEqA"/>
  3306. <commands xmi:id="_iPMTQyfvEeq9j5-P04oEqA" elementId="org.eclipse.egit.ui.RepositoriesViewShowInSystemExplorer" commandName="Show In System Explorer" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  3307. <commands xmi:id="_iPMTRCfvEeq9j5-P04oEqA" elementId="org.eclipse.egit.ui.RepositoriesCreateGroup" commandName="Create a Repository Group" description="Create a repository group for structuring repositories in the Git Repositories view" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  3308. <commands xmi:id="_iPMTRSfvEeq9j5-P04oEqA" elementId="org.eclipse.egit.ui.team.CherryPick" commandName="Cherry Pick" category="_YPxgKj9AEemkJ6es1zdyvw"/>
  3309. <commands xmi:id="_iPMTRifvEeq9j5-P04oEqA" elementId="org.eclipse.emf.codegen.ui.jet.select.enclosing" commandName="Select Enclosing JET Element" description="Select Enclosing JET Element" category="_YPw48T9AEemkJ6es1zdyvw"/>
  3310. <commands xmi:id="_iPM6UCfvEeq9j5-P04oEqA" elementId="org.eclipse.codegen.ui.jet.format" commandName="Format" description="Format" category="_iPKeESfvEeq9j5-P04oEqA"/>
  3311. <commands xmi:id="_iPM6USfvEeq9j5-P04oEqA" elementId="org.eclipse.codegen.ui.jet.refactor.quickmenu" commandName="Show Refactor Quick Menu" description="Shows the refactor quick menu" category="_iPKeECfvEeq9j5-P04oEqA"/>
  3312. <commands xmi:id="_izZMgCfvEeq9j5-P04oEqA" elementId="AUTOGEN:::org.eclipse.jdt.debug.CompilationUnitEditor.BreakpointRulerActions/org.eclipse.jdt.debug.ui.actions.RunToLineRulerActionDelegate" commandName="Run to Line" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3313. <commands xmi:id="_izbBsCfvEeq9j5-P04oEqA" elementId="AUTOGEN:::org.eclipse.jdt.debug.ClassFileEditor.BreakpointRulerActions/org.eclipse.jdt.debug.ui.actions.RunToLineRulerActionDelegate" commandName="Run to Line" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3314. <commands xmi:id="_izcP0CfvEeq9j5-P04oEqA" elementId="AUTOGEN:::org.eclipse.debug.ui.debugview.toolbar/org.eclipse.debug.ui.debugview.toolbar.collapseAll" commandName="Collapse All" description="Collapse All" category="_YPxgDz9AEemkJ6es1zdyvw"/>
  3315. <addons xmi:id="_YO2S-z9AEemkJ6es1zdyvw" 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"/>
  3316. <addons xmi:id="_YO2S_D9AEemkJ6es1zdyvw" 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"/>
  3317. <addons xmi:id="_YO2S_T9AEemkJ6es1zdyvw" 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"/>
  3318. <addons xmi:id="_YO2S_j9AEemkJ6es1zdyvw" 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"/>
  3319. <addons xmi:id="_YO2S_z9AEemkJ6es1zdyvw" 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"/>
  3320. <addons xmi:id="_YO2TAD9AEemkJ6es1zdyvw" 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"/>
  3321. <addons xmi:id="_YO2TAT9AEemkJ6es1zdyvw" 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"/>
  3322. <addons xmi:id="_YO2TAj9AEemkJ6es1zdyvw" 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"/>
  3323. <addons xmi:id="_YO2TAz9AEemkJ6es1zdyvw" 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"/>
  3324. <addons xmi:id="_YO2TBD9AEemkJ6es1zdyvw" 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"/>
  3325. <addons xmi:id="_YPDHQD9AEemkJ6es1zdyvw" elementId="SplitterAddon" contributionURI="bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.splitteraddon.SplitterAddon"/>
  3326. <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"/>
  3327. <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"/>
  3328. <categories xmi:id="_YPw48D9AEemkJ6es1zdyvw" elementId="org.springframework.tooling.ls.eclipse.gotosymbol.commands.category" name="STS4"/>
  3329. <categories xmi:id="_YPw48T9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.category.edit" name="Edit"/>
  3330. <categories xmi:id="_YPw48j9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.wikitext.ui.editor.category" name="WikiText Markup Editing Commands" description="commands for editing lightweight markup"/>
  3331. <categories xmi:id="_YPw48z9AEemkJ6es1zdyvw" elementId="org.eclipse.buildship.ui.project" name="Buildship" description="Contains the Buildship specific commands"/>
  3332. <categories xmi:id="_YPw49D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.category.textEditor" name="Text Editing" description="Text Editing Commands"/>
  3333. <categories xmi:id="_YPw49T9AEemkJ6es1zdyvw" elementId="org.dadacoalition.yedit.commands.category" name="YEdit" description="Commands related to the YEdit plugin"/>
  3334. <categories xmi:id="_YPw49j9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.context.ui.commands" name="Focused UI" description="Task-Focused Interface"/>
  3335. <categories xmi:id="_YPw49z9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.category.source" name="Source" description="JavaScript Source Actions"/>
  3336. <categories xmi:id="_YPw4-D9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.commands" name="Task Repositories"/>
  3337. <categories xmi:id="_YPw4-T9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.server.ui" name="Server" description="Server"/>
  3338. <categories xmi:id="_YPw4-j9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.wikitext.context.ui.commands" name="Mylyn WikiText" description="Commands used for Mylyn WikiText"/>
  3339. <categories xmi:id="_YPw4-z9AEemkJ6es1zdyvw" elementId="org.eclipse.eclemma.ui" name="EclEmma Code Coverage"/>
  3340. <categories xmi:id="_YPw4_D9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.category.file" name="File"/>
  3341. <categories xmi:id="_YPw4_T9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.rs" name="&#x7ed3;&#x679c;&#x96c6;" description="&#x7ed3;&#x679c;&#x96c6;&#x547d;&#x4ee4;"/>
  3342. <categories xmi:id="_YPw4_j9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.category.window" name="Window"/>
  3343. <categories xmi:id="_YPxgAD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.debug.ui.commands.category" name="Database Debug" description="Database Debug commands"/>
  3344. <categories xmi:id="_YPxgAT9AEemkJ6es1zdyvw" elementId="org.springframework.ide.eclipse.commands" name="Spring Generic Text Editor" description="Spring Language Server Commands"/>
  3345. <categories xmi:id="_YPxgAj9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.result.category" name="SQL Results View"/>
  3346. <categories xmi:id="_YPxgAz9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.genericeditor.extension.category.source" name="Target Definition Source" description="Target Definition Source Page actions"/>
  3347. <categories xmi:id="_YPxgBD9AEemkJ6es1zdyvw" elementId="org.eclipse.debug.ui.category.run" name="Run/Debug" description="Run/Debug command category"/>
  3348. <categories xmi:id="_YPxgBT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.category.dialogs" name="Dialogs" description="Commands for opening dialogs"/>
  3349. <categories xmi:id="_YPxgBj9AEemkJ6es1zdyvw" elementId="org.eclipse.oomph" name="Oomph"/>
  3350. <categories xmi:id="_YPxgBz9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.chromium.debug.js.category" name="Chrome / Chromium"/>
  3351. <categories xmi:id="_YPxgCD9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.ui.jpaMetadataConversionCommands" name="JPA Metadata Conversion"/>
  3352. <categories xmi:id="_YPxgCT9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.xml.views.XPathView" name="XPath"/>
  3353. <categories xmi:id="_YPxgCj9AEemkJ6es1zdyvw" elementId="org.eclipse.jpt.jpa.ui.jpaStructureViewCommands" name="JPA Structure View"/>
  3354. <categories xmi:id="_YPxgCz9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.commons.repositories.ui.category.Team" name="Team"/>
  3355. <categories xmi:id="_YPxgDD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.sql" name="SQL&#x7f16;&#x8f91;&#x5668;" description="SQL&#x7f16;&#x8f91;&#x5668;&#x547d;&#x4ee4;"/>
  3356. <categories xmi:id="_YPxgDT9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.ui.category.source" name="Manifest Editor Source" description="PDE Source Page actions"/>
  3357. <categories xmi:id="_YPxgDj9AEemkJ6es1zdyvw" elementId="org.eclipse.oomph.commands" name="Oomph"/>
  3358. <categories xmi:id="_YPxgDz9AEemkJ6es1zdyvw" elementId="org.eclipse.core.commands.categories.autogenerated" name="Uncategorized" description="Commands that were either auto-generated or have no category"/>
  3359. <categories xmi:id="_YPxgED9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.ui.category.refactoring" name="Refactor - JavaScript" description="JavaScript Refactoring Actions"/>
  3360. <categories xmi:id="_YPxgET9AEemkJ6es1zdyvw" elementId="org.eclipse.team.ui.category.team" name="Team" description="Actions that apply when working with a Team"/>
  3361. <categories xmi:id="_YPxgEj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.category.views" name="Views" description="Commands for opening views"/>
  3362. <categories xmi:id="_YPxgEz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.ext.oracle" name="Oracle" description="Oracle Commands"/>
  3363. <categories xmi:id="_YPxgFD9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.navigator" name="&#x6570;&#x636e;&#x5e93;&#x5bfc;&#x822a;" description="&#x6570;&#x636e;&#x5e93;&#x5bfc;&#x822a;&#x547d;&#x4ee4;"/>
  3364. <categories xmi:id="_YPxgFT9AEemkJ6es1zdyvw" elementId="org.springframework.ide.eclipse.boot.commands.category" name="Spring Boot"/>
  3365. <categories xmi:id="_YPxgFj9AEemkJ6es1zdyvw" elementId="org.eclipse.jst.pagedesigner.pagelayout" name="Web Page Editor Layout"/>
  3366. <categories xmi:id="_YPxgFz9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.tasks.ui.category.editor" name="Task Editor"/>
  3367. <categories xmi:id="_YPxgGD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.ide.markerContents" name="Contents" description="The category for menu contents"/>
  3368. <categories xmi:id="_YPxgGT9AEemkJ6es1zdyvw" elementId="org.eclipse.oomph.setup.category" name="Oomph Setup"/>
  3369. <categories xmi:id="_YPxgGj9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.category.navigate" name="Navigate"/>
  3370. <categories xmi:id="_YPxgGz9AEemkJ6es1zdyvw" elementId="org.eclipse.mylyn.java.ui.commands" name="Java Context" description="Java Task-Focused Interface Commands"/>
  3371. <categories xmi:id="_YPxgHD9AEemkJ6es1zdyvw" elementId="org.eclipse.wst.jsdt.debug.ui.category" name="JavaScript Debug" description="Tooling for debugging JavaScript"/>
  3372. <categories xmi:id="_YPxgHT9AEemkJ6es1zdyvw" elementId="org.eclipse.lsp4e.category" name="Language Servers"/>
  3373. <categories xmi:id="_YPxgHj9AEemkJ6es1zdyvw" elementId="org.eclipse.tm.terminal.view.ui.commands.category" name="Terminal Commands"/>
  3374. <categories xmi:id="_YPxgHz9AEemkJ6es1zdyvw" elementId="org.eclipse.compare.ui.category.compare" name="Compare" description="Compare command category"/>
  3375. <categories xmi:id="_YPxgID9AEemkJ6es1zdyvw" elementId="org.eclipse.rse.ui.commands.category" name="Remote Systems"/>
  3376. <categories xmi:id="_YPxgIT9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.enablement.sybase.asa.schemaobjecteditor.examples.tableschemaedtor.10x" name="ASA 9.x table schema editor"/>
  3377. <categories xmi:id="_YPxgIj9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.category.refactoring" name="Refactor - Java" description="Java Refactoring Actions"/>
  3378. <categories xmi:id="_YPxgIz9AEemkJ6es1zdyvw" elementId="org.eclipse.emf.codegen.ecore.ui.Commands" name="EMF Code Generation" description="Commands for the EMF code generation tools"/>
  3379. <categories xmi:id="_YPxgJD9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.category.help" name="Help"/>
  3380. <categories xmi:id="_YPxgJT9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.category.project" name="Project"/>
  3381. <categories xmi:id="_YPxgJj9AEemkJ6es1zdyvw" elementId="org.springsource.ide.eclipse.common.ui.commands" name="SpringSource Tools"/>
  3382. <categories xmi:id="_YPxgJz9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.database" name="&#x8fde;&#x63a5;" description="&#x6570;&#x636e;&#x5e93;&#x8fde;&#x63a5;&#x547d;&#x4ee4;"/>
  3383. <categories xmi:id="_YPxgKD9AEemkJ6es1zdyvw" elementId="org.eclipse.tm.terminal.category1" name="Terminal view commands" description="Terminal view commands"/>
  3384. <categories xmi:id="_YPxgKT9AEemkJ6es1zdyvw" elementId="org.eclipse.search.ui.category.search" name="Search" description="Search command category"/>
  3385. <categories xmi:id="_YPxgKj9AEemkJ6es1zdyvw" elementId="org.eclipse.egit.ui.commandCategory" name="Git"/>
  3386. <categories xmi:id="_YPxgKz9AEemkJ6es1zdyvw" elementId="org.eclipse.datatools.sqltools.sqleditor.category" name="Database Tools" description="Database Development tools"/>
  3387. <categories xmi:id="_YPyHED9AEemkJ6es1zdyvw" elementId="org.jkiss.dbeaver.core.util" name="&#x5b9e;&#x7528;&#x5de5;&#x5177;" description="&#x5b9e;&#x7528;&#x5de5;&#x5177;"/>
  3388. <categories xmi:id="_YPyHET9AEemkJ6es1zdyvw" elementId="org.eclipse.ui.category.perspectives" name="Perspectives" description="Commands for opening perspectives"/>
  3389. <categories xmi:id="_YPyHEj9AEemkJ6es1zdyvw" elementId="org.eclipse.ltk.ui.category.refactoring" name="Refactoring"/>
  3390. <categories xmi:id="_YPyHEz9AEemkJ6es1zdyvw" elementId="org.eclipse.gef.category.view" name="View" description="View"/>
  3391. <categories xmi:id="_YPyHFD9AEemkJ6es1zdyvw" elementId="org.eclipse.jdt.ui.category.source" name="Source" description="Java Source Actions"/>
  3392. <categories xmi:id="_YPyHFT9AEemkJ6es1zdyvw" elementId="org.eclipse.pde.runtime.spy.commands.category" name="Spy"/>
  3393. <categories xmi:id="_YPyHFj9AEemkJ6es1zdyvw" elementId="com.genuitec.eclipse.inlinesearch.commands.category" name="Inline Search"/>
  3394. <categories xmi:id="_YPyHFz9AEemkJ6es1zdyvw" elementId="org.springsource.ide.eclipse.quicksearch.commands.category" name="Quick Search Category"/>
  3395. <categories xmi:id="_iPJ3ASfvEeq9j5-P04oEqA" elementId="org.eclipse.text.quicksearch.commands.category" name="Quick Search"/>
  3396. <categories xmi:id="_iPKeECfvEeq9j5-P04oEqA" elementId="org.eclipse.codegen.ui.jet.refactor" name="JET Refactor Actions"/>
  3397. <categories xmi:id="_iPKeESfvEeq9j5-P04oEqA" elementId="org.eclipse.codegen.ui.jet.source" name="JET Source Actions"/>
  3398. <categories xmi:id="_iPKeEifvEeq9j5-P04oEqA" elementId="org.eclipse.lsp4e.commandCategory" name="Command"/>
  3399. </application:Application>