#region License /* MIT License Copyright(c) 2020 Petteri Kautonen Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #endregion namespace VPKSoft.ScintillaLexers { /// /// A class containing the enumeration values. /// public class LexerEnumerations { /// /// An enumeration of currently supported Scintilla lexers. /// public enum LexerType { /// /// An unknown language and / or file. /// Unknown = 0, // previously: 0 /// /// The C# programming language. /// Cs = 1, // previously: 1 /// /// The C++ programming language. /// Cpp = 2, // previously: 2 /// /// The eXtensible Markup Language. /// Xml = 3, // previously: 4 /// /// A plain text document. /// Text = 4, // previously: 8 /// /// The NSIS (Nullsoft Scriptable Install System). /// Nsis = 5, // previously: 16 /// /// The Structured Query Language (SQL). /// SQL = 6, // previously: 32 /// /// A batch script file. /// Batch = 7, // previously: 64 /// /// A lexer for the Pascal programming language. /// Pascal = 8, // previously: 128 /// /// A lexer for the PHP programming language. /// PHP = 9, // previously: 256 /// /// A lexer type for the HTML (Hypertext Markup Language). /// HTML = 10, // previously: 512 /// /// A lexer type for the Windows PowerShell scripting language. /// WindowsPowerShell = 11, /// /// An INI file lexer. /// INI = 12, /// /// A lexer for the Python programming language. /// Python = 13, /// /// A lexer for the YAML Ain't Markup Language. /// YAML = 14, /// /// A lexer for the Java programming language. /// Java = 15, /// /// A lexer for the JavaScript scripting language. /// JavaScript = 16, /// /// A lexer for the Cascading Style Sheets (CSS). /// Css = 17, /// /// A lexer for the Inno Setup. /// InnoSetup = 18, /// /// The Visual Basic .NET programming language. /// VbDotNet = 19, /// /// The JavaScript Object Notation (JSON) data format. /// Json, } } }