├── .editorconfig ├── .gitattributes ├── .gitignore ├── CommentClassifier ├── Classifications.cs └── CommentTagger.cs ├── CommentsPlus-v11.csproj ├── CommentsPlus-v11.sln ├── CommentsPlus-v17.sln ├── CommentsPlus.sln ├── CommentsPlus16 ├── CommentsPlus.csproj └── source.extension.vsixmanifest ├── CommentsPlus17 ├── CommentsPlus17.csproj ├── CommentsPlus17Package.cs └── source.extension.vsixmanifest ├── CommentsPlusShared.projitems ├── CommentsPlusShared.shproj ├── ExtensionMethods ├── ExtensionMethods.cs └── RegistryHelper.cs ├── ItalicComments ├── FormatMapWatcher.cs └── ViewCreationListener.cs ├── LICENSE.md ├── Properties └── AssemblyInfo.cs ├── README.md ├── Samples ├── Class1.vb ├── HTMLPage1.html ├── Sample2.ts ├── SampleClass.cs ├── Script2.js ├── XMLFile1.xml ├── python_class1.py ├── samplepage.xaml ├── samplescript.ps1 ├── test.h └── test.yml └── Shared ├── comments-plus-icon.png ├── comments-plus-screenshot.png ├── comments-plus-t-icon.png ├── cp-screenshot-white.png ├── ms-pl.txt └── readme.rtf /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/.gitignore -------------------------------------------------------------------------------- /CommentClassifier/Classifications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/CommentClassifier/Classifications.cs -------------------------------------------------------------------------------- /CommentClassifier/CommentTagger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/CommentClassifier/CommentTagger.cs -------------------------------------------------------------------------------- /CommentsPlus-v11.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/CommentsPlus-v11.csproj -------------------------------------------------------------------------------- /CommentsPlus-v11.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/CommentsPlus-v11.sln -------------------------------------------------------------------------------- /CommentsPlus-v17.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/CommentsPlus-v17.sln -------------------------------------------------------------------------------- /CommentsPlus.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/CommentsPlus.sln -------------------------------------------------------------------------------- /CommentsPlus16/CommentsPlus.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/CommentsPlus16/CommentsPlus.csproj -------------------------------------------------------------------------------- /CommentsPlus16/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/CommentsPlus16/source.extension.vsixmanifest -------------------------------------------------------------------------------- /CommentsPlus17/CommentsPlus17.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/CommentsPlus17/CommentsPlus17.csproj -------------------------------------------------------------------------------- /CommentsPlus17/CommentsPlus17Package.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/CommentsPlus17/CommentsPlus17Package.cs -------------------------------------------------------------------------------- /CommentsPlus17/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/CommentsPlus17/source.extension.vsixmanifest -------------------------------------------------------------------------------- /CommentsPlusShared.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/CommentsPlusShared.projitems -------------------------------------------------------------------------------- /CommentsPlusShared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/CommentsPlusShared.shproj -------------------------------------------------------------------------------- /ExtensionMethods/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/ExtensionMethods/ExtensionMethods.cs -------------------------------------------------------------------------------- /ExtensionMethods/RegistryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/ExtensionMethods/RegistryHelper.cs -------------------------------------------------------------------------------- /ItalicComments/FormatMapWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/ItalicComments/FormatMapWatcher.cs -------------------------------------------------------------------------------- /ItalicComments/ViewCreationListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/ItalicComments/ViewCreationListener.cs -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/README.md -------------------------------------------------------------------------------- /Samples/Class1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/Samples/Class1.vb -------------------------------------------------------------------------------- /Samples/HTMLPage1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/Samples/HTMLPage1.html -------------------------------------------------------------------------------- /Samples/Sample2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/Samples/Sample2.ts -------------------------------------------------------------------------------- /Samples/SampleClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/Samples/SampleClass.cs -------------------------------------------------------------------------------- /Samples/Script2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/Samples/Script2.js -------------------------------------------------------------------------------- /Samples/XMLFile1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/Samples/XMLFile1.xml -------------------------------------------------------------------------------- /Samples/python_class1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/Samples/python_class1.py -------------------------------------------------------------------------------- /Samples/samplepage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/Samples/samplepage.xaml -------------------------------------------------------------------------------- /Samples/samplescript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/Samples/samplescript.ps1 -------------------------------------------------------------------------------- /Samples/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/Samples/test.h -------------------------------------------------------------------------------- /Samples/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/Samples/test.yml -------------------------------------------------------------------------------- /Shared/comments-plus-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/Shared/comments-plus-icon.png -------------------------------------------------------------------------------- /Shared/comments-plus-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/Shared/comments-plus-screenshot.png -------------------------------------------------------------------------------- /Shared/comments-plus-t-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/Shared/comments-plus-t-icon.png -------------------------------------------------------------------------------- /Shared/cp-screenshot-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/Shared/cp-screenshot-white.png -------------------------------------------------------------------------------- /Shared/ms-pl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/Shared/ms-pl.txt -------------------------------------------------------------------------------- /Shared/readme.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhoumann/CommentsPlus/HEAD/Shared/readme.rtf --------------------------------------------------------------------------------