maurges / vim-cpp-helper

A vim plugin to ease writing c++ code
GNU General Public License v2.0
5 stars 0 forks source link

"virtual" keyword not ignored for :Implement #10

Closed Shatur closed 4 years ago

Shatur commented 4 years ago

For example the following deginition:

virtual void functionExample();

will have the following implementation:

virtual void ClassName::functionExample()
{
}

but expected without virtual keyword:

void ClassName::functionExample()
{
}
maurges commented 4 years ago

That was a small oversight. Fixed: 386beffb16ea981dd7cd83c7efbfc8726b0a6754

Shatur commented 4 years ago

Thanks!