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: 160d03feb4a8740bcc0503f71a8c95152cfd83c2 (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
<Addin id          = "SourceEditor2"
       namespace   = "MonoDevelop"
       name        = "MonoDevelop Source Editor"
       author      = "Mike Krüger"
       copyright   = ""
       url         = ""
       description = "Provides a text editor for the MonoDevelop based on Mono.TextEditor"
       category    = "MonoDevelop Core"
       flags       = "Hidden"
       version     = "2.8.3">
	
	<Runtime>
		<Import assembly="MonoDevelop.SourceEditor2.dll"/>
	</Runtime>
	
	<Dependencies>
	    <Addin id="Core" version="2.8.3"/>
		<Addin id="Ide" version="2.8.3"/>
		<Addin id="Debugger" version="2.8.3"/>
	</Dependencies>

	<!-- 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/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="LanguageItem" class="MonoDevelop.SourceEditor.LanguageItemTooltipProvider" />
		<Class id="CompileError" class="MonoDevelop.SourceEditor.CompileErrorTooltipProvider" />
	</Extension>
	
	<Extension path = "/MonoDevelop/Ide/Commands">
		<Command id = "MonoDevelop.SourceEditor.SourceEditorCommands.MarkerOperations"
		         defaultHandler = "MonoDevelop.SourceEditor.MarkerOperationsHandler"
		         _label = ""
		         type = "array"/> 
	</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 = "Meta|/"
				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.SourceEditorCommands.ToggleCodeFocus"
				_label = "Toggle code focus"
				_description = "Activates code focus on caret move"
				shortcut = "Ctrl|Shift|k"
				macShortcut = "Meta|Shift|k" />
				
		<Command id = "MonoDevelop.SourceEditor.NavigationBarCommands.ToggleNavPanelViews"
				defaultHandler = "MonoDevelop.SourceEditor.ToggleNavPanelViewsHandler"
				_label = ""
				type="array"/>
				
		<Command id = "MonoDevelop.SourceEditor.MessageBubbleCommands.HideIssues"
				defaultHandler = "MonoDevelop.SourceEditor.HideIssuesHandler"
				_label = "_Hide Issues"/>
		
		<Command id = "MonoDevelop.SourceEditor.MessageBubbleCommands.ToggleIssues"
				defaultHandler = "MonoDevelop.SourceEditor.ToggleIssuesHandler"
				_label = ""
				type="array"/>
				
	</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.Ide.Commands.EditCommands.Cut" />
		<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.Copy" />
		<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.Paste" />
		<SeparatorItem id = "Separator2" />
		<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.ToggleCodeComment" />
		<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.IndentSelection" />
		<CommandItem id = "MonoDevelop.Ide.Commands.EditCommands.UnIndentSelection" />
		<SeparatorItem id = "Separator3" />
		<CommandItem id = "MonoDevelop.SourceEditor.SourceEditorCommands.ToggleCodeFocus" />
		<CommandItem id = "MonoDevelop.Ide.Commands.TextEditorCommands.ShowCodeTemplateWindow" />
	</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" icon="md-text-editor" fill="true" class = "MonoDevelop.SourceEditor.OptionPanels.GeneralOptionsPanel"/>
		<Section id = "Markers" _label = "Markers and Rulers" icon="md-markers-rulers" class = "MonoDevelop.SourceEditor.OptionPanels.MarkerPanel"/>
		<Section id = "Behavior" _label = "Behavior" icon="md-text-editor-behavior" class = "MonoDevelop.SourceEditor.OptionPanels.BehaviorPanel"/>
		<Section id = "SyntaxHighlighting" _label = "Syntax Highlighting" fill="true" icon="md-syntax-highlighting" class = "MonoDevelop.SourceEditor.OptionPanels.HighlightingPanel"/>
	</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/Fonts">
		<Font name ="MessageBubbles" _displayName="Message bubbles" default ="_DEFAULT_SANS"/>
		<Font name ="LanguageTooltips" _displayName="Editor tooltips" default ="_DEFAULT_SANS"/>
	</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>
</Addin>