├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── FUNDING.yml └── ISSUE_TEMPLATE.md ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── ZenCodingVS.sln ├── appveyor.yml ├── art ├── example1.png ├── example2.png ├── example3.png ├── example4.png └── example5.png ├── lib └── ZenCoding.dll └── src ├── Commands └── Expander.cs ├── Properties └── AssemblyInfo.cs ├── Resources └── Icon.png ├── ZenCodingPackage.cs ├── ZenCodingVS.csproj ├── source.extension.cs └── source.extension.vsixmanifest /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/ZenCodingVS/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/ZenCodingVS/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/ZenCodingVS/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/ZenCodingVS/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/ZenCodingVS/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/ZenCodingVS/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/ZenCodingVS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/ZenCodingVS/HEAD/README.md -------------------------------------------------------------------------------- /ZenCodingVS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/ZenCodingVS/HEAD/ZenCodingVS.sln -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/ZenCodingVS/HEAD/appveyor.yml -------------------------------------------------------------------------------- /art/example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/ZenCodingVS/HEAD/art/example1.png -------------------------------------------------------------------------------- /art/example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/ZenCodingVS/HEAD/art/example2.png -------------------------------------------------------------------------------- /art/example3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/ZenCodingVS/HEAD/art/example3.png -------------------------------------------------------------------------------- /art/example4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/ZenCodingVS/HEAD/art/example4.png -------------------------------------------------------------------------------- /art/example5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/ZenCodingVS/HEAD/art/example5.png -------------------------------------------------------------------------------- /lib/ZenCoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/ZenCodingVS/HEAD/lib/ZenCoding.dll -------------------------------------------------------------------------------- /src/Commands/Expander.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/ZenCodingVS/HEAD/src/Commands/Expander.cs -------------------------------------------------------------------------------- /src/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/ZenCodingVS/HEAD/src/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/ZenCodingVS/HEAD/src/Resources/Icon.png -------------------------------------------------------------------------------- /src/ZenCodingPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/ZenCodingVS/HEAD/src/ZenCodingPackage.cs -------------------------------------------------------------------------------- /src/ZenCodingVS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/ZenCodingVS/HEAD/src/ZenCodingVS.csproj -------------------------------------------------------------------------------- /src/source.extension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/ZenCodingVS/HEAD/src/source.extension.cs -------------------------------------------------------------------------------- /src/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/ZenCodingVS/HEAD/src/source.extension.vsixmanifest --------------------------------------------------------------------------------