-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathplugin.xml
More file actions
132 lines (132 loc) · 5.46 KB
/
plugin.xml
File metadata and controls
132 lines (132 loc) · 5.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.debug.core.launchConfigurationTypes">
<launchConfigurationType
delegate="org.eclipse.lsp4e.debug.launcher.DSPLaunchDelegate"
id="org.eclipse.lsp4e.debug.launchType"
modes="debug,run"
name="Debug Adapter Launcher"
public="true"
sourceLocatorId="org.eclipse.lsp4e.debug.sourceLocator"
sourcePathComputerId="org.eclipse.lsp4e.debug.sourcePathComputer">
</launchConfigurationType>
</extension>
<extension
point="org.eclipse.debug.ui.launchConfigurationTabGroups">
<launchConfigurationTabGroup
class="org.eclipse.lsp4e.debug.launcher.DSPTabGroup"
description="Debug using the debug protocol"
id="org.eclipse.lsp4e.debug.tabGroup"
type="org.eclipse.lsp4e.debug.launchType">
</launchConfigurationTabGroup>
</extension>
<extension
point="org.eclipse.debug.ui.launchConfigurationTypeImages">
<launchConfigurationTypeImage
configTypeID="org.eclipse.lsp4e.debug.launchType"
icon="icons/pda.svg"
id="org.eclipse.lsp4e.debug.typeImage">
</launchConfigurationTypeImage>
</extension>
<extension
point="org.eclipse.debug.ui.debugModelPresentations">
<debugModelPresentation
class="org.eclipse.lsp4e.debug.presentation.DSPDebugModelPresentation"
id="org.eclipse.lsp4e.debug.model">
</debugModelPresentation>
</extension>
<extension
point="org.eclipse.debug.core.sourceLocators">
<sourceLocator
class="org.eclipse.lsp4e.debug.sourcelookup.DSPSourceLookupDirector"
id="org.eclipse.lsp4e.debug.sourceLocator"
name="LSP4E Debug Source Locator">
</sourceLocator>
</extension>
<extension
point="org.eclipse.debug.core.sourcePathComputers">
<sourcePathComputer
class="org.eclipse.lsp4e.debug.sourcelookup.DSPSourcePathComputerDelegate"
id="org.eclipse.lsp4e.debug.sourcePathComputer">
</sourcePathComputer>
</extension>
<extension
point="org.eclipse.ui.editorActions">
<editorContribution
targetID="org.eclipse.ui.DefaultTextEditor"
id="org.eclipse.lsp4e.debug.textEditor.rulerActions">
<action
label="unusedlabel"
class="org.eclipse.debug.ui.actions.RulerToggleBreakpointActionDelegate"
style="push"
actionID="RulerDoubleClick"
id="org.eclipse.lsp4e.debug.textEditor.doubleClickBreakpointAction"/>
</editorContribution>
<editorContribution
targetID="org.eclipse.ui.genericeditor.GenericEditor"
id="org.eclipse.lsp4e.debug.genericEditor.rulerActions">
<action
label="unusedlabel"
class="org.eclipse.debug.ui.actions.RulerToggleBreakpointActionDelegate"
style="push"
actionID="RulerDoubleClick"
id="org.eclipse.lsp4e.debug.genericEditor.doubleClickBreakpointAction"/>
</editorContribution>
</extension>
<extension
point="org.eclipse.core.runtime.adapters">
<factory
adaptableType="org.eclipse.jface.text.TextSelection"
class="org.eclipse.lsp4e.debug.breakpoints.TextSelectionToIVariable">
<adapter
type="org.eclipse.debug.core.model.IVariable">
</adapter>
</factory>
</extension>
<extension
id="org.eclipse.lsp4e.debug.breakpoints.markerType.lineBreakpoint"
name="LSP4E Debug Line Breakpoint Marker"
point="org.eclipse.core.resources.markers">
<super type="org.eclipse.debug.core.lineBreakpointMarker"/>
<persistent value="true"/>
</extension>
<extension
point="org.eclipse.debug.core.breakpoints">
<breakpoint
class="org.eclipse.lsp4e.debug.breakpoints.DSPLineBreakpoint"
name="LSP4E Debug Line Breakpoint"
markerType="org.eclipse.lsp4e.debug.breakpoints.markerType.lineBreakpoint"
id="org.eclipse.lsp4e.debug.breakpoints.lineBreakpoint"/>
</extension>
<extension point="org.eclipse.debug.ui.toggleBreakpointsTargetFactories">
<toggleTargetFactory
id="org.eclipse.lsp4e.debug.breakpoints.ToggleBreakpointsTargetFactory"
class="org.eclipse.lsp4e.debug.breakpoints.ToggleBreakpointsTargetFactory">
</toggleTargetFactory>
</extension>
<extension
point="org.eclipse.debug.core.watchExpressionDelegates">
<watchExpressionDelegate
debugModel="org.eclipse.lsp4e.debug.model"
delegateClass="org.eclipse.lsp4e.debug.presentation.DAPWatchExpression">
</watchExpressionDelegate>
</extension>
<extension point="org.eclipse.debug.ui.detailPaneFactories">
<detailFactories
id="org.eclipse.lsp4e.debug.detailPaneFactory"
class="org.eclipse.lsp4e.debug.presentation.DSPBreakpointDetailPaneFactory">
<enablement>
<with variable="selection">
<count value="1"/>
<iterate>
<adapt type="org.eclipse.debug.core.model.IBreakpoint">
<instanceof value="org.eclipse.lsp4e.debug.breakpoints.DSPLineBreakpoint"/>
</adapt>
</iterate>
</with>
</enablement>
</detailFactories>
</extension>
</plugin>