codemaid
codemaid copied to clipboard
Include revisionHistory in Formatting Comment
Environment
- Visual Studio version: Professional 2019 Version 16.4.2
- CodeMaid version: 11.1
- Code language: VB
Description
Regarding Format Comment, Could you also include support for the <revisionHostory> block. I use it to track changes.
Steps to recreate
- Mark comment section
- Ctrl + M, N
My CodeMaid Formatting settings
Wrap comments at column (100) (true) Skip wrapping on the last word Extra indent for values inside XML comments (2) (false) Add spacing around XML tags (false) Add space inside self closing tags (false) Keep XML tags together (false) Align XML param tags (true) Always split summary tags onto multiple lines (true) Always split all XML tags onto multiple lines
Current behavior
''' <revisionHistory visible="true">
''' <revision date="2019/02/28" version="1.1.1.0" author="coderName" visible="true">Now I can
''' Walk.</revision><revision date="2019/02/27" version="1.1.0.0" author="coderName"
''' visible="true">Now I can speak.</revision><revision date="2019/02/26" version="1.0.0.0"
''' author="coderName" visible="true">Now I Was made.</revision>
''' </revisionHistory>
Expected behavior
''' <revisionHistory visible="true">
''' <revision date="2019/02/28" version="1.1.1.0" author="coderName" visible="true">
''' Now I can Walk.
''' </revision>
''' <revision date="2019/02/27" version="1.1.0.0" author="coderName" visible="true">
''' Now I can speak.
''' </revision>
''' <revision date="2019/02/26" version="1.0.0.0" author="coderName" visible="true">
''' Now I Was made.
''' </revision>
''' </revisionHistory>
Thanks for the suggestion. Tagging @willemduncan as the expert in that feature.
@codecadwallader and @willemduncan Any progress on this suggestion?