├── .github ├── CODE_OF_CONDUCT.md └── SECURITY.md ├── .gitignore ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── PowerShellSyntax.tmLanguage ├── README.md ├── Third Party Notices.txt ├── appveyor.yml ├── examples ├── TheBigTestFile.ps1 ├── advancedFunction.ps1 ├── class.ps1 └── test.ps1 ├── package.json ├── spec ├── powershell-spec.coffee └── testfiles │ ├── syntax_test_Class.ps1 │ ├── syntax_test_Function.ps1 │ └── syntax_test_TheBigTestFile.ps1 └── tools ├── banners.ps1 ├── build-grammar.js └── build-helpers.ps1 /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/EditorSyntax/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/EditorSyntax/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/EditorSyntax/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/EditorSyntax/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/EditorSyntax/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/EditorSyntax/HEAD/LICENSE -------------------------------------------------------------------------------- /PowerShellSyntax.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/EditorSyntax/HEAD/PowerShellSyntax.tmLanguage -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/EditorSyntax/HEAD/README.md -------------------------------------------------------------------------------- /Third Party Notices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/EditorSyntax/HEAD/Third Party Notices.txt -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/EditorSyntax/HEAD/appveyor.yml -------------------------------------------------------------------------------- /examples/TheBigTestFile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/EditorSyntax/HEAD/examples/TheBigTestFile.ps1 -------------------------------------------------------------------------------- /examples/advancedFunction.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/EditorSyntax/HEAD/examples/advancedFunction.ps1 -------------------------------------------------------------------------------- /examples/class.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/EditorSyntax/HEAD/examples/class.ps1 -------------------------------------------------------------------------------- /examples/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/EditorSyntax/HEAD/examples/test.ps1 -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/EditorSyntax/HEAD/package.json -------------------------------------------------------------------------------- /spec/powershell-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/EditorSyntax/HEAD/spec/powershell-spec.coffee -------------------------------------------------------------------------------- /spec/testfiles/syntax_test_Class.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/EditorSyntax/HEAD/spec/testfiles/syntax_test_Class.ps1 -------------------------------------------------------------------------------- /spec/testfiles/syntax_test_Function.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/EditorSyntax/HEAD/spec/testfiles/syntax_test_Function.ps1 -------------------------------------------------------------------------------- /spec/testfiles/syntax_test_TheBigTestFile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/EditorSyntax/HEAD/spec/testfiles/syntax_test_TheBigTestFile.ps1 -------------------------------------------------------------------------------- /tools/banners.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/EditorSyntax/HEAD/tools/banners.ps1 -------------------------------------------------------------------------------- /tools/build-grammar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/EditorSyntax/HEAD/tools/build-grammar.js -------------------------------------------------------------------------------- /tools/build-helpers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/EditorSyntax/HEAD/tools/build-helpers.ps1 --------------------------------------------------------------------------------