├── .editorconfig ├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── build.yaml ├── .gitignore ├── LICENSE ├── README.md ├── Surrounder.sln ├── art └── surrounder.gif ├── src ├── InsertTextCommand.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ └── Icon.png ├── Surrounder.csproj ├── SurrounderPackage.cs ├── VSCommandTable.cs ├── VSCommandTable.vsct ├── source.extension.cs └── source.extension.vsixmanifest └── vs-publish.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/Surrounder/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/Surrounder/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/Surrounder/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/Surrounder/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/Surrounder/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/Surrounder/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/Surrounder/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/Surrounder/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/Surrounder/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/Surrounder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/Surrounder/HEAD/README.md -------------------------------------------------------------------------------- /Surrounder.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/Surrounder/HEAD/Surrounder.sln -------------------------------------------------------------------------------- /art/surrounder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/Surrounder/HEAD/art/surrounder.gif -------------------------------------------------------------------------------- /src/InsertTextCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/Surrounder/HEAD/src/InsertTextCommand.cs -------------------------------------------------------------------------------- /src/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/Surrounder/HEAD/src/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/Surrounder/HEAD/src/Resources/Icon.png -------------------------------------------------------------------------------- /src/Surrounder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/Surrounder/HEAD/src/Surrounder.csproj -------------------------------------------------------------------------------- /src/SurrounderPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/Surrounder/HEAD/src/SurrounderPackage.cs -------------------------------------------------------------------------------- /src/VSCommandTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/Surrounder/HEAD/src/VSCommandTable.cs -------------------------------------------------------------------------------- /src/VSCommandTable.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/Surrounder/HEAD/src/VSCommandTable.vsct -------------------------------------------------------------------------------- /src/source.extension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/Surrounder/HEAD/src/source.extension.cs -------------------------------------------------------------------------------- /src/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/Surrounder/HEAD/src/source.extension.vsixmanifest -------------------------------------------------------------------------------- /vs-publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/Surrounder/HEAD/vs-publish.json --------------------------------------------------------------------------------