Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2003-11-14 19:07:15 +0000
committerDarin Wright2003-11-14 19:07:15 +0000
commit341c947ea5d856b2470a6eb91cdd5aa68f029d53 (patch)
tree0c68a49629300ecc82bf18d3306cf33d4eff7e10 /org.eclipse.debug.ui/plugin.xml
parentb62b3067de7dfbe125a285131575ac89d803c8bf (diff)
downloadeclipse.platform.debug-341c947ea5d856b2470a6eb91cdd5aa68f029d53.tar.gz
eclipse.platform.debug-341c947ea5d856b2470a6eb91cdd5aa68f029d53.tar.xz
eclipse.platform.debug-341c947ea5d856b2470a6eb91cdd5aa68f029d53.zip
Bug 45656 - New Annotation Features
Diffstat (limited to 'org.eclipse.debug.ui/plugin.xml')
-rw-r--r--org.eclipse.debug.ui/plugin.xml38
1 files changed, 35 insertions, 3 deletions
diff --git a/org.eclipse.debug.ui/plugin.xml b/org.eclipse.debug.ui/plugin.xml
index 3022dd2dc..5d8a9fca9 100644
--- a/org.eclipse.debug.ui/plugin.xml
+++ b/org.eclipse.debug.ui/plugin.xml
@@ -36,7 +36,6 @@
<extension-point id="launchConfigurationTypeImages" name="%LaunchConfigurationTypeImageExtensionName" schema="schema/launchConfigurationTypeImages.exsd"/>
<extension-point id="launchGroups" name="%LaunchGroupsExtensionName" schema="schema/launchGroups.exsd"/>
<extension-point id="launchShortcuts" name="%LaunchShortcutsName" schema="schema/launchShortcuts.exsd"/>
- <extension-point id="launchVariableComponents" name="%LaunchVariableComponentsName"/>
<extension-point id="stringVariablePresentations" name="%StringVariablePresentationsName"/>
<!-- Extensions -->
@@ -1252,8 +1251,7 @@
configuration="org.eclipse.ui.defaultAcceleratorConfiguration">
</keyBinding>
</extension>
- <extension
- point="org.eclipse.ui.editors.markerAnnotationSpecification">
+ <extension point="org.eclipse.ui.editors.markerAnnotationSpecification">
<specification
colorPreferenceValue="0,0,255"
annotationType="org.eclipse.debug.core.breakpoint"
@@ -1267,6 +1265,40 @@
markerSeverity="0"
overviewRulerPreferenceKey="breakpointIndicationInOverviewRuler">
</specification>
+ <specification
+ colorPreferenceValue="0,255,0"
+ annotationType="org.eclipse.debug.core.currentIP"
+ colorPreferenceKey="currentIPColor"
+ verticalRulerPreferenceKey="currentIPVerticalRuler"
+ verticalRulerPreferenceValue="true"
+ overviewRulerPreferenceKey="currentIPOverviewRuler"
+ overviewRulerPreferenceValue="true"
+ highlightPreferenceKey="currentIPHighlight"
+ highlightPreferenceValue="false"
+ markerType="org.eclipse.debug.ui.instructionPointer.current"
+ presentationLayer="6"
+ textPreferenceValue="false"
+ label="%debugCurrentInstructionPointer"
+ textPreferenceKey="currentIPIndication"
+ markerSeverity="0">
+ </specification>
+ <specification
+ colorPreferenceValue="0,128,0"
+ annotationType="org.eclipse.debug.core.secondaryIP"
+ colorPreferenceKey="secondaryIPColor"
+ verticalRulerPreferenceKey="secondaryIPVerticalRuler"
+ verticalRulerPreferenceValue="true"
+ overviewRulerPreferenceKey="secondaryIPOverviewRuler"
+ overviewRulerPreferenceValue="true"
+ highlightPreferenceKey="secondaryIPHighlight"
+ highlightPreferenceValue="false"
+ markerType="org.eclipse.debug.ui.instructionPointer.secondary"
+ presentationLayer="6"
+ textPreferenceValue="false"
+ label="%debugCallStack"
+ textPreferenceKey="secondaryIPIndication"
+ markerSeverity="0">
+ </specification>
</extension>
<!-- Dynamic (String Substitution) Variables -->
<extension

Back to the top