├── .gitignore ├── LICENSE ├── README.md ├── SublimeTextSyntaxes.sublime-project ├── plist ├── ABC Notation.tmBundle │ ├── Preferences │ │ ├── Comments.tmPreferences │ │ ├── Miscellaneous.tmPreferences │ │ ├── PostScript Comments.tmPreferences │ │ ├── PostScript Folding.tmPreferences │ │ ├── Symbol Index.tmPreferences │ │ └── Symbol List.tmPreferences │ └── Syntaxes │ │ ├── ABC Formatting Extension.tmLanguage │ │ ├── ABC Notation.tmLanguage │ │ └── PostScript.tmLanguage └── GoCoEdit.tmBundle │ ├── Preferences │ ├── Comments.tmPreferences │ ├── Miscellaneous.tmPreferences │ ├── Symbol Index.tmPreferences │ └── Symbol List.tmPreferences │ └── Syntaxes │ └── GoCoEdit Mode.tmLanguage ├── sublime ├── ABC Notation │ ├── ABC Formatting Extension.sublime-syntax │ ├── ABC Notation.sublime-syntax │ ├── Completions │ │ └── Decorations.sublime-completions │ ├── PostScript.sublime-syntax │ ├── Snippets │ │ ├── Embedded Tune.sublime-snippet │ │ └── Tune.sublime-snippet │ ├── Support │ │ ├── ABC Notation │ │ │ ├── Comments.tmPreferences │ │ │ ├── Miscellaneous.tmPreferences │ │ │ ├── Symbol Index.tmPreferences │ │ │ └── Symbol List.tmPreferences │ │ └── PostScript │ │ │ ├── Comments.tmPreferences │ │ │ └── Folding.tmPreferences │ ├── syntax_test_abc.abc │ ├── syntax_test_fmt.fmt │ └── syntax_test_ps.ps ├── GoCoEdit │ ├── Comments.tmPreferences │ ├── GoCoEdit Indents.tmPreferences │ ├── GoCoEdit Mode.sublime-syntax │ ├── GoCoEdit Theme.sublime-syntax │ ├── Indentation Rules.tmPreferences │ └── Regular Expression (Escaped).sublime-syntax └── Oniguruma Regular Expressions.sublime-syntax └── yaml ├── ABC Notation ├── ABC Formatting Extension.YAML-tmLanguage ├── ABC Notation.YAML-tmLanguage ├── Augmented BNF.YAML-tmLanguage └── Extended BNF.YAML-tmLanguage ├── ABC.YAML-tmLanguage ├── GoCoEdit └── GoCoEdit Mode.YAML-tmLanguage └── RELAX NG Compact.YAML-tmLanguage /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/README.md -------------------------------------------------------------------------------- /SublimeTextSyntaxes.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/SublimeTextSyntaxes.sublime-project -------------------------------------------------------------------------------- /plist/ABC Notation.tmBundle/Preferences/Comments.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/plist/ABC Notation.tmBundle/Preferences/Comments.tmPreferences -------------------------------------------------------------------------------- /plist/ABC Notation.tmBundle/Preferences/Miscellaneous.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/plist/ABC Notation.tmBundle/Preferences/Miscellaneous.tmPreferences -------------------------------------------------------------------------------- /plist/ABC Notation.tmBundle/Preferences/PostScript Comments.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/plist/ABC Notation.tmBundle/Preferences/PostScript Comments.tmPreferences -------------------------------------------------------------------------------- /plist/ABC Notation.tmBundle/Preferences/PostScript Folding.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/plist/ABC Notation.tmBundle/Preferences/PostScript Folding.tmPreferences -------------------------------------------------------------------------------- /plist/ABC Notation.tmBundle/Preferences/Symbol Index.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/plist/ABC Notation.tmBundle/Preferences/Symbol Index.tmPreferences -------------------------------------------------------------------------------- /plist/ABC Notation.tmBundle/Preferences/Symbol List.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/plist/ABC Notation.tmBundle/Preferences/Symbol List.tmPreferences -------------------------------------------------------------------------------- /plist/ABC Notation.tmBundle/Syntaxes/ABC Formatting Extension.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/plist/ABC Notation.tmBundle/Syntaxes/ABC Formatting Extension.tmLanguage -------------------------------------------------------------------------------- /plist/ABC Notation.tmBundle/Syntaxes/ABC Notation.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/plist/ABC Notation.tmBundle/Syntaxes/ABC Notation.tmLanguage -------------------------------------------------------------------------------- /plist/ABC Notation.tmBundle/Syntaxes/PostScript.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/plist/ABC Notation.tmBundle/Syntaxes/PostScript.tmLanguage -------------------------------------------------------------------------------- /plist/GoCoEdit.tmBundle/Preferences/Comments.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/plist/GoCoEdit.tmBundle/Preferences/Comments.tmPreferences -------------------------------------------------------------------------------- /plist/GoCoEdit.tmBundle/Preferences/Miscellaneous.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/plist/GoCoEdit.tmBundle/Preferences/Miscellaneous.tmPreferences -------------------------------------------------------------------------------- /plist/GoCoEdit.tmBundle/Preferences/Symbol Index.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/plist/GoCoEdit.tmBundle/Preferences/Symbol Index.tmPreferences -------------------------------------------------------------------------------- /plist/GoCoEdit.tmBundle/Preferences/Symbol List.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/plist/GoCoEdit.tmBundle/Preferences/Symbol List.tmPreferences -------------------------------------------------------------------------------- /plist/GoCoEdit.tmBundle/Syntaxes/GoCoEdit Mode.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/plist/GoCoEdit.tmBundle/Syntaxes/GoCoEdit Mode.tmLanguage -------------------------------------------------------------------------------- /sublime/ABC Notation/ABC Formatting Extension.sublime-syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/sublime/ABC Notation/ABC Formatting Extension.sublime-syntax -------------------------------------------------------------------------------- /sublime/ABC Notation/ABC Notation.sublime-syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/sublime/ABC Notation/ABC Notation.sublime-syntax -------------------------------------------------------------------------------- /sublime/ABC Notation/Completions/Decorations.sublime-completions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/sublime/ABC Notation/Completions/Decorations.sublime-completions -------------------------------------------------------------------------------- /sublime/ABC Notation/PostScript.sublime-syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/sublime/ABC Notation/PostScript.sublime-syntax -------------------------------------------------------------------------------- /sublime/ABC Notation/Snippets/Embedded Tune.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/sublime/ABC Notation/Snippets/Embedded Tune.sublime-snippet -------------------------------------------------------------------------------- /sublime/ABC Notation/Snippets/Tune.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/sublime/ABC Notation/Snippets/Tune.sublime-snippet -------------------------------------------------------------------------------- /sublime/ABC Notation/Support/ABC Notation/Comments.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/sublime/ABC Notation/Support/ABC Notation/Comments.tmPreferences -------------------------------------------------------------------------------- /sublime/ABC Notation/Support/ABC Notation/Miscellaneous.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/sublime/ABC Notation/Support/ABC Notation/Miscellaneous.tmPreferences -------------------------------------------------------------------------------- /sublime/ABC Notation/Support/ABC Notation/Symbol Index.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/sublime/ABC Notation/Support/ABC Notation/Symbol Index.tmPreferences -------------------------------------------------------------------------------- /sublime/ABC Notation/Support/ABC Notation/Symbol List.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/sublime/ABC Notation/Support/ABC Notation/Symbol List.tmPreferences -------------------------------------------------------------------------------- /sublime/ABC Notation/Support/PostScript/Comments.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/sublime/ABC Notation/Support/PostScript/Comments.tmPreferences -------------------------------------------------------------------------------- /sublime/ABC Notation/Support/PostScript/Folding.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/sublime/ABC Notation/Support/PostScript/Folding.tmPreferences -------------------------------------------------------------------------------- /sublime/ABC Notation/syntax_test_abc.abc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/sublime/ABC Notation/syntax_test_abc.abc -------------------------------------------------------------------------------- /sublime/ABC Notation/syntax_test_fmt.fmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/sublime/ABC Notation/syntax_test_fmt.fmt -------------------------------------------------------------------------------- /sublime/ABC Notation/syntax_test_ps.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/sublime/ABC Notation/syntax_test_ps.ps -------------------------------------------------------------------------------- /sublime/GoCoEdit/Comments.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/sublime/GoCoEdit/Comments.tmPreferences -------------------------------------------------------------------------------- /sublime/GoCoEdit/GoCoEdit Indents.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/sublime/GoCoEdit/GoCoEdit Indents.tmPreferences -------------------------------------------------------------------------------- /sublime/GoCoEdit/GoCoEdit Mode.sublime-syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/sublime/GoCoEdit/GoCoEdit Mode.sublime-syntax -------------------------------------------------------------------------------- /sublime/GoCoEdit/GoCoEdit Theme.sublime-syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/sublime/GoCoEdit/GoCoEdit Theme.sublime-syntax -------------------------------------------------------------------------------- /sublime/GoCoEdit/Indentation Rules.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/sublime/GoCoEdit/Indentation Rules.tmPreferences -------------------------------------------------------------------------------- /sublime/GoCoEdit/Regular Expression (Escaped).sublime-syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/sublime/GoCoEdit/Regular Expression (Escaped).sublime-syntax -------------------------------------------------------------------------------- /sublime/Oniguruma Regular Expressions.sublime-syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/sublime/Oniguruma Regular Expressions.sublime-syntax -------------------------------------------------------------------------------- /yaml/ABC Notation/ABC Formatting Extension.YAML-tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/yaml/ABC Notation/ABC Formatting Extension.YAML-tmLanguage -------------------------------------------------------------------------------- /yaml/ABC Notation/ABC Notation.YAML-tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/yaml/ABC Notation/ABC Notation.YAML-tmLanguage -------------------------------------------------------------------------------- /yaml/ABC Notation/Augmented BNF.YAML-tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/yaml/ABC Notation/Augmented BNF.YAML-tmLanguage -------------------------------------------------------------------------------- /yaml/ABC Notation/Extended BNF.YAML-tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/yaml/ABC Notation/Extended BNF.YAML-tmLanguage -------------------------------------------------------------------------------- /yaml/ABC.YAML-tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/yaml/ABC.YAML-tmLanguage -------------------------------------------------------------------------------- /yaml/GoCoEdit/GoCoEdit Mode.YAML-tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/yaml/GoCoEdit/GoCoEdit Mode.YAML-tmLanguage -------------------------------------------------------------------------------- /yaml/RELAX NG Compact.YAML-tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lewdlime/SublimeTextSyntaxes/HEAD/yaml/RELAX NG Compact.YAML-tmLanguage --------------------------------------------------------------------------------