Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDirk Baeumer2005-03-23 14:42:50 +0000
committerDirk Baeumer2005-03-23 14:42:50 +0000
commit53dac3f66395eb53177fc34813ccb023f8003153 (patch)
treea3507b640215987766c3fdb684238d818f869e28 /org.eclipse.search/plugin.xml
parentc4666272f70358cc2bedb3c4c9e5efbb26fb9e8c (diff)
downloadeclipse.platform.text-53dac3f66395eb53177fc34813ccb023f8003153.tar.gz
eclipse.platform.text-53dac3f66395eb53177fc34813ccb023f8003153.tar.xz
eclipse.platform.text-53dac3f66395eb53177fc34813ccb023f8003153.zip
Render filtered matches differently
Diffstat (limited to 'org.eclipse.search/plugin.xml')
-rw-r--r--org.eclipse.search/plugin.xml44
1 files changed, 44 insertions, 0 deletions
diff --git a/org.eclipse.search/plugin.xml b/org.eclipse.search/plugin.xml
index 87e202ce6b8..28e09e8151a 100644
--- a/org.eclipse.search/plugin.xml
+++ b/org.eclipse.search/plugin.xml
@@ -60,6 +60,28 @@
</imageprovider>
</extension>
+ <extension point="org.eclipse.core.resources.markers" id="filteredsearchmarker" name="%filteredSearchMarker">
+ <super type="org.eclipse.core.resources.textmarker"/>
+ <attribute name="line"/>
+ <attribute name="potentialMatch"/>
+ </extension>
+
+ <extension point="org.eclipse.ui.editors.annotationTypes">
+ <type
+ name="org.eclipse.search.filteredResults"
+ markerType="org.eclipse.search.filteredsearchmarker">
+ </type>
+ </extension>
+
+ <extension
+ point="org.eclipse.ui.ide.markerImageProviders">
+ <imageprovider
+ id="org.eclipse.ui.filteredSearchMarkerProvider"
+ markertype="org.eclipse.search.filteredSearchmarker"
+ icon="icons/full/obj16/searchm_obj.gif">
+ </imageprovider>
+ </extension>
+
<!-- commands and their bindings -->
<extension point="org.eclipse.ui.commands">
<category
@@ -247,6 +269,28 @@
isGoToPreviousNavigationTargetKey="isSearchResultGoToPreviousNavigationTarget"
isGoToPreviousNavigationTarget="false">
</specification>
+ <specification
+ annotationType="org.eclipse.search.filteredResults"
+ label="%FilteredSearchMarkerPreference.label"
+ icon="icons/full/obj16/searchm_obj.gif"
+ textPreferenceKey="filteredSearchResultIndication"
+ textPreferenceValue="false"
+ highlightPreferenceKey="filteredSearchResultHighlighting"
+ highlightPreferenceValue="false"
+ overviewRulerPreferenceKey="filteredSearchResultIndicationInOverviewRuler"
+ overviewRulerPreferenceValue="false"
+ verticalRulerPreferenceKey="filteredSearchResultIndicationInVerticalRuler"
+ verticalRulerPreferenceValue="false"
+ colorPreferenceKey="filteredSearchResultIndicationColor"
+ colorPreferenceValue="237,237,252"
+ presentationLayer="3"
+ showInNextPrevDropdownToolbarActionKey="showFilteredSearchResultInNextPrevDropdownToolbarAction"
+ showInNextPrevDropdownToolbarAction="false"
+ isGoToNextNavigationTargetKey="isFilteredSearchResultGoToNextNavigationTarget"
+ isGoToNextNavigationTarget="false"
+ isGoToPreviousNavigationTargetKey="isFilteredSearchResultGoToPreviousNavigationTarget"
+ isGoToPreviousNavigationTarget="false">
+ </specification>
</extension>
<extension point="org.eclipse.core.runtime.adapters">

Back to the top