File: plugin.xml

package info (click to toggle)
eclipse-cdt 9.9.0-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, sid
  • size: 145,456 kB
  • sloc: java: 1,114,843; xml: 64,727; javascript: 18,756; cpp: 5,269; ansic: 3,171; makefile: 1,508; asm: 814; sh: 295; f90: 22; python: 5
file content (45 lines) | stat: -rw-r--r-- 1,772 bytes parent folder | download
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
<plugin>
<extension point="org.eclipse.core.contenttype.contentTypes">
		<content-type id="org.eclipse.cdt.meson" name="%content-type.meson"
       base-type="org.eclipse.core.runtime.text" file-names="meson.build, meson_options.txt" />
       <content-type id="org.eclipse.cdt.ninja" name="%content-type.ninja"
       base-type="org.eclipse.core.runtime.text" file-extensions="ninja" />
</extension>
<extension
      point="org.eclipse.tm4e.registry.grammars">
   <grammar
   		scopeName="source.meson"
        path="syntaxes/meson.json" />
   <scopeNameContentTypeBinding
         contentTypeId="org.eclipse.cdt.meson"
         scopeName="source.meson" />
   <grammar
   		scopeName="source.ninja"
        path="syntaxes/ninja.tmLanguage" />
   <scopeNameContentTypeBinding
         contentTypeId="org.eclipse.cdt.ninja"
         scopeName="source.ninja" />
</extension>
<extension
         point="org.eclipse.ui.editors">
      <editorContentTypeBinding
            contentTypeId="org.eclipse.cdt.meson"
            editorId="org.eclipse.ui.genericeditor.GenericEditor">
      </editorContentTypeBinding>
      <editorContentTypeBinding
            contentTypeId="org.eclipse.cdt.ninja"
            editorId="org.eclipse.ui.genericeditor.GenericEditor">
      </editorContentTypeBinding>
</extension>
 <extension
         point="org.eclipse.ui.genericeditor.presentationReconcilers">
      <presentationReconciler
            class="org.eclipse.tm4e.ui.text.TMPresentationReconciler"
            contentType="org.eclipse.cdt.meson">
      </presentationReconciler>
      <presentationReconciler
            class="org.eclipse.tm4e.ui.text.TMPresentationReconciler"
            contentType="org.eclipse.cdt.ninja">
      </presentationReconciler>
</extension>
</plugin>