├── .gitignore ├── README.markdown ├── compiler └── powershell.vim ├── doc └── ps1.txt ├── ftdetect ├── ps1.vim ├── ps1xml.vim └── xml.vim ├── ftplugin ├── ps1.vim └── ps1xml.vim ├── indent └── ps1.vim └── syntax ├── ps1.vim └── ps1xml.vim /.gitignore: -------------------------------------------------------------------------------- 1 | /doc/tags 2 | -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PProvost/vim-ps1/HEAD/README.markdown -------------------------------------------------------------------------------- /compiler/powershell.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PProvost/vim-ps1/HEAD/compiler/powershell.vim -------------------------------------------------------------------------------- /doc/ps1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PProvost/vim-ps1/HEAD/doc/ps1.txt -------------------------------------------------------------------------------- /ftdetect/ps1.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PProvost/vim-ps1/HEAD/ftdetect/ps1.vim -------------------------------------------------------------------------------- /ftdetect/ps1xml.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PProvost/vim-ps1/HEAD/ftdetect/ps1xml.vim -------------------------------------------------------------------------------- /ftdetect/xml.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PProvost/vim-ps1/HEAD/ftdetect/xml.vim -------------------------------------------------------------------------------- /ftplugin/ps1.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PProvost/vim-ps1/HEAD/ftplugin/ps1.vim -------------------------------------------------------------------------------- /ftplugin/ps1xml.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PProvost/vim-ps1/HEAD/ftplugin/ps1xml.vim -------------------------------------------------------------------------------- /indent/ps1.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PProvost/vim-ps1/HEAD/indent/ps1.vim -------------------------------------------------------------------------------- /syntax/ps1.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PProvost/vim-ps1/HEAD/syntax/ps1.vim -------------------------------------------------------------------------------- /syntax/ps1xml.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PProvost/vim-ps1/HEAD/syntax/ps1xml.vim --------------------------------------------------------------------------------