├── .gitattributes ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── EditorAstProvider.build.ps1 ├── LICENSE ├── README.md ├── debugHarness.ps1 ├── docs ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md └── en-US │ ├── EditorAstProvider.md │ └── New-EditorAstPSDrive.md ├── module ├── EditorAstProvider.format.ps1xml ├── EditorAstProvider.psd1 ├── EditorAstProvider.psm1 └── en-US │ └── Strings.psd1 ├── test └── EditorAstProvider.Tests.ps1 └── tools └── CreateFormatDefinitions.ps1 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeminglyScience/EditorAstProvider/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeminglyScience/EditorAstProvider/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeminglyScience/EditorAstProvider/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeminglyScience/EditorAstProvider/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeminglyScience/EditorAstProvider/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeminglyScience/EditorAstProvider/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /EditorAstProvider.build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeminglyScience/EditorAstProvider/HEAD/EditorAstProvider.build.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeminglyScience/EditorAstProvider/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeminglyScience/EditorAstProvider/HEAD/README.md -------------------------------------------------------------------------------- /debugHarness.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeminglyScience/EditorAstProvider/HEAD/debugHarness.ps1 -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeminglyScience/EditorAstProvider/HEAD/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeminglyScience/EditorAstProvider/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/en-US/EditorAstProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeminglyScience/EditorAstProvider/HEAD/docs/en-US/EditorAstProvider.md -------------------------------------------------------------------------------- /docs/en-US/New-EditorAstPSDrive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeminglyScience/EditorAstProvider/HEAD/docs/en-US/New-EditorAstPSDrive.md -------------------------------------------------------------------------------- /module/EditorAstProvider.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeminglyScience/EditorAstProvider/HEAD/module/EditorAstProvider.format.ps1xml -------------------------------------------------------------------------------- /module/EditorAstProvider.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeminglyScience/EditorAstProvider/HEAD/module/EditorAstProvider.psd1 -------------------------------------------------------------------------------- /module/EditorAstProvider.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeminglyScience/EditorAstProvider/HEAD/module/EditorAstProvider.psm1 -------------------------------------------------------------------------------- /module/en-US/Strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeminglyScience/EditorAstProvider/HEAD/module/en-US/Strings.psd1 -------------------------------------------------------------------------------- /test/EditorAstProvider.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeminglyScience/EditorAstProvider/HEAD/test/EditorAstProvider.Tests.ps1 -------------------------------------------------------------------------------- /tools/CreateFormatDefinitions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeminglyScience/EditorAstProvider/HEAD/tools/CreateFormatDefinitions.ps1 --------------------------------------------------------------------------------