RegisterHighlighting() public method

Registers a highlighting definition.
public RegisterHighlighting ( string name, string extensions, Func lazyLoadedHighlighting ) : void
name string The name to register the definition with.
extensions string The file extensions to register the definition for.
lazyLoadedHighlighting Func A function that loads the highlighting definition.
return void
		public void Register(HighlightingManager manager)
		{
			manager.RegisterHighlighting(
				this.Name, this.Extensions, delegate {
					return HighlightingLoader.Load(LoadXshd(), manager);
				});
		}
示例#2
0
        internal static void RegisterBuiltInHighlightings(HighlightingManager.DefaultHighlightingManager hlm)
        {
            hlm.RegisterHighlighting("XmlDoc", null, "XmlDoc.xshd");
            hlm.RegisterHighlighting("C#", new[] { ".cs" }, "CSharp-Mode.xshd");

            hlm.RegisterHighlighting("JavaScript", new[] { ".js" }, "JavaScript-Mode.xshd");
            hlm.RegisterHighlighting("HTML", new[] { ".htm", ".html" }, "HTML-Mode.xshd");
            hlm.RegisterHighlighting("ASP/XHTML", new[] { ".asp", ".aspx", ".asax", ".asmx", ".ascx", ".master" }, "ASPX.xshd");

            hlm.RegisterHighlighting("Boo", new[] { ".boo" }, "Boo.xshd");
            hlm.RegisterHighlighting("Coco", new[] { ".atg" }, "Coco-Mode.xshd");
            hlm.RegisterHighlighting("CSS", new[] { ".css" }, "CSS-Mode.xshd");
            hlm.RegisterHighlighting("C++", new[] { ".c", ".h", ".cc", ".cpp", ".hpp" }, "CPP-Mode.xshd");
            hlm.RegisterHighlighting("Java", new[] { ".java" }, "Java-Mode.xshd");
            hlm.RegisterHighlighting("Patch", new[] { ".patch", ".diff" }, "Patch-Mode.xshd");
            hlm.RegisterHighlighting("PowerShell", new[] { ".ps1", ".psm1", ".psd1" }, "PowerShell.xshd");
            hlm.RegisterHighlighting("PHP", new[] { ".php" }, "PHP-Mode.xshd");
            hlm.RegisterHighlighting("TeX", new[] { ".tex" }, "Tex-Mode.xshd");
            hlm.RegisterHighlighting("VB", new[] { ".vb" }, "VB-Mode.xshd");
            hlm.RegisterHighlighting("XML", (".xml;.xsl;.xslt;.xsd;.manifest;.config;.addin;" +
                                             ".xshd;.wxs;.wxi;.wxl;.proj;.csproj;.vbproj;.ilproj;" +
                                             ".booproj;.build;.xfrm;.targets;.xaml;.xpt;" +
                                             ".xft;.map;.wsdl;.disco;.ps1xml;.nuspec").Split(';'),
                                     "XML-Mode.xshd");
            hlm.RegisterHighlighting("MarkDown", new[] { ".md" }, "MarkDown-Mode.xshd");
        }
示例#3
0
        internal static void RegisterBuiltInHighlightings(HighlightingManager.DefaultHighlightingManager hlm)
        {
            hlm.RegisterHighlighting("XmlDoc", null, "XmlDoc.xshd");
            hlm.RegisterHighlighting("C#", new[] { ".cs" }, "CSharp-Mode.xshd");

            hlm.RegisterHighlighting("JavaScript", new[] { ".js" }, "JavaScript-Mode.xshd");
            hlm.RegisterHighlighting("HTML", new[] { ".htm", ".html" }, "HTML-Mode.xshd");
            hlm.RegisterHighlighting("ASP/XHTML", new[] { ".asp", ".aspx", ".asax", ".asmx", ".ascx", ".master" }, "ASPX.xshd");

            hlm.RegisterHighlighting("Boo", new[] { ".boo" }, "Boo.xshd");
            hlm.RegisterHighlighting("Coco", new[] { ".atg" }, "Coco-Mode.xshd");
            hlm.RegisterHighlighting("CSS", new[] { ".css" }, "CSS-Mode.xshd");
            hlm.RegisterHighlighting("C++", new[] { ".c", ".h", ".cc", ".cpp" , ".hpp" }, "CPP-Mode.xshd");
            hlm.RegisterHighlighting("Java", new[] { ".java" }, "Java-Mode.xshd");
            hlm.RegisterHighlighting("Patch", new[] { ".patch", ".diff" }, "Patch-Mode.xshd");
            hlm.RegisterHighlighting("PowerShell", new[] { ".ps1", ".psm1", ".psd1" }, "PowerShell.xshd");
            hlm.RegisterHighlighting("PHP", new[] { ".php" }, "PHP-Mode.xshd");
            hlm.RegisterHighlighting("TeX", new[] { ".tex" }, "Tex-Mode.xshd");
            hlm.RegisterHighlighting("VB", new[] { ".vb" }, "VB-Mode.xshd");
            hlm.RegisterHighlighting("XML",
                                     // [DIGITALRUNE] Additional extensions added.
                                     new[] { ".xml", ".xsl", ".xslt", ".xsd", ".manifest", ".config",
                                             ".addin", ".xshd", ".wxs", ".wxi", ".wxl", ".proj", ".csproj",
                                             ".vbproj", ".ilproj", ".booproj", ".build", ".xfrm", ".targets",
                                             ".xaml", ".xpt", ".xft", ".map", ".wsdl", ".disco", ".ps1xml",
                                             ".nuspec", ".rdl", ".snippet", ".aml", ".shfbproj"
                                           },
                                     "XML-Mode.xshd");
            hlm.RegisterHighlighting("MarkDown", new[] { ".md" }, "MarkDown-Mode.xshd");

            // [DIGITALRUNE] Additional highlighting definitions.
            hlm.RegisterHighlighting("Cg", new[] { ".cg", ".cgh", ".cgfx", }, "Cg-Mode.xshd");
            hlm.RegisterHighlighting("HLSL", new[] { ".fx", ".fxh", ".hlsl", }, "HLSL-Mode.xshd");
        }
示例#4
0
 internal static void RegisterBuiltInHighlightings(HighlightingManager.DefaultHighlightingManager hlm)
 {
     hlm.RegisterHighlighting("LUA", new[] { ".lua" }, "LUA.xshd");
 }