Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Zarna2008-08-19 14:45:06 +0000
committerTomasz Zarna2008-08-19 14:45:06 +0000
commit2dff16532117811cae893a859e807c4b12791878 (patch)
treeedb803cd4075b703c199d3c645ccaa86baa666f1 /bundles
parent38c34df2f56eb9ad004f60d0824727a87acd3d45 (diff)
downloadeclipse.platform.team-2dff16532117811cae893a859e807c4b12791878.tar.gz
eclipse.platform.team-2dff16532117811cae893a859e807c4b12791878.tar.xz
eclipse.platform.team-2dff16532117811cae893a859e807c4b12791878.zip
bug 241539: Key binding for "Compare with Other" dialog
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.compare/plugins/org.eclipse.compare/plugin.properties2
-rw-r--r--bundles/org.eclipse.compare/plugins/org.eclipse.compare/plugin.xml7
2 files changed, 9 insertions, 0 deletions
diff --git a/bundles/org.eclipse.compare/plugins/org.eclipse.compare/plugin.properties b/bundles/org.eclipse.compare/plugins/org.eclipse.compare/plugin.properties
index 9cb5a37cd..b52898939 100644
--- a/bundles/org.eclipse.compare/plugins/org.eclipse.compare/plugin.properties
+++ b/bundles/org.eclipse.compare/plugins/org.eclipse.compare/plugin.properties
@@ -74,6 +74,8 @@ Command.selectPreviousChange.description= Select Previous Change
Command.ignoreWhiteSpace.name= Ignore White Space
Command.ignoreWhiteSpace.description= Ignore white space where applicable
+Command.compareWithOther.name= Compare With Other Resource
+Command.compareWithOther.description= Compare resources, clipboard contents or editors
#
# Context menu & actions
diff --git a/bundles/org.eclipse.compare/plugins/org.eclipse.compare/plugin.xml b/bundles/org.eclipse.compare/plugins/org.eclipse.compare/plugin.xml
index 91c8be4d0..e37a2fd26 100644
--- a/bundles/org.eclipse.compare/plugins/org.eclipse.compare/plugin.xml
+++ b/bundles/org.eclipse.compare/plugins/org.eclipse.compare/plugin.xml
@@ -164,6 +164,12 @@
id="org.eclipse.compare.ignoreWhiteSpace"
name="%Command.ignoreWhiteSpace.name">
</command>
+ <command
+ categoryId="org.eclipse.compare.ui.category.compare"
+ description="%Command.compareWithOther.description"
+ id="org.eclipse.compare.compareWithOther"
+ name="%Command.compareWithOther.name">
+ </command>
</extension>
<extension
@@ -203,6 +209,7 @@
</action>
<action
class="org.eclipse.compare.internal.CompareWithOtherResourceAction"
+ definitionId="org.eclipse.compare.compareWithOther"
enablesFor="+"
id="compareWithOtherResource"
label="%CompareWithOtherResource.label"

Back to the top