Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1563)

Side by Side Diff: editor/tools/plugins/com.google.dart.tools.deploy/plugin.xml

Issue 10034031: modified Run button to always run the last launched application (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <?xml version="1.0" encoding="UTF-8"?> 1 <?xml version="1.0" encoding="UTF-8"?>
2 <?eclipse version="3.4"?> 2 <?eclipse version="3.4"?>
3 <plugin> 3 <plugin>
4 4
5 <extension 5 <extension
6 id="application" 6 id="application"
7 point="org.eclipse.core.runtime.applications"> 7 point="org.eclipse.core.runtime.applications">
8 <application> 8 <application>
9 <run 9 <run
10 class="com.google.dart.tools.deploy.DartIDEApplication"> 10 class="com.google.dart.tools.deploy.DartIDEApplication">
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 contextId="org.eclipse.ui.contexts.window" 48 contextId="org.eclipse.ui.contexts.window"
49 schemeId="com.google.dart.tools.dartAcceleratorConfiguration" 49 schemeId="com.google.dart.tools.dartAcceleratorConfiguration"
50 sequence="M1+O"> 50 sequence="M1+O">
51 </key> 51 </key>
52 <key 52 <key
53 commandId="com.google.dart.tools.ui.omnibox" 53 commandId="com.google.dart.tools.ui.omnibox"
54 schemeId="com.google.dart.tools.dartAcceleratorConfiguration" 54 schemeId="com.google.dart.tools.dartAcceleratorConfiguration"
55 sequence="M1+3"> 55 sequence="M1+3">
56 </key> 56 </key>
57 <key 57 <key
58 commandId="com.google.dart.tools.debug.ui.run" 58 commandId="com.google.dart.tools.debug.ui.run.last"
59 schemeId="com.google.dart.tools.dartAcceleratorConfiguration" 59 schemeId="com.google.dart.tools.dartAcceleratorConfiguration"
60 sequence="M1+R"> 60 sequence="M1+R">
61 </key> 61 </key>
62 <key 62 <key
63 commandId="com.google.dart.tools.debug.ui.run.selection"
64 schemeId="com.google.dart.tools.dartAcceleratorConfiguration"
65 sequence="M1+M2+R">
66 </key>
67 <key
63 commandId="com.google.dart.tools.ui.generateJavascript" 68 commandId="com.google.dart.tools.ui.generateJavascript"
64 schemeId="com.google.dart.tools.dartAcceleratorConfiguration" 69 schemeId="com.google.dart.tools.dartAcceleratorConfiguration"
65 sequence="M1+M2+G"> 70 sequence="M1+M2+G">
66 </key> 71 </key>
67 <key 72 <key
68 commandId="com.google.dart.tools.debug.ui.launchDialog" 73 commandId="com.google.dart.tools.debug.ui.launchDialog"
69 schemeId="com.google.dart.tools.dartAcceleratorConfiguration" 74 schemeId="com.google.dart.tools.dartAcceleratorConfiguration"
70 sequence="M1+SHIFT+M"> 75 sequence="M1+SHIFT+M">
71 </key> 76 </key>
72 </extension> 77 </extension>
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 content-type="org.eclipse.core.runtime.text" 243 content-type="org.eclipse.core.runtime.text"
239 file-extensions="css"> 244 file-extensions="css">
240 </file-association> 245 </file-association>
241 <file-association 246 <file-association
242 content-type="org.eclipse.core.runtime.text" 247 content-type="org.eclipse.core.runtime.text"
243 file-extensions="js"> 248 file-extensions="js">
244 </file-association> 249 </file-association>
245 </extension> 250 </extension>
246 251
247 </plugin> 252 </plugin>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698