alepez / vim-gtest

Vim plugin to quickly select and run GoogleTest asyncronously.
64 stars 12 forks source link

Strip whitespace from test name. #11

Closed nicber closed 8 years ago

nicber commented 8 years ago

I don't know regexes very well, so it maybe be wrong, but it works for me. The previous code didn't parse this line well: TEST( TestCase, TestName ) It produced " TestCase.TestName " instead of "TestCase.TestName".

alepez commented 8 years ago

Thanks nikux