├── .build └── GetBuildVersion.psm1 ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── codeql.yml │ ├── dotnet.yml │ └── nuget.yml ├── .gitignore ├── .idea ├── .idea.TextMateSharp.dir │ └── .idea │ │ └── .gitignore └── .idea.TextMateSharp │ └── .idea │ └── .gitignore ├── LICENSE.md ├── README.md ├── TextMateSharp.sln └── src ├── TextMateSharp.Demo ├── Program.cs ├── Properties │ └── launchSettings.json ├── TextMateSharp.Demo.csproj └── testdata │ └── samplefiles │ ├── bigfile.cs │ ├── bigfile_single_line.cs │ ├── file.bin │ ├── mediumfile.cs │ ├── sample.cs │ ├── sample.cshtml │ ├── sample.css │ ├── sample.html │ └── sample.php ├── TextMateSharp.Grammars.Tests ├── GrammarAssets │ └── qml │ │ ├── language-configuration.json │ │ ├── package.json │ │ └── syntaxes │ │ └── qml.tmLanguage.json ├── GrammarTests.cs ├── TextMateSharp.Grammars.Tests.csproj └── ThemeTests.cs ├── TextMateSharp.Grammars ├── GrammarDefinition.cs ├── GrammarNames.cs ├── JsonSerializationContext.cs ├── LanguageConfiguration.cs ├── Properties │ └── AssemblyInfo.cs ├── RegistryOptions.cs ├── Resources │ ├── Grammars │ │ ├── asciidoc │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ └── syntaxes │ │ │ │ └── asciidoc.tmLanguage.json │ │ ├── bat │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ ├── snippets │ │ │ │ └── batchfile.code-snippets │ │ │ └── syntaxes │ │ │ │ └── batchfile.tmLanguage.json │ │ ├── clojure │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ └── syntaxes │ │ │ │ └── clojure.tmLanguage.json │ │ ├── coffeescript │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ ├── snippets │ │ │ │ └── coffeescript.code-snippets │ │ │ └── syntaxes │ │ │ │ └── coffeescript.tmLanguage.json │ │ ├── cpp │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ ├── snippets │ │ │ │ ├── c.code-snippets │ │ │ │ └── cpp.code-snippets │ │ │ └── syntaxes │ │ │ │ ├── c.tmLanguage.json │ │ │ │ ├── cpp.embedded.macro.tmLanguage.json │ │ │ │ ├── cpp.tmLanguage.json │ │ │ │ ├── cuda-cpp.tmLanguage.json │ │ │ │ └── platform.tmLanguage.json │ │ ├── csharp │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ ├── snippets │ │ │ │ └── csharp.code-snippets │ │ │ └── syntaxes │ │ │ │ └── csharp.tmLanguage.json │ │ ├── css │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ └── syntaxes │ │ │ │ └── css.tmLanguage.json │ │ ├── dart │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ └── syntaxes │ │ │ │ └── dart.tmLanguage.json │ │ ├── diff │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ └── syntaxes │ │ │ │ └── diff.tmLanguage.json │ │ ├── docker │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ └── syntaxes │ │ │ │ └── docker.tmLanguage.json │ │ ├── fsharp │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ ├── snippets │ │ │ │ └── fsharp.code-snippets │ │ │ └── syntaxes │ │ │ │ └── fsharp.tmLanguage.json │ │ ├── git │ │ │ ├── cgmanifest.json │ │ │ ├── languages │ │ │ │ ├── diff.language-configuration.json │ │ │ │ └── ignore.language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ └── syntaxes │ │ │ │ ├── diff.tmLanguage.json │ │ │ │ └── ignore.tmLanguage.json │ │ ├── go │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ └── syntaxes │ │ │ │ └── go.tmLanguage.json │ │ ├── groovy │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ ├── snippets │ │ │ │ └── groovy.code-snippets │ │ │ └── syntaxes │ │ │ │ └── groovy.tmLanguage.json │ │ ├── handlebars │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ └── syntaxes │ │ │ │ └── Handlebars.tmLanguage.json │ │ ├── hlsl │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ └── syntaxes │ │ │ │ └── hlsl.tmLanguage.json │ │ ├── html │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ └── syntaxes │ │ │ │ ├── html-derivative.tmLanguage.json │ │ │ │ └── html.tmLanguage.json │ │ ├── ini │ │ │ ├── cgmanifest.json │ │ │ ├── ini.language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ ├── properties.language-configuration.json │ │ │ └── syntaxes │ │ │ │ └── ini.tmLanguage.json │ │ ├── java │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ ├── snippets │ │ │ │ └── java.code-snippets │ │ │ └── syntaxes │ │ │ │ └── java.tmLanguage.json │ │ ├── javascript │ │ │ ├── cgmanifest.json │ │ │ ├── javascript-language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ ├── snippets │ │ │ │ └── javascript.code-snippets │ │ │ ├── syntaxes │ │ │ │ ├── JavaScript.tmLanguage.json │ │ │ │ ├── JavaScriptReact.tmLanguage.json │ │ │ │ ├── Readme.md │ │ │ │ └── Regular Expressions (JavaScript).tmLanguage │ │ │ └── tags-language-configuration.json │ │ ├── json │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ └── syntaxes │ │ │ │ ├── JSON.tmLanguage.json │ │ │ │ └── JSONC.tmLanguage.json │ │ ├── julia │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ └── syntaxes │ │ │ │ └── julia.tmLanguage.json │ │ ├── latex │ │ │ ├── cgmanifest.json │ │ │ ├── latex-cpp-embedded-language-configuration.json │ │ │ ├── latex-language-configuration.json │ │ │ ├── markdown-latex-combined-language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ └── syntaxes │ │ │ │ ├── Bibtex.tmLanguage.json │ │ │ │ ├── LaTeX.tmLanguage.json │ │ │ │ ├── TeX.tmLanguage.json │ │ │ │ ├── cpp-grammar-bailout.tmLanguage.json │ │ │ │ └── markdown-latex-combined.tmLanguage.json │ │ ├── less │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ └── syntaxes │ │ │ │ └── less.tmLanguage.json │ │ ├── log │ │ │ ├── cgmanifest.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ └── syntaxes │ │ │ │ └── log.tmLanguage.json │ │ ├── lua │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ └── syntaxes │ │ │ │ └── lua.tmLanguage.json │ │ ├── make │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ └── syntaxes │ │ │ │ └── make.tmLanguage.json │ │ ├── markdownbasics │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ ├── snippets │ │ │ │ └── markdown.code-snippets │ │ │ └── syntaxes │ │ │ │ └── markdown.tmLanguage.json │ │ ├── markdownmath │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ └── syntaxes │ │ │ │ ├── md-math-block.tmLanguage.json │ │ │ │ ├── md-math-inline.tmLanguage.json │ │ │ │ └── md-math.tmLanguage.json │ │ ├── objectivec │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ └── syntaxes │ │ │ │ ├── objective-c++.tmLanguage.json │ │ │ │ └── objective-c.tmLanguage.json │ │ ├── pascal │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ └── syntaxes │ │ │ │ └── pascal.tmLanguage.json │ │ ├── perl │ │ │ ├── cgmanifest.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ ├── perl.language-configuration.json │ │ │ ├── perl6.language-configuration.json │ │ │ └── syntaxes │ │ │ │ ├── perl.tmLanguage.json │ │ │ │ └── perl6.tmLanguage.json │ │ ├── php │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ ├── snippets │ │ │ │ └── php.code-snippets │ │ │ └── syntaxes │ │ │ │ ├── html.tmLanguage.json │ │ │ │ └── php.tmLanguage.json │ │ ├── powershell │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ ├── snippets │ │ │ │ └── powershell.code-snippets │ │ │ └── syntaxes │ │ │ │ └── powershell.tmLanguage.json │ │ ├── pug │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ └── syntaxes │ │ │ │ └── pug.tmLanguage.json │ │ ├── python │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ └── syntaxes │ │ │ │ ├── MagicPython.tmLanguage.json │ │ │ │ └── MagicRegExp.tmLanguage.json │ │ ├── r │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ └── syntaxes │ │ │ │ └── r.tmLanguage.json │ │ ├── razor │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ └── syntaxes │ │ │ │ └── cshtml.tmLanguage.json │ │ ├── ruby │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ └── syntaxes │ │ │ │ └── ruby.tmLanguage.json │ │ ├── rust │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ └── syntaxes │ │ │ │ └── rust.tmLanguage.json │ │ ├── scss │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ └── syntaxes │ │ │ │ ├── sassdoc.tmLanguage.json │ │ │ │ └── scss.tmLanguage.json │ │ ├── shaderlab │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ └── syntaxes │ │ │ │ └── shaderlab.tmLanguage.json │ │ ├── shellscript │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ └── syntaxes │ │ │ │ └── shell-unix-bash.tmLanguage.json │ │ ├── sql │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ └── syntaxes │ │ │ │ └── sql.tmLanguage.json │ │ ├── swift │ │ │ ├── LICENSE.md │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ ├── snippets │ │ │ │ └── swift.code-snippets │ │ │ └── syntaxes │ │ │ │ └── swift.tmLanguage.json │ │ ├── typescriptbasics │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ ├── snippets │ │ │ │ └── typescript.code-snippets │ │ │ └── syntaxes │ │ │ │ ├── Readme.md │ │ │ │ ├── TypeScript.tmLanguage.json │ │ │ │ ├── TypeScriptReact.tmLanguage.json │ │ │ │ ├── jsdoc.js.injection.tmLanguage.json │ │ │ │ └── jsdoc.ts.injection.tmLanguage.json │ │ ├── typst │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ └── syntaxes │ │ │ │ ├── typst-code.tmLanguage.json │ │ │ │ ├── typst-markdown-injection.json │ │ │ │ └── typst.tmLanguage.json │ │ ├── vb │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ ├── snippets │ │ │ │ └── vb.code-snippets │ │ │ └── syntaxes │ │ │ │ └── asp-vb-net.tmlanguage.json │ │ ├── xml │ │ │ ├── cgmanifest.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ ├── syntaxes │ │ │ │ ├── xml.tmLanguage.json │ │ │ │ └── xsl.tmLanguage.json │ │ │ ├── xml.language-configuration.json │ │ │ └── xsl.language-configuration.json │ │ └── yaml │ │ │ ├── cgmanifest.json │ │ │ ├── language-configuration.json │ │ │ ├── package.json │ │ │ ├── package.nls.json │ │ │ └── syntaxes │ │ │ └── yaml.tmLanguage.json │ ├── ResourceLoader.cs │ └── Themes │ │ ├── Red-color-theme.json │ │ ├── abyss-color-theme.json │ │ ├── atom-one-dark-color-theme.json │ │ ├── atom-one-light-color-theme.json │ │ ├── dark_plus.json │ │ ├── dark_vs.json │ │ ├── dimmed-monokai-color-theme.json │ │ ├── dracula-color-theme.json │ │ ├── hc_black.json │ │ ├── hc_light.json │ │ ├── kimbie-dark-color-theme.json │ │ ├── light_plus.json │ │ ├── light_vs.json │ │ ├── monokai-color-theme.json │ │ ├── onedark-color-theme.json │ │ ├── quietlight-color-theme.json │ │ ├── solarized-dark-color-theme.json │ │ ├── solarized-light-color-theme.json │ │ ├── tomorrow-night-blue-color-theme.json │ │ ├── visual-studio-dark-theme.json │ │ └── visual-studio-light-theme.json ├── TextMateSharp.Grammars.csproj └── ThemeName.cs ├── TextMateSharp.Tests ├── Internal │ ├── Grammars │ │ ├── EncodedTokenAttributesTests.cs │ │ ├── GrammarTests.cs │ │ └── Reader │ │ │ └── GrammarReaderTests.cs │ ├── Matcher │ │ └── MatcherTests.cs │ └── Themes │ │ ├── Reader │ │ └── ThemeReaderTests.cs │ │ ├── StrCmpTests.cs │ │ ├── ThemeParsingTest.cs │ │ └── ThemeTest.cs ├── Model │ └── TMModelTests.cs ├── Resources │ ├── ResourceReader.cs │ ├── TypeScript.tmLanguage.json │ ├── batchfile.tmLanguage.json │ ├── csharp.tmLanguage.json │ ├── css.tmLanguage.json │ ├── dark_plus.json │ ├── dark_vs.json │ ├── sample.cs │ ├── styles.ng.json │ └── template.ng.json └── TextMateSharp.Tests.csproj ├── TextMateSharp.snk └── TextMateSharp ├── Grammar ├── GrammarHelper.cs ├── IGrammar.cs ├── IGrammarRepository.cs ├── IToken.cs ├── ITokenizeLineResult.cs ├── ITokenizeLineResult2.cs ├── Injection.cs └── StateStack.cs ├── Internal ├── Grammars │ ├── AttributedScopeStack.cs │ ├── BalancedBracketSelectors.cs │ ├── BasicScopeAttributes.cs │ ├── BasicScopeAttributesProvider.cs │ ├── EncodedTokenAttributes.cs │ ├── Grammar.cs │ ├── LineTokenizer.cs │ ├── LineTokens.cs │ ├── LocalStackElement.cs │ ├── MetadataConsts.cs │ ├── OptionalStandardTokenType.cs │ ├── StandardTokenType.cs │ ├── SyncRegistry.cs │ ├── Token.cs │ ├── TokenTypeMatcher.cs │ ├── TokenizeLineResult.cs │ ├── TokenizeLineResult2.cs │ ├── TokenizeStringResult.cs │ ├── parser │ │ ├── PListGrammar.cs │ │ └── Raw.cs │ └── reader │ │ └── GrammarReader.cs ├── Matcher │ ├── IMatchesName.cs │ ├── MatchInjectionResult.cs │ ├── MatchResult.cs │ ├── Matcher.cs │ ├── MatcherBuilder.cs │ └── MatcherWithPriority.cs ├── Parser │ ├── Json │ │ └── JSONPListParser.cs │ ├── PList.cs │ └── PListObject.cs ├── Rules │ ├── BeginEndRule.cs │ ├── BeginWhileRule.cs │ ├── CaptureRule.cs │ ├── ICompilePatternsResult.cs │ ├── ICompiledRule.cs │ ├── IGrammarRegistry.cs │ ├── IRegExpSourceAnchorCache.cs │ ├── IRuleFactoryHelper.cs │ ├── IRuleRegistry.cs │ ├── IncludeOnlyRule.cs │ ├── MatchRule.cs │ ├── RegExpSource.cs │ ├── RegExpSourceList.cs │ ├── Rule.cs │ ├── RuleFactory.cs │ └── RuleId.cs ├── Themes │ ├── PListTheme.cs │ ├── ThemeRaw.cs │ └── reader │ │ └── ThemeReader.cs ├── Types │ ├── IRawCaptures.cs │ ├── IRawGrammar.cs │ ├── IRawRepository.cs │ └── IRawRule.cs └── Utils │ ├── RegexSource.cs │ └── StringUtils.cs ├── Model ├── AbstractLineList.cs ├── DecodeMap.cs ├── IModelLines.cs ├── IModelTokensChangedListener.cs ├── ITMModel.cs ├── ITokenizationSupport.cs ├── LineTokens.cs ├── ModelLine.cs ├── ModelTokensChangedEvent.cs ├── ModelTokensChangedEventBuilder.cs ├── Range.cs ├── TMModel.cs ├── TMState.cs ├── TMToken.cs ├── TMTokenDecodeData.cs └── Tokenizer.cs ├── Properties └── AssemblyInfo.cs ├── Registry ├── IRegistryOptions.cs └── Registry.cs ├── TMException.cs ├── TextMateSharp.csproj └── Themes ├── ColorMap.cs ├── FontStyle.cs ├── IRawTheme.cs ├── IRawThemeSetting.cs ├── IThemeProvider.cs ├── IThemeSetting.cs ├── ParsedThemeRule.cs ├── Theme.cs ├── ThemeTrieElement.cs └── ThemeTrieElementRule.cs /.build/GetBuildVersion.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/.build/GetBuildVersion.psm1 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: danipen 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.github/workflows/nuget.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/.github/workflows/nuget.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.TextMateSharp.dir/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/.idea/.idea.TextMateSharp.dir/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.TextMateSharp/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/.idea/.idea.TextMateSharp/.idea/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/README.md -------------------------------------------------------------------------------- /TextMateSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/TextMateSharp.sln -------------------------------------------------------------------------------- /src/TextMateSharp.Demo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Demo/Program.cs -------------------------------------------------------------------------------- /src/TextMateSharp.Demo/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Demo/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/TextMateSharp.Demo/TextMateSharp.Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Demo/TextMateSharp.Demo.csproj -------------------------------------------------------------------------------- /src/TextMateSharp.Demo/testdata/samplefiles/bigfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Demo/testdata/samplefiles/bigfile.cs -------------------------------------------------------------------------------- /src/TextMateSharp.Demo/testdata/samplefiles/bigfile_single_line.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Demo/testdata/samplefiles/bigfile_single_line.cs -------------------------------------------------------------------------------- /src/TextMateSharp.Demo/testdata/samplefiles/file.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Demo/testdata/samplefiles/file.bin -------------------------------------------------------------------------------- /src/TextMateSharp.Demo/testdata/samplefiles/mediumfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Demo/testdata/samplefiles/mediumfile.cs -------------------------------------------------------------------------------- /src/TextMateSharp.Demo/testdata/samplefiles/sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Demo/testdata/samplefiles/sample.cs -------------------------------------------------------------------------------- /src/TextMateSharp.Demo/testdata/samplefiles/sample.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Demo/testdata/samplefiles/sample.cshtml -------------------------------------------------------------------------------- /src/TextMateSharp.Demo/testdata/samplefiles/sample.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Demo/testdata/samplefiles/sample.css -------------------------------------------------------------------------------- /src/TextMateSharp.Demo/testdata/samplefiles/sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Demo/testdata/samplefiles/sample.html -------------------------------------------------------------------------------- /src/TextMateSharp.Demo/testdata/samplefiles/sample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Demo/testdata/samplefiles/sample.php -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars.Tests/GrammarAssets/qml/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars.Tests/GrammarAssets/qml/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars.Tests/GrammarAssets/qml/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars.Tests/GrammarAssets/qml/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars.Tests/GrammarAssets/qml/syntaxes/qml.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars.Tests/GrammarAssets/qml/syntaxes/qml.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars.Tests/GrammarTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars.Tests/GrammarTests.cs -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars.Tests/TextMateSharp.Grammars.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars.Tests/TextMateSharp.Grammars.Tests.csproj -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars.Tests/ThemeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars.Tests/ThemeTests.cs -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/GrammarDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/GrammarDefinition.cs -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/GrammarNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/GrammarNames.cs -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/JsonSerializationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/JsonSerializationContext.cs -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/LanguageConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/LanguageConfiguration.cs -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/RegistryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/RegistryOptions.cs -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/asciidoc/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/asciidoc/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/asciidoc/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/asciidoc/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/asciidoc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/asciidoc/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/asciidoc/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/asciidoc/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/asciidoc/syntaxes/asciidoc.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/asciidoc/syntaxes/asciidoc.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/bat/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/bat/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/bat/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/bat/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/bat/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/bat/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/bat/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/bat/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/bat/snippets/batchfile.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/bat/snippets/batchfile.code-snippets -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/bat/syntaxes/batchfile.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/bat/syntaxes/batchfile.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/clojure/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/clojure/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/clojure/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/clojure/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/clojure/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/clojure/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/clojure/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/clojure/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/clojure/syntaxes/clojure.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/clojure/syntaxes/clojure.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/coffeescript/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/coffeescript/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/coffeescript/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/coffeescript/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/coffeescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/coffeescript/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/coffeescript/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/coffeescript/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/coffeescript/snippets/coffeescript.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/coffeescript/snippets/coffeescript.code-snippets -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/coffeescript/syntaxes/coffeescript.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/coffeescript/syntaxes/coffeescript.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/cpp/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/cpp/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/cpp/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/cpp/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/cpp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/cpp/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/cpp/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/cpp/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/cpp/snippets/c.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/cpp/snippets/c.code-snippets -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/cpp/snippets/cpp.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/cpp/snippets/cpp.code-snippets -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/cpp/syntaxes/c.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/cpp/syntaxes/c.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/cpp/syntaxes/cpp.embedded.macro.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/cpp/syntaxes/cpp.embedded.macro.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/cpp/syntaxes/cpp.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/cpp/syntaxes/cpp.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/cpp/syntaxes/cuda-cpp.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/cpp/syntaxes/cuda-cpp.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/cpp/syntaxes/platform.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/cpp/syntaxes/platform.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/csharp/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/csharp/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/csharp/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/csharp/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/csharp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/csharp/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/csharp/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/csharp/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/csharp/snippets/csharp.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/csharp/snippets/csharp.code-snippets -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/csharp/syntaxes/csharp.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/csharp/syntaxes/csharp.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/css/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/css/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/css/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/css/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/css/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/css/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/css/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/css/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/css/syntaxes/css.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/css/syntaxes/css.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/dart/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/dart/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/dart/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/dart/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/dart/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/dart/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/dart/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/dart/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/dart/syntaxes/dart.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/dart/syntaxes/dart.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/diff/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/diff/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/diff/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/diff/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/diff/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/diff/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/diff/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/diff/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/diff/syntaxes/diff.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/diff/syntaxes/diff.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/docker/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/docker/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/docker/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/docker/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/docker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/docker/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/docker/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/docker/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/docker/syntaxes/docker.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/docker/syntaxes/docker.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/fsharp/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/fsharp/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/fsharp/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/fsharp/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/fsharp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/fsharp/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/fsharp/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/fsharp/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/fsharp/snippets/fsharp.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/fsharp/snippets/fsharp.code-snippets -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/fsharp/syntaxes/fsharp.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/fsharp/syntaxes/fsharp.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/git/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/git/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/git/languages/diff.language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/git/languages/diff.language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/git/languages/ignore.language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/git/languages/ignore.language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/git/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/git/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/git/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/git/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/git/syntaxes/diff.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/git/syntaxes/diff.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/git/syntaxes/ignore.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/git/syntaxes/ignore.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/go/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/go/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/go/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/go/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/go/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/go/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/go/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/go/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/go/syntaxes/go.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/go/syntaxes/go.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/groovy/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/groovy/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/groovy/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/groovy/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/groovy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/groovy/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/groovy/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/groovy/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/groovy/snippets/groovy.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/groovy/snippets/groovy.code-snippets -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/groovy/syntaxes/groovy.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/groovy/syntaxes/groovy.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/handlebars/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/handlebars/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/handlebars/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/handlebars/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/handlebars/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/handlebars/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/handlebars/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/handlebars/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/handlebars/syntaxes/Handlebars.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/handlebars/syntaxes/Handlebars.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/hlsl/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/hlsl/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/hlsl/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/hlsl/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/hlsl/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/hlsl/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/hlsl/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/hlsl/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/hlsl/syntaxes/hlsl.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/hlsl/syntaxes/hlsl.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/html/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/html/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/html/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/html/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/html/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/html/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/html/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/html/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/html/syntaxes/html-derivative.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/html/syntaxes/html-derivative.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/html/syntaxes/html.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/html/syntaxes/html.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/ini/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/ini/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/ini/ini.language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/ini/ini.language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/ini/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/ini/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/ini/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/ini/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/ini/properties.language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/ini/properties.language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/ini/syntaxes/ini.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/ini/syntaxes/ini.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/java/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/java/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/java/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/java/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/java/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/java/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/java/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/java/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/java/snippets/java.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/java/snippets/java.code-snippets -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/java/syntaxes/java.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/java/syntaxes/java.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/javascript/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/javascript/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/javascript/javascript-language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/javascript/javascript-language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/javascript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/javascript/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/javascript/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/javascript/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/javascript/snippets/javascript.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/javascript/snippets/javascript.code-snippets -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/javascript/syntaxes/JavaScript.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/javascript/syntaxes/JavaScript.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/javascript/syntaxes/JavaScriptReact.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/javascript/syntaxes/JavaScriptReact.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/javascript/syntaxes/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/javascript/syntaxes/Readme.md -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/javascript/syntaxes/Regular Expressions (JavaScript).tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/javascript/syntaxes/Regular Expressions (JavaScript).tmLanguage -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/javascript/tags-language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/javascript/tags-language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/json/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/json/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/json/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/json/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/json/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/json/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/json/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/json/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/json/syntaxes/JSON.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/json/syntaxes/JSON.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/json/syntaxes/JSONC.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/json/syntaxes/JSONC.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/julia/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/julia/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/julia/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/julia/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/julia/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/julia/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/julia/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/julia/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/julia/syntaxes/julia.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/julia/syntaxes/julia.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/latex/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/latex/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/latex/latex-cpp-embedded-language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/latex/latex-cpp-embedded-language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/latex/latex-language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/latex/latex-language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/latex/markdown-latex-combined-language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/latex/markdown-latex-combined-language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/latex/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/latex/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/latex/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/latex/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/latex/syntaxes/Bibtex.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/latex/syntaxes/Bibtex.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/latex/syntaxes/LaTeX.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/latex/syntaxes/LaTeX.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/latex/syntaxes/TeX.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/latex/syntaxes/TeX.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/latex/syntaxes/cpp-grammar-bailout.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/latex/syntaxes/cpp-grammar-bailout.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/latex/syntaxes/markdown-latex-combined.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/latex/syntaxes/markdown-latex-combined.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/less/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/less/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/less/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/less/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/less/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/less/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/less/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/less/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/less/syntaxes/less.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/less/syntaxes/less.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/log/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/log/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/log/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/log/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/log/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/log/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/log/syntaxes/log.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/log/syntaxes/log.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/lua/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/lua/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/lua/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/lua/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/lua/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/lua/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/lua/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/lua/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/lua/syntaxes/lua.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/lua/syntaxes/lua.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/make/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/make/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/make/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/make/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/make/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/make/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/make/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/make/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/make/syntaxes/make.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/make/syntaxes/make.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/markdownbasics/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/markdownbasics/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/markdownbasics/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/markdownbasics/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/markdownbasics/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/markdownbasics/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/markdownbasics/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/markdownbasics/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/markdownbasics/snippets/markdown.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/markdownbasics/snippets/markdown.code-snippets -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/markdownbasics/syntaxes/markdown.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/markdownbasics/syntaxes/markdown.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/markdownmath/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/markdownmath/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/markdownmath/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/markdownmath/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/markdownmath/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/markdownmath/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/markdownmath/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/markdownmath/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/markdownmath/syntaxes/md-math-block.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/markdownmath/syntaxes/md-math-block.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/markdownmath/syntaxes/md-math-inline.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/markdownmath/syntaxes/md-math-inline.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/markdownmath/syntaxes/md-math.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/markdownmath/syntaxes/md-math.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/objectivec/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/objectivec/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/objectivec/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/objectivec/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/objectivec/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/objectivec/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/objectivec/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/objectivec/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/objectivec/syntaxes/objective-c++.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/objectivec/syntaxes/objective-c++.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/objectivec/syntaxes/objective-c.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/objectivec/syntaxes/objective-c.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/pascal/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/pascal/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/pascal/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/pascal/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/pascal/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/pascal/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/pascal/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/pascal/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/pascal/syntaxes/pascal.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/pascal/syntaxes/pascal.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/perl/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/perl/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/perl/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/perl/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/perl/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/perl/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/perl/perl.language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/perl/perl.language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/perl/perl6.language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/perl/perl6.language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/perl/syntaxes/perl.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/perl/syntaxes/perl.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/perl/syntaxes/perl6.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/perl/syntaxes/perl6.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/php/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/php/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/php/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/php/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/php/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/php/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/php/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/php/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/php/snippets/php.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/php/snippets/php.code-snippets -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/php/syntaxes/html.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/php/syntaxes/html.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/php/syntaxes/php.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/php/syntaxes/php.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/powershell/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/powershell/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/powershell/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/powershell/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/powershell/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/powershell/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/powershell/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/powershell/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/powershell/snippets/powershell.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/powershell/snippets/powershell.code-snippets -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/powershell/syntaxes/powershell.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/powershell/syntaxes/powershell.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/pug/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/pug/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/pug/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/pug/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/pug/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/pug/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/pug/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/pug/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/pug/syntaxes/pug.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/pug/syntaxes/pug.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/python/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/python/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/python/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/python/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/python/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/python/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/python/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/python/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/python/syntaxes/MagicPython.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/python/syntaxes/MagicPython.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/python/syntaxes/MagicRegExp.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/python/syntaxes/MagicRegExp.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/r/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/r/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/r/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/r/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/r/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/r/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/r/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/r/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/r/syntaxes/r.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/r/syntaxes/r.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/razor/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/razor/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/razor/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/razor/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/razor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/razor/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/razor/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/razor/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/razor/syntaxes/cshtml.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/razor/syntaxes/cshtml.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/ruby/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/ruby/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/ruby/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/ruby/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/ruby/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/ruby/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/ruby/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/ruby/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/ruby/syntaxes/ruby.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/ruby/syntaxes/ruby.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/rust/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/rust/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/rust/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/rust/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/rust/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/rust/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/rust/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/rust/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/rust/syntaxes/rust.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/rust/syntaxes/rust.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/scss/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/scss/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/scss/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/scss/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/scss/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/scss/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/scss/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/scss/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/scss/syntaxes/sassdoc.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/scss/syntaxes/sassdoc.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/scss/syntaxes/scss.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/scss/syntaxes/scss.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/shaderlab/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/shaderlab/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/shaderlab/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/shaderlab/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/shaderlab/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/shaderlab/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/shaderlab/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/shaderlab/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/shaderlab/syntaxes/shaderlab.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/shaderlab/syntaxes/shaderlab.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/shellscript/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/shellscript/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/shellscript/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/shellscript/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/shellscript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/shellscript/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/shellscript/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/shellscript/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/shellscript/syntaxes/shell-unix-bash.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/shellscript/syntaxes/shell-unix-bash.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/sql/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/sql/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/sql/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/sql/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/sql/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/sql/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/sql/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/sql/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/sql/syntaxes/sql.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/sql/syntaxes/sql.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/swift/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/swift/LICENSE.md -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/swift/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/swift/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/swift/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/swift/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/swift/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/swift/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/swift/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/swift/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/swift/snippets/swift.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/swift/snippets/swift.code-snippets -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/swift/syntaxes/swift.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/swift/syntaxes/swift.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/typescriptbasics/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/typescriptbasics/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/typescriptbasics/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/typescriptbasics/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/typescriptbasics/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/typescriptbasics/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/typescriptbasics/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/typescriptbasics/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/typescriptbasics/snippets/typescript.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/typescriptbasics/snippets/typescript.code-snippets -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/typescriptbasics/syntaxes/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/typescriptbasics/syntaxes/Readme.md -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/typescriptbasics/syntaxes/TypeScript.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/typescriptbasics/syntaxes/TypeScript.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/typescriptbasics/syntaxes/TypeScriptReact.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/typescriptbasics/syntaxes/TypeScriptReact.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/typescriptbasics/syntaxes/jsdoc.js.injection.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/typescriptbasics/syntaxes/jsdoc.js.injection.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/typescriptbasics/syntaxes/jsdoc.ts.injection.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/typescriptbasics/syntaxes/jsdoc.ts.injection.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/typst/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/typst/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/typst/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/typst/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/typst/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/typst/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/typst/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/typst/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/typst/syntaxes/typst-code.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/typst/syntaxes/typst-code.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/typst/syntaxes/typst-markdown-injection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/typst/syntaxes/typst-markdown-injection.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/typst/syntaxes/typst.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/typst/syntaxes/typst.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/vb/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/vb/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/vb/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/vb/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/vb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/vb/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/vb/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/vb/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/vb/snippets/vb.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/vb/snippets/vb.code-snippets -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/vb/syntaxes/asp-vb-net.tmlanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/vb/syntaxes/asp-vb-net.tmlanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/xml/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/xml/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/xml/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/xml/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/xml/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/xml/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/xml/syntaxes/xml.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/xml/syntaxes/xml.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/xml/syntaxes/xsl.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/xml/syntaxes/xsl.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/xml/xml.language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/xml/xml.language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/xml/xsl.language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/xml/xsl.language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/yaml/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/yaml/cgmanifest.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/yaml/language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/yaml/language-configuration.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/yaml/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/yaml/package.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/yaml/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/yaml/package.nls.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Grammars/yaml/syntaxes/yaml.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Grammars/yaml/syntaxes/yaml.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/ResourceLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/ResourceLoader.cs -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Themes/Red-color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Themes/Red-color-theme.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Themes/abyss-color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Themes/abyss-color-theme.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Themes/atom-one-dark-color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Themes/atom-one-dark-color-theme.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Themes/atom-one-light-color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Themes/atom-one-light-color-theme.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Themes/dark_plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Themes/dark_plus.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Themes/dark_vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Themes/dark_vs.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Themes/dimmed-monokai-color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Themes/dimmed-monokai-color-theme.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Themes/dracula-color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Themes/dracula-color-theme.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Themes/hc_black.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Themes/hc_black.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Themes/hc_light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Themes/hc_light.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Themes/kimbie-dark-color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Themes/kimbie-dark-color-theme.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Themes/light_plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Themes/light_plus.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Themes/light_vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Themes/light_vs.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Themes/monokai-color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Themes/monokai-color-theme.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Themes/onedark-color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Themes/onedark-color-theme.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Themes/quietlight-color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Themes/quietlight-color-theme.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Themes/solarized-dark-color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Themes/solarized-dark-color-theme.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Themes/solarized-light-color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Themes/solarized-light-color-theme.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Themes/tomorrow-night-blue-color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Themes/tomorrow-night-blue-color-theme.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Themes/visual-studio-dark-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Themes/visual-studio-dark-theme.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/Resources/Themes/visual-studio-light-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/Resources/Themes/visual-studio-light-theme.json -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/TextMateSharp.Grammars.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/TextMateSharp.Grammars.csproj -------------------------------------------------------------------------------- /src/TextMateSharp.Grammars/ThemeName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Grammars/ThemeName.cs -------------------------------------------------------------------------------- /src/TextMateSharp.Tests/Internal/Grammars/EncodedTokenAttributesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Tests/Internal/Grammars/EncodedTokenAttributesTests.cs -------------------------------------------------------------------------------- /src/TextMateSharp.Tests/Internal/Grammars/GrammarTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Tests/Internal/Grammars/GrammarTests.cs -------------------------------------------------------------------------------- /src/TextMateSharp.Tests/Internal/Grammars/Reader/GrammarReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Tests/Internal/Grammars/Reader/GrammarReaderTests.cs -------------------------------------------------------------------------------- /src/TextMateSharp.Tests/Internal/Matcher/MatcherTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Tests/Internal/Matcher/MatcherTests.cs -------------------------------------------------------------------------------- /src/TextMateSharp.Tests/Internal/Themes/Reader/ThemeReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Tests/Internal/Themes/Reader/ThemeReaderTests.cs -------------------------------------------------------------------------------- /src/TextMateSharp.Tests/Internal/Themes/StrCmpTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Tests/Internal/Themes/StrCmpTests.cs -------------------------------------------------------------------------------- /src/TextMateSharp.Tests/Internal/Themes/ThemeParsingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Tests/Internal/Themes/ThemeParsingTest.cs -------------------------------------------------------------------------------- /src/TextMateSharp.Tests/Internal/Themes/ThemeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Tests/Internal/Themes/ThemeTest.cs -------------------------------------------------------------------------------- /src/TextMateSharp.Tests/Model/TMModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Tests/Model/TMModelTests.cs -------------------------------------------------------------------------------- /src/TextMateSharp.Tests/Resources/ResourceReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Tests/Resources/ResourceReader.cs -------------------------------------------------------------------------------- /src/TextMateSharp.Tests/Resources/TypeScript.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Tests/Resources/TypeScript.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Tests/Resources/batchfile.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Tests/Resources/batchfile.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Tests/Resources/csharp.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Tests/Resources/csharp.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Tests/Resources/css.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Tests/Resources/css.tmLanguage.json -------------------------------------------------------------------------------- /src/TextMateSharp.Tests/Resources/dark_plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Tests/Resources/dark_plus.json -------------------------------------------------------------------------------- /src/TextMateSharp.Tests/Resources/dark_vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Tests/Resources/dark_vs.json -------------------------------------------------------------------------------- /src/TextMateSharp.Tests/Resources/sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Tests/Resources/sample.cs -------------------------------------------------------------------------------- /src/TextMateSharp.Tests/Resources/styles.ng.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Tests/Resources/styles.ng.json -------------------------------------------------------------------------------- /src/TextMateSharp.Tests/Resources/template.ng.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Tests/Resources/template.ng.json -------------------------------------------------------------------------------- /src/TextMateSharp.Tests/TextMateSharp.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.Tests/TextMateSharp.Tests.csproj -------------------------------------------------------------------------------- /src/TextMateSharp.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp.snk -------------------------------------------------------------------------------- /src/TextMateSharp/Grammar/GrammarHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Grammar/GrammarHelper.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Grammar/IGrammar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Grammar/IGrammar.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Grammar/IGrammarRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Grammar/IGrammarRepository.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Grammar/IToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Grammar/IToken.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Grammar/ITokenizeLineResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Grammar/ITokenizeLineResult.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Grammar/ITokenizeLineResult2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Grammar/ITokenizeLineResult2.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Grammar/Injection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Grammar/Injection.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Grammar/StateStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Grammar/StateStack.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Grammars/AttributedScopeStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Grammars/AttributedScopeStack.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Grammars/BalancedBracketSelectors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Grammars/BalancedBracketSelectors.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Grammars/BasicScopeAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Grammars/BasicScopeAttributes.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Grammars/BasicScopeAttributesProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Grammars/BasicScopeAttributesProvider.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Grammars/EncodedTokenAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Grammars/EncodedTokenAttributes.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Grammars/Grammar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Grammars/Grammar.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Grammars/LineTokenizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Grammars/LineTokenizer.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Grammars/LineTokens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Grammars/LineTokens.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Grammars/LocalStackElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Grammars/LocalStackElement.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Grammars/MetadataConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Grammars/MetadataConsts.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Grammars/OptionalStandardTokenType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Grammars/OptionalStandardTokenType.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Grammars/StandardTokenType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Grammars/StandardTokenType.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Grammars/SyncRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Grammars/SyncRegistry.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Grammars/Token.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Grammars/Token.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Grammars/TokenTypeMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Grammars/TokenTypeMatcher.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Grammars/TokenizeLineResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Grammars/TokenizeLineResult.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Grammars/TokenizeLineResult2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Grammars/TokenizeLineResult2.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Grammars/TokenizeStringResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Grammars/TokenizeStringResult.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Grammars/parser/PListGrammar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Grammars/parser/PListGrammar.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Grammars/parser/Raw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Grammars/parser/Raw.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Grammars/reader/GrammarReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Grammars/reader/GrammarReader.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Matcher/IMatchesName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Matcher/IMatchesName.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Matcher/MatchInjectionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Matcher/MatchInjectionResult.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Matcher/MatchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Matcher/MatchResult.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Matcher/Matcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Matcher/Matcher.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Matcher/MatcherBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Matcher/MatcherBuilder.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Matcher/MatcherWithPriority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Matcher/MatcherWithPriority.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Parser/Json/JSONPListParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Parser/Json/JSONPListParser.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Parser/PList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Parser/PList.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Parser/PListObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Parser/PListObject.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Rules/BeginEndRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Rules/BeginEndRule.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Rules/BeginWhileRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Rules/BeginWhileRule.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Rules/CaptureRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Rules/CaptureRule.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Rules/ICompilePatternsResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Rules/ICompilePatternsResult.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Rules/ICompiledRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Rules/ICompiledRule.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Rules/IGrammarRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Rules/IGrammarRegistry.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Rules/IRegExpSourceAnchorCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Rules/IRegExpSourceAnchorCache.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Rules/IRuleFactoryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Rules/IRuleFactoryHelper.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Rules/IRuleRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Rules/IRuleRegistry.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Rules/IncludeOnlyRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Rules/IncludeOnlyRule.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Rules/MatchRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Rules/MatchRule.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Rules/RegExpSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Rules/RegExpSource.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Rules/RegExpSourceList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Rules/RegExpSourceList.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Rules/Rule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Rules/Rule.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Rules/RuleFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Rules/RuleFactory.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Rules/RuleId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Rules/RuleId.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Themes/PListTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Themes/PListTheme.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Themes/ThemeRaw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Themes/ThemeRaw.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Themes/reader/ThemeReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Themes/reader/ThemeReader.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Types/IRawCaptures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Types/IRawCaptures.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Types/IRawGrammar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Types/IRawGrammar.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Types/IRawRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Types/IRawRepository.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Types/IRawRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Types/IRawRule.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Utils/RegexSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Utils/RegexSource.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Internal/Utils/StringUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Internal/Utils/StringUtils.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Model/AbstractLineList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Model/AbstractLineList.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Model/DecodeMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Model/DecodeMap.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Model/IModelLines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Model/IModelLines.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Model/IModelTokensChangedListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Model/IModelTokensChangedListener.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Model/ITMModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Model/ITMModel.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Model/ITokenizationSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Model/ITokenizationSupport.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Model/LineTokens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Model/LineTokens.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Model/ModelLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Model/ModelLine.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Model/ModelTokensChangedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Model/ModelTokensChangedEvent.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Model/ModelTokensChangedEventBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Model/ModelTokensChangedEventBuilder.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Model/Range.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Model/Range.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Model/TMModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Model/TMModel.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Model/TMState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Model/TMState.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Model/TMToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Model/TMToken.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Model/TMTokenDecodeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Model/TMTokenDecodeData.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Model/Tokenizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Model/Tokenizer.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Registry/IRegistryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Registry/IRegistryOptions.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Registry/Registry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Registry/Registry.cs -------------------------------------------------------------------------------- /src/TextMateSharp/TMException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/TMException.cs -------------------------------------------------------------------------------- /src/TextMateSharp/TextMateSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/TextMateSharp.csproj -------------------------------------------------------------------------------- /src/TextMateSharp/Themes/ColorMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Themes/ColorMap.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Themes/FontStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Themes/FontStyle.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Themes/IRawTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Themes/IRawTheme.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Themes/IRawThemeSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Themes/IRawThemeSetting.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Themes/IThemeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Themes/IThemeProvider.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Themes/IThemeSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Themes/IThemeSetting.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Themes/ParsedThemeRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Themes/ParsedThemeRule.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Themes/Theme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Themes/Theme.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Themes/ThemeTrieElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Themes/ThemeTrieElement.cs -------------------------------------------------------------------------------- /src/TextMateSharp/Themes/ThemeTrieElementRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danipen/TextMateSharp/HEAD/src/TextMateSharp/Themes/ThemeTrieElementRule.cs --------------------------------------------------------------------------------