maurges / vim-cpp-helper

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

"static" keyword is not ignored for :Implement #12

Closed Shatur closed 4 years ago

Shatur commented 4 years ago

The issue is similar to #10. For example the following deginition:

static void functionExample();

will have the following implementation:

static void ClassName::functionExample()
{
}

but expected without static keyword:

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

Done: ec26799922ddb57372c8631b1e7506860cd76dec

Shatur commented 4 years ago

Thank you!