amir9480 / vscode-cpp-helper

vscode extension to create implementation for c++ function prototypes.

Home Page:https://marketplace.visualstudio.com/items?itemName=amiralizadeh9480.cpp-helper

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Create Implementation leaves trailing space on signature of implementation

kipyminyman opened this issue · comments

Generated implementations look like

void Foo::testFunc() // there is a space here (bad)
{
	
}

when they should look like

void Foo::testFunc()// there is no space here (good)
{
	
}

Fixed on v 0.3.1.

With this setting, all my source codes always don't have trailing space, and never noticed this issue.

"files.trimTrailingWhitespace": true,