├── .gitattributes ├── .github └── CONTRIBUTING.md ├── .gitignore ├── .gitmodules ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── grammars └── powershell.cson ├── package.json ├── scripts └── convert-grammar.js ├── settings └── language-powershell.cson ├── snippets └── language-powershell.cson └── spec ├── fixtures ├── functions │ ├── function-dash.ps1 │ ├── function-in-function.ps1 │ └── functions.ps1 ├── indents │ ├── foreach-indent-test.ps1 │ ├── param-indent-example.ps1 │ └── pstree-indent-test.ps1 └── issues │ └── 64.ps1 └── powershell-spec.coffee /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrsconfitto/language-powershell/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrsconfitto/language-powershell/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrsconfitto/language-powershell/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrsconfitto/language-powershell/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrsconfitto/language-powershell/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrsconfitto/language-powershell/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrsconfitto/language-powershell/HEAD/README.md -------------------------------------------------------------------------------- /grammars/powershell.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrsconfitto/language-powershell/HEAD/grammars/powershell.cson -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrsconfitto/language-powershell/HEAD/package.json -------------------------------------------------------------------------------- /scripts/convert-grammar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrsconfitto/language-powershell/HEAD/scripts/convert-grammar.js -------------------------------------------------------------------------------- /settings/language-powershell.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrsconfitto/language-powershell/HEAD/settings/language-powershell.cson -------------------------------------------------------------------------------- /snippets/language-powershell.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrsconfitto/language-powershell/HEAD/snippets/language-powershell.cson -------------------------------------------------------------------------------- /spec/fixtures/functions/function-dash.ps1: -------------------------------------------------------------------------------- 1 | Set-PSReadLineKeyHandler -Chord 'Ctrl+p' -Function PreviousHistory 2 | -------------------------------------------------------------------------------- /spec/fixtures/functions/function-in-function.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrsconfitto/language-powershell/HEAD/spec/fixtures/functions/function-in-function.ps1 -------------------------------------------------------------------------------- /spec/fixtures/functions/functions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrsconfitto/language-powershell/HEAD/spec/fixtures/functions/functions.ps1 -------------------------------------------------------------------------------- /spec/fixtures/indents/foreach-indent-test.ps1: -------------------------------------------------------------------------------- 1 | foreach($foo in $myArray) 2 | { 3 | Write-Host "Value $foo" 4 | } 5 | -------------------------------------------------------------------------------- /spec/fixtures/indents/param-indent-example.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrsconfitto/language-powershell/HEAD/spec/fixtures/indents/param-indent-example.ps1 -------------------------------------------------------------------------------- /spec/fixtures/indents/pstree-indent-test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrsconfitto/language-powershell/HEAD/spec/fixtures/indents/pstree-indent-test.ps1 -------------------------------------------------------------------------------- /spec/fixtures/issues/64.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrsconfitto/language-powershell/HEAD/spec/fixtures/issues/64.ps1 -------------------------------------------------------------------------------- /spec/powershell-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrsconfitto/language-powershell/HEAD/spec/powershell-spec.coffee --------------------------------------------------------------------------------