Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#909] Add missing keys for enabling go to next / previous annotation actions #910

Merged
merged 4 commits into from
Feb 9, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion org.eclipse.lsp4e/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Language Server Protocol client for Eclipse IDE (Incubation)
Bundle-SymbolicName: org.eclipse.lsp4e;singleton:=true
Bundle-Version: 0.18.3.qualifier
Bundle-Version: 0.18.4.qualifier
Bundle-RequiredExecutionEnvironment: JavaSE-17
Require-Bundle: org.eclipse.core.runtime;bundle-version="3.12.0",
org.eclipse.equinox.common;bundle-version="3.8.0",
Expand Down
99 changes: 57 additions & 42 deletions org.eclipse.lsp4e/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -480,52 +480,67 @@
<type name="org.eclipse.lsp4e.text"></type>
</extension>
<extension point="org.eclipse.ui.editors.markerAnnotationSpecification">
<specification annotationType="org.eclipse.lsp4e.read"
label="LSP Read Occurrence"
textPreferenceKey="LSP4EReadOccurrenceIndication" textPreferenceValue="false"
highlightPreferenceKey="LSP4EReadOccurrenceHighlighting"
highlightPreferenceValue="true" contributesToHeader="false"
overviewRulerPreferenceKey="LSP4EReadOccurrenceIndicationInOverviewRuler"
overviewRulerPreferenceValue="true"
verticalRulerPreferenceKey="LSP4EReadOccurrenceIndicationInVerticalRuler"
verticalRulerPreferenceValue="false" colorPreferenceKey="LSP4EReadOccurrenceIndicationColor"
colorPreferenceValue="212,212,212" presentationLayer="4"
showInNextPrevDropdownToolbarAction="true"
textStylePreferenceKey="LSP4EReadOccurrenceTextStyle"
textStylePreferenceValue="NONE">
</specification>
<specification annotationType="org.eclipse.lsp4e.read"
label="LSP Read Occurrence"
textPreferenceKey="LSP4EReadOccurrenceIndication" textPreferenceValue="false"
highlightPreferenceKey="LSP4EReadOccurrenceHighlighting"
highlightPreferenceValue="true" contributesToHeader="false"
overviewRulerPreferenceKey="LSP4EReadOccurrenceIndicationInOverviewRuler"
overviewRulerPreferenceValue="true"
verticalRulerPreferenceKey="LSP4EReadOccurrenceIndicationInVerticalRuler"
verticalRulerPreferenceValue="false" colorPreferenceKey="LSP4EReadOccurrenceIndicationColor"
colorPreferenceValue="212,212,212" presentationLayer="4"
showInNextPrevDropdownToolbarAction="true"
showInNextPrevDropdownToolbarActionKey="org.eclipse.lsp4e.read.showInNextPrevDropdownToolbarAction"
isGoToNextNavigationTarget="true"
isGoToNextNavigationTargetKey="org.eclipse.lsp4e.read.isGoToNextNavigationTarget"
isGoToPreviousNavigationTarget="true"
isGoToPreviousNavigationTargetKey="org.eclipse.lsp4e.read.isGoToPreviousNavigationTarget"
textStylePreferenceKey="LSP4EReadOccurrenceTextStyle"
textStylePreferenceValue="NONE">
</specification>
</extension>
<extension point="org.eclipse.ui.editors.markerAnnotationSpecification">
<specification annotationType="org.eclipse.lsp4e.write"
label="LSP Write Occurrence"
textPreferenceKey="LSP4EWriteOccurrenceIndication" textPreferenceValue="false"
highlightPreferenceKey="LSP4EWriteOccurrenceHighlighting"
highlightPreferenceValue="true" contributesToHeader="false"
overviewRulerPreferenceKey="LSP4EWriteOccurrenceIndicationInOverviewRuler"
overviewRulerPreferenceValue="true"
verticalRulerPreferenceKey="LSP4EWriteOccurrenceIndicationInVerticalRuler"
verticalRulerPreferenceValue="false" colorPreferenceKey="LSP4EWriteOccurrenceIndicationColor"
colorPreferenceValue="240,216,168" presentationLayer="4"
showInNextPrevDropdownToolbarAction="true"
textStylePreferenceKey="LSP4EWriteOccurrenceTextStyle"
textStylePreferenceValue="NONE">
</specification>
<specification annotationType="org.eclipse.lsp4e.write"
label="LSP Write Occurrence"
textPreferenceKey="LSP4EWriteOccurrenceIndication" textPreferenceValue="false"
highlightPreferenceKey="LSP4EWriteOccurrenceHighlighting"
highlightPreferenceValue="true" contributesToHeader="false"
overviewRulerPreferenceKey="LSP4EWriteOccurrenceIndicationInOverviewRuler"
overviewRulerPreferenceValue="true"
verticalRulerPreferenceKey="LSP4EWriteOccurrenceIndicationInVerticalRuler"
verticalRulerPreferenceValue="false" colorPreferenceKey="LSP4EWriteOccurrenceIndicationColor"
colorPreferenceValue="240,216,168" presentationLayer="4"
showInNextPrevDropdownToolbarAction="true"
showInNextPrevDropdownToolbarActionKey="org.eclipse.lsp4e.write.showInNextPrevDropdownToolbarAction"
isGoToNextNavigationTarget="true"
isGoToNextNavigationTargetKey="org.eclipse.lsp4e.write.isGoToNextNavigationTarget"
isGoToPreviousNavigationTarget="true"
isGoToPreviousNavigationTargetKey="org.eclipse.lsp4e.write.isGoToPreviousNavigationTarget"
textStylePreferenceKey="LSP4EWriteOccurrenceTextStyle"
textStylePreferenceValue="NONE">
</specification>
</extension>
<extension point="org.eclipse.ui.editors.markerAnnotationSpecification">
<specification annotationType="org.eclipse.lsp4e.text"
label="LSP Text Occurrence"
textPreferenceKey="LSP4ETextOccurrenceIndication" textPreferenceValue="false"
highlightPreferenceKey="LSP4ETextOccurrenceHighlighting"
highlightPreferenceValue="true" contributesToHeader="false"
overviewRulerPreferenceKey="LSP4ETextOccurrenceIndicationInOverviewRuler"
overviewRulerPreferenceValue="true"
verticalRulerPreferenceKey="LSP4ETextOccurrenceIndicationInVerticalRuler"
verticalRulerPreferenceValue="false" colorPreferenceKey="LSP4ETextOccurrenceIndicationColor"
colorPreferenceValue="212,212,212" presentationLayer="4"
showInNextPrevDropdownToolbarAction="true"
textStylePreferenceKey="LSP4ETextOccurrenceTextStyle"
textStylePreferenceValue="NONE">
</specification>
<specification annotationType="org.eclipse.lsp4e.text"
label="LSP Text Occurrence"
textPreferenceKey="LSP4ETextOccurrenceIndication" textPreferenceValue="false"
highlightPreferenceKey="LSP4ETextOccurrenceHighlighting"
highlightPreferenceValue="true" contributesToHeader="false"
overviewRulerPreferenceKey="LSP4ETextOccurrenceIndicationInOverviewRuler"
overviewRulerPreferenceValue="true"
verticalRulerPreferenceKey="LSP4ETextOccurrenceIndicationInVerticalRuler"
verticalRulerPreferenceValue="false" colorPreferenceKey="LSP4ETextOccurrenceIndicationColor"
colorPreferenceValue="212,212,212" presentationLayer="4"
showInNextPrevDropdownToolbarAction="true"
showInNextPrevDropdownToolbarActionKey="org.eclipse.lsp4e.text.showInNextPrevDropdownToolbarAction"
isGoToNextNavigationTarget="true"
isGoToNextNavigationTargetKey="org.eclipse.lsp4e.text.isGoToNextNavigationTarget"
isGoToPreviousNavigationTarget="true"
isGoToPreviousNavigationTargetKey="org.eclipse.lsp4e.text.isGoToPreviousNavigationTarget"
textStylePreferenceKey="LSP4ETextOccurrenceTextStyle"
textStylePreferenceValue="NONE">
</specification>
</extension>
<extension
point="org.eclipse.core.expressions.propertyTesters">
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.lsp4e/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</parent>
<artifactId>org.eclipse.lsp4e</artifactId>
<packaging>eclipse-plugin</packaging>
<version>0.18.3-SNAPSHOT</version>
<version>0.18.4-SNAPSHOT</version>

<build>
<plugins>
Expand Down