├── .github ├── dependabot.yml └── workflows │ └── dotnet-desktop.yml ├── .gitignore ├── LICENSE ├── README.md ├── TestLexer ├── FormMain.Designer.cs ├── FormMain.cs ├── FormMain.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── ScintillaLexers.NET.TestApp.csproj └── app.config ├── VPKSoft.ScintillaLexers.NET ├── CreateSpecificLexer │ ├── CreateLexerBatch.cs │ ├── CreateLexerCommon.cs │ ├── CreateLexerCpp.cs │ ├── CreateLexerCs.cs │ ├── CreateLexerCss.cs │ ├── CreateLexerErrorList.cs │ ├── CreateLexerHtml.cs │ ├── CreateLexerIni.cs │ ├── CreateLexerInnoSetup.cs │ ├── CreateLexerJava.cs │ ├── CreateLexerJavaScript.cs │ ├── CreateLexerJson.cs │ ├── CreateLexerNsis.cs │ ├── CreateLexerNull.cs │ ├── CreateLexerPascal.cs │ ├── CreateLexerPhp.cs │ ├── CreateLexerPowerShell.cs │ ├── CreateLexerPython.cs │ ├── CreateLexerSql.cs │ ├── CreateLexerVb.cs │ ├── CreateLexerXml.cs │ ├── CreateLexerYaml.cs │ └── LexerFoldProperties.cs ├── GlobalScintillaFont.cs ├── HelperClasses │ ├── LexerFileExtensions.cs │ ├── LexerTypeName.cs │ └── ScintillaKeyWords.cs ├── LexerColors │ └── LexerColors.cs ├── LexerEnumerations.cs ├── Properties │ └── AssemblyInfo.cs ├── ScintillaLexer.cs ├── ScintillaLexers.NET.csproj └── ScintillaNotepadPlusPlus │ ├── MarkColors.cs │ ├── ScintillaNotepadPlusPlusStyles.cs │ └── XmlStyleNotepadPlusPlusHelper.cs ├── VPKSoft.ScintillaLexers.sln └── VPKSoft.ScintillaLexers.sln.licenseheader /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/dotnet-desktop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/.github/workflows/dotnet-desktop.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/README.md -------------------------------------------------------------------------------- /TestLexer/FormMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/TestLexer/FormMain.Designer.cs -------------------------------------------------------------------------------- /TestLexer/FormMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/TestLexer/FormMain.cs -------------------------------------------------------------------------------- /TestLexer/FormMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/TestLexer/FormMain.resx -------------------------------------------------------------------------------- /TestLexer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/TestLexer/Program.cs -------------------------------------------------------------------------------- /TestLexer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/TestLexer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TestLexer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/TestLexer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /TestLexer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/TestLexer/Properties/Resources.resx -------------------------------------------------------------------------------- /TestLexer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/TestLexer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /TestLexer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/TestLexer/Properties/Settings.settings -------------------------------------------------------------------------------- /TestLexer/ScintillaLexers.NET.TestApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/TestLexer/ScintillaLexers.NET.TestApp.csproj -------------------------------------------------------------------------------- /TestLexer/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/TestLexer/app.config -------------------------------------------------------------------------------- /VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerBatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerBatch.cs -------------------------------------------------------------------------------- /VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerCommon.cs -------------------------------------------------------------------------------- /VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerCpp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerCpp.cs -------------------------------------------------------------------------------- /VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerCs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerCs.cs -------------------------------------------------------------------------------- /VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerCss.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerCss.cs -------------------------------------------------------------------------------- /VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerErrorList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerErrorList.cs -------------------------------------------------------------------------------- /VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerHtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerHtml.cs -------------------------------------------------------------------------------- /VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerIni.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerIni.cs -------------------------------------------------------------------------------- /VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerInnoSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerInnoSetup.cs -------------------------------------------------------------------------------- /VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerJava.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerJava.cs -------------------------------------------------------------------------------- /VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerJavaScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerJavaScript.cs -------------------------------------------------------------------------------- /VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerJson.cs -------------------------------------------------------------------------------- /VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerNsis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerNsis.cs -------------------------------------------------------------------------------- /VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerNull.cs -------------------------------------------------------------------------------- /VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerPascal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerPascal.cs -------------------------------------------------------------------------------- /VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerPhp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerPhp.cs -------------------------------------------------------------------------------- /VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerPowerShell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerPowerShell.cs -------------------------------------------------------------------------------- /VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerPython.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerPython.cs -------------------------------------------------------------------------------- /VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerSql.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerSql.cs -------------------------------------------------------------------------------- /VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerVb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerVb.cs -------------------------------------------------------------------------------- /VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerXml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerXml.cs -------------------------------------------------------------------------------- /VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerYaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/CreateLexerYaml.cs -------------------------------------------------------------------------------- /VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/LexerFoldProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/VPKSoft.ScintillaLexers.NET/CreateSpecificLexer/LexerFoldProperties.cs -------------------------------------------------------------------------------- /VPKSoft.ScintillaLexers.NET/GlobalScintillaFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/VPKSoft.ScintillaLexers.NET/GlobalScintillaFont.cs -------------------------------------------------------------------------------- /VPKSoft.ScintillaLexers.NET/HelperClasses/LexerFileExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/VPKSoft.ScintillaLexers.NET/HelperClasses/LexerFileExtensions.cs -------------------------------------------------------------------------------- /VPKSoft.ScintillaLexers.NET/HelperClasses/LexerTypeName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/VPKSoft.ScintillaLexers.NET/HelperClasses/LexerTypeName.cs -------------------------------------------------------------------------------- /VPKSoft.ScintillaLexers.NET/HelperClasses/ScintillaKeyWords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/VPKSoft.ScintillaLexers.NET/HelperClasses/ScintillaKeyWords.cs -------------------------------------------------------------------------------- /VPKSoft.ScintillaLexers.NET/LexerColors/LexerColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/VPKSoft.ScintillaLexers.NET/LexerColors/LexerColors.cs -------------------------------------------------------------------------------- /VPKSoft.ScintillaLexers.NET/LexerEnumerations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/VPKSoft.ScintillaLexers.NET/LexerEnumerations.cs -------------------------------------------------------------------------------- /VPKSoft.ScintillaLexers.NET/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/VPKSoft.ScintillaLexers.NET/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /VPKSoft.ScintillaLexers.NET/ScintillaLexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/VPKSoft.ScintillaLexers.NET/ScintillaLexer.cs -------------------------------------------------------------------------------- /VPKSoft.ScintillaLexers.NET/ScintillaLexers.NET.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/VPKSoft.ScintillaLexers.NET/ScintillaLexers.NET.csproj -------------------------------------------------------------------------------- /VPKSoft.ScintillaLexers.NET/ScintillaNotepadPlusPlus/MarkColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/VPKSoft.ScintillaLexers.NET/ScintillaNotepadPlusPlus/MarkColors.cs -------------------------------------------------------------------------------- /VPKSoft.ScintillaLexers.NET/ScintillaNotepadPlusPlus/ScintillaNotepadPlusPlusStyles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/VPKSoft.ScintillaLexers.NET/ScintillaNotepadPlusPlus/ScintillaNotepadPlusPlusStyles.cs -------------------------------------------------------------------------------- /VPKSoft.ScintillaLexers.NET/ScintillaNotepadPlusPlus/XmlStyleNotepadPlusPlusHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/VPKSoft.ScintillaLexers.NET/ScintillaNotepadPlusPlus/XmlStyleNotepadPlusPlusHelper.cs -------------------------------------------------------------------------------- /VPKSoft.ScintillaLexers.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/VPKSoft.ScintillaLexers.sln -------------------------------------------------------------------------------- /VPKSoft.ScintillaLexers.sln.licenseheader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/desjarlais/ScintillaLexers/HEAD/VPKSoft.ScintillaLexers.sln.licenseheader --------------------------------------------------------------------------------