KhaosCoders / VSCodeBlockEndTag

A VisualStudio 2017, 2019 and 2022 extension. It adds an end tag to each code block with information about the header / condition
https://khaos-coders.org/projects/visual-studio/codeblockendtag
GNU General Public License v3.0
20 stars 9 forks source link

Feature request: Strip unnecessary space chars from tag #4

Closed SylwesterZarebski closed 7 years ago

SylwesterZarebski commented 7 years ago

Hi, When i have multiline if then tag concatenate these multiple lines (it is ok), but it does this with concatenating all characters. It should strip space characters from tag. Example:

if (a & b
           & c)
{
} if (a & b           & c)

Tag line should be:

} if (a & b & c)
Khaos66 commented 7 years ago

Did it! Hope you'll like version 1.2 ;)