One small bug I noticed:
if I'm using multiple traits in a class like this:
class Foo {
use BarTrait, FoobarTrait;
}
I cannot import the namespace for the second trait. It says that import already exists. The first one gets imported correctly, it doesn't matter if I try to import the first or the last trait's namespace.
If I have just one use statement per line, I can import all of them:
class Foo {
use BarTrait;
use FoobarTrait;
}
This second example works without any issues.
Thanks for doing this plugin, I use it daily. If I new VimL I'd contribute :(