Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MonoDevelop.SourceEditor.addin.xml « MonoDevelop.SourceEditor2 « addins « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2bae84f1f84256df72d816cf86c18d204dab0ae5 (plain)
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
<ExtensionModel>
	
	<!-- Extension points --> 

	<ExtensionPoint path = "/MonoDevelop/SourceEditor2/ContextMenu/Editor" name = "Editor context menu">
		<Description>Context menu for the editor.</Description>;
		<ExtensionNodeSet id="MonoDevelop.Components.Commands.ItemSet" />
		<ConditionType id="FileType" type="MonoDevelop.Ide.Extensions.FileTypeCondition">
			<Description>Type of the file being edited.</Description>
		</ConditionType>
	</ExtensionPoint>

	<ExtensionPoint path = "/MonoDevelop/SourceEditor2/ContextMenu/NavigationBar" name = "Navigation bar context menu">
		<Description>Context menu for the navigation bar.</Description>
		<ExtensionNodeSet id="MonoDevelop.Components.Commands.ItemSet" />
	</ExtensionPoint>

	<ExtensionPoint path = "/MonoDevelop/SourceEditor2/ContextMenu/Scrollbar" name = "Scroll bar context menu">
		<Description>Context menu for the navigation bar.</Description>
		<ExtensionNodeSet id="MonoDevelop.Components.Commands.ItemSet" />
	</ExtensionPoint>

	<ExtensionPoint path = "/MonoDevelop/SourceEditor2/IconContextMenu/Editor" name = "Editor context menu">
		<Description>Context menu for the editor's icon margin.</Description>
		<ExtensionNodeSet id="MonoDevelop.Components.Commands.ItemSet" />
		<ConditionType id="FileType" type="MonoDevelop.Ide.Extensions.FileTypeCondition">
			<Description>Type of the file being edited.</Description>
		</ConditionType>
	</ExtensionPoint>

	<ExtensionPoint path = "/MonoDevelop/SourceEditor2/EditActions" name = "Custom edit actions">
		<Description>Custom edit actions for the editor.</Description>
		<ExtensionNode name="EditAction" type="MonoDevelop.SourceEditor.Codons.EditActionCodon"/>
	</ExtensionPoint>

	<ExtensionPoint path = "/MonoDevelop/SourceEditor2/Formatters" name = "Formatters">
		<Description>Custom edit actions for the editor.</Description>
		<ExtensionNode name="Class" />
	</ExtensionPoint>

	<ExtensionPoint path = "/MonoDevelop/SourceEditor2/TooltipProviders" name = "Tooltip providers">
		<Description>Tooltip providers. Classes must implement ITooltipProvider.</Description>
		<ExtensionNode name="Class" />
		<ConditionType id="FileType" type="MonoDevelop.Ide.Extensions.FileTypeCondition">
			<Description>Type of the file being edited.</Description>
		</ConditionType>
	</ExtensionPoint>

	<ExtensionPoint path = "/MonoDevelop/SourceEditor2/SyntaxModes" name = "Text editor syntax modes">
		<Description>Syntax modes</Description>
		<ExtensionNode name="Templates" type="MonoDevelop.SourceEditor.Extension.TemplateCodon"/>
	</ExtensionPoint>

	<ExtensionPoint path = "/MonoDevelop/SourceEditor2/Styles" name = "Text editor styles">
		<Description>Styles</Description>
		<ExtensionNode name="Templates" type="MonoDevelop.SourceEditor.Extension.TemplateCodon"/>
	</ExtensionPoint>

	<ExtensionPoint path = "/MonoDevelop/SourceEditor2/CustomModes" name = "Text editor custom syntax modes">
		<Description>Styles</Description>
		<ExtensionNode name="SyntaxMode" type="MonoDevelop.SourceEditor.SyntaxModeCodon"/>
	</ExtensionPoint>

	<!-- Extensions -->
	<Extension path = "/MonoDevelop/SourceEditor2/TooltipProviders">
		<Class id="Debug" class="MonoDevelop.SourceEditor.DebugValueTooltipProvider" />
		<Class id="CompileError" class="MonoDevelop.SourceEditor.CompileErrorTooltipProvider" />
	</Extension>

	<Extension path = "/MonoDevelop/Ide/Commands">
		<Command id = "MonoDevelop.SourceEditor.SourceEditorCommands.MarkerOperations"
		         defaultHandler = "MonoDevelop.SourceEditor.MarkerOperationsHandler"
		         _label = "MarkerOperations"
		         type = "array"/> 
		<Category _name = "Code Navigation" id = "CodeNavigation">
			<Command id = "MonoDevelop.SourceEditor.SourceEditorCommands.NextIssue"
						_label = "Next Issue in File" 
						shortcut = "Alt|Page_Down"
						macShortcut = "Alt|Page_Down"
			/>
			<Command id = "MonoDevelop.SourceEditor.SourceEditorCommands.PrevIssue"
						_label = "Previous Issue in File" 
						shortcut = "Alt|Page_Up"
						macShortcut = "Alt|Page_Up"
			/>
			<Command id = "MonoDevelop.SourceEditor.SourceEditorCommands.NextIssueError"
						_label = "Next Error" 
						shortcut = "Alt|Shift|Page_Down"
						macShortcut = "Alt|Shift|Page_Down"
			/>
			<Command id = "MonoDevelop.SourceEditor.SourceEditorCommands.PrevIssueError"
						_label = "Previous Error" 
						shortcut = "Alt|Shift|Page_Up"
						macShortcut = "Alt|Shift|Page_Up"
			/>
		</Category>
	</Extension>

	<Extension path = "/MonoDevelop/Ide/Commands/TextEditor">
		<Command id = "MonoDevelop.SourceEditor.SourceEditorCommands.DynamicAbbrev"
				defaultHandler = "MonoDevelop.SourceEditor.DynamicAbbrevHandler"
				_label = "Dynamic abbrev"
				_description = "Cycles completing the current word from matching words in all open files"
				macShortcut = "Ctrl|/"
				shortcut = "Alt|/" />
		<Command id = "MonoDevelop.SourceEditor.SourceEditorCommands.PulseCaret"
				_label = "Find caret"
				_description = "Animates the text editor caret to help find it"
				shortcut = "Ctrl||"
				macShortcut = "Meta||" />
		<Command id = "MonoDevelop.SourceEditor.SourceEditorCommands.ToggleErrorTextMarker"
				_label = "Toggle message bubble"
				_description = "Toggles message bubble on/off"/>
		
		<Command id = "MonoDevelop.SourceEditor.MessageBubbleCommands.HideIssues"
				defaultHandler = "MonoDevelop.SourceEditor.HideIssuesHandler"
				_label = "_Hide Issues"/>

		<Command id = "MonoDevelop.SourceEditor.MessageBubbleCommands.ToggleIssues"
				defaultHandler = "MonoDevelop.SourceEditor.ToggleIssuesHandler"
				_label = "Toggle Issues"
				type="array"/>

		<Command id = "MonoDevelop.SourceEditor.QuickTasks.ScrollbarCommand.Top"
				_label = "_Top"/>
		<Command id = "MonoDevelop.SourceEditor.QuickTasks.ScrollbarCommand.Bottom"
				_label = "_Bottom"/>
		<Command id = "MonoDevelop.SourceEditor.QuickTasks.ScrollbarCommand.PgUp"
				_label = "_Page Up"/>
		<Command id = "MonoDevelop.SourceEditor.QuickTasks.ScrollbarCommand.PgDown"
				_label = "P_age Down"/>
		<Command id = "MonoDevelop.SourceEditor.QuickTasks.ScrollbarCommand.ShowTasks"
				_label = "Show _Tasks"
				type="radio"/>
		<Command id = "MonoDevelop.SourceEditor.QuickTasks.ScrollbarCommand.ShowMinimap"
				_label = "Show _Minimap"
				type="radio"/>
	</Extension>

	<Extension path = "/MonoDevelop/Ide/DisplayBindings">
		<DisplayBinding
			id = "TextEditor"
			insertafter ="DefaultDisplayBinding"
			class = "MonoDevelop.SourceEditor.SourceEditorDisplayBinding" />
	</Extension>

	<Extension path = "/MonoDevelop/SourceEditor2/ContextMenu/Editor">
		<CommandItem id = "MonoDevelop.SourceEditor.SourceEditorCommands.MarkerOperations" />
		<CommandItem id = "MonoDevelop.Debugger.DebugCommands.ExpressionEvaluator" />
		<SeparatorItem id = "Separator1" />
		<CommandItem id = "MonoDevelop.Debugger.DebugCommands.RunToCursor" />
		<CommandItem id = "MonoDevelop.Debugger.DebugCommands.SetNextStatement" />
		<CommandItem id = "MonoDevelop.Debugger.DebugCommands.ShowNextStatement" />
		<SeparatorItem id = "Separator2" />
		<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.Cut" />
		<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.Copy" />
		<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.Paste" />
		<SeparatorItem id = "Separator3" />
		<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.ToggleCodeComment" />
		<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.IndentSelection" />
		<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.UnIndentSelection" />
		<SeparatorItem id = "Separator4" />
		<CommandItem id = "MonoDevelop.Ide.Commands.TextEditorCommands.ShowCodeTemplateWindow" />
	</Extension>

	<Extension path = "/MonoDevelop/SourceEditor2/ContextMenu/Scrollbar">
		<CommandItem id = "MonoDevelop.SourceEditor.QuickTasks.ScrollbarCommand.Top" />
		<CommandItem id = "MonoDevelop.SourceEditor.QuickTasks.ScrollbarCommand.Bottom" />
		<SeparatorItem id = "Separator1" />
		<CommandItem id = "MonoDevelop.SourceEditor.QuickTasks.ScrollbarCommand.PgUp" />
		<CommandItem id = "MonoDevelop.SourceEditor.QuickTasks.ScrollbarCommand.PgDown" />
		<SeparatorItem id = "Separator2" />
		<CommandItem id = "MonoDevelop.SourceEditor.QuickTasks.ScrollbarCommand.ShowTasks" />
		<CommandItem id = "MonoDevelop.SourceEditor.QuickTasks.ScrollbarCommand.ShowMinimap" />
	</Extension>

	<Extension path = "/MonoDevelop/SourceEditor2/ContextMenu/NavigationBar">
		<CommandItem id = "MonoDevelop.SourceEditor.NavigationBarCommands.ToggleNavPanelViews" />
	</Extension>

	<Extension path = "/MonoDevelop/SourceEditor2/IconContextMenu/Editor">
		<CommandItem id = "MonoDevelop.Ide.Commands.SearchCommands.ToggleBookmark" />
		<CommandItem id = "MonoDevelop.Ide.Commands.SearchCommands.ClearBookmarks" />
		<SeparatorItem id = "Separator1" />
		<CommandItem id = "MonoDevelop.Debugger.DebugCommands.NewBreakpoint" />
		<CommandItem id = "MonoDevelop.Debugger.DebugCommands.RemoveBreakpoint" />
		<CommandItem id = "MonoDevelop.Debugger.DebugCommands.ToggleBreakpoint" />
		<CommandItem id = "MonoDevelop.Debugger.DebugCommands.EnableDisableBreakpoint" />
		<CommandItem id = "MonoDevelop.Debugger.DebugCommands.DisableAllBreakpoints" />
		<CommandItem id = "MonoDevelop.Debugger.DebugCommands.ClearAllBreakpoints" />
		<CommandItem id = "MonoDevelop.Debugger.DebugCommands.ShowBreakpointProperties" />
		<CommandItem id = "MonoDevelop.SourceEditor.SourceEditorCommands.ToggleErrorTextMarker" />
	</Extension>

	<Extension path="/MonoDevelop/Ide/GlobalOptionsDialog/TextEditor">
		<Section id="General" insertbefore="Formatting" _label="General" fill="true" class="MonoDevelop.SourceEditor.OptionPanels.GeneralOptionsPanel" icon="md-prefs-text-editor-general" />
		<Section id="Markers" _label="Markers and Rulers" class="MonoDevelop.SourceEditor.OptionPanels.MarkerPanel" icon="md-prefs-markers-rulers" />
		<Section id="Behavior" _label="Behavior" class="MonoDevelop.SourceEditor.OptionPanels.BehaviorPanel" icon="md-prefs-text-editor-behavior" />
		<Section id="CodeCompletion" _label="Code Completion" icon="md-prefs-completion-behavior">
			<Panel id="CompletionBehavior" _label="Behavior" class="MonoDevelop.SourceEditor.OptionPanels.CompletionOptionsPanel" icon="md-prefs-completion-behavior" />
			<!-- <Section id="CompletionCharacters" _label="Completion Characters" class="MonoDevelop.SourceEditor.OptionPanels.CompletionCharactersPanel" /> -->
			<Panel id="CompletionAppearance" _label="Appearance" class="MonoDevelop.SourceEditor.OptionPanels.CompletionAppearancePanel" icon="md-prefs-completion-appearance" />
		</Section>
		<Section id="SyntaxHighlighting" _label="Syntax Highlighting" fill="true" class="MonoDevelop.SourceEditor.OptionPanels.HighlightingPanel" icon="md-prefs-syntax-highlighting" />
	</Extension>

	<Extension path = "/MonoDevelop/Ide/MainMenu/View">
		<ItemSet id = "MessageBubbles" _label = "_Message Bubbles" insertafter="MonoDevelop.Ide.Commands.ViewCommands.ViewList" insertbefore="ViewSeparator3">
			<CommandItem id = "MonoDevelop.SourceEditor.SourceEditorCommands.ToggleErrorTextMarker" />
			<CommandItem id = "MonoDevelop.SourceEditor.MessageBubbleCommands.HideIssues" />
			<SeparatorItem id = "Separator1" />
			<CommandItem id = "MonoDevelop.SourceEditor.MessageBubbleCommands.ToggleIssues" />
		</ItemSet>
	</Extension>
	
	<Extension path = "/MonoDevelop/Ide/MainMenu/Search">
		<ItemSet id = "Inspect" _label = "Inspect" insertafter="MonoDevelop.Ide.Commands.ViewCommands.ShowNext" insertbefore="Separator3">
			<CommandItem id = "MonoDevelop.SourceEditor.SourceEditorCommands.NextIssue" />
			<CommandItem id = "MonoDevelop.SourceEditor.SourceEditorCommands.PrevIssue" />
			<CommandItem id = "MonoDevelop.SourceEditor.SourceEditorCommands.NextIssueError" />
			<CommandItem id = "MonoDevelop.SourceEditor.SourceEditorCommands.PrevIssueError" />
		</ItemSet>
	</Extension>

	<Extension path = "/MonoDevelop/Ide/TextEditorExtensions">
		<Class fileExtensions = ".json" class = "MonoDevelop.SourceEditor.JSon.JSonTextEditorExtension" />
	</Extension>

	<Extension path = "/MonoDevelop/Core/UserDataMigration">
		<!-- 2.4 -->
		<Migration sourceVersion="2.4" kind="UserData" path="syntaxmodes" targetPath="HighlightingSchemes" isDirectory="true" />
		<!-- 2.6+ -->
		<Migration sourceVersion="2.6+" kind="UserData" path="HighlightingSchemes" isDirectory="true" />
	</Extension>

	<Extension path = "/MonoDevelop/Core/StockIcons">
		<StockIcon stockid="md-prefs-markers-rulers" resource="prefs-markers-rulers-16.png" size="Menu" />
		<StockIcon stockid="md-prefs-syntax-highlighting" resource="prefs-syntax-highlighting-16.png" size="Menu" />
		<StockIcon stockid="md-prefs-text-editor-general" resource="prefs-text-editor-general-16.png" size="Menu" />
		<StockIcon stockid="md-prefs-text-editor-behavior" resource="prefs-text-editor-behavior-16.png" size="Menu" />
		<StockIcon stockid="md-prefs-completion-appearance" resource="prefs-completion-appearance-16.png" size="Menu" />
		<StockIcon stockid="md-prefs-completion-behavior" resource="prefs-completion-behavior-16.png" size="Menu" />
	</Extension>
	
</ExtensionModel>