有没有办法扩展Intellij的实时和自动完成功能对导入语句的了解程度?

My import line looks like this:

github.schq.secious.com/Company/Godeps/_workspace/src/github.com/boltdb/bolt

My code compiles and my tests pass, but the real-time help that I get from Intellij tells me the methods on my bolt object don't exist. Autocomplete doesn't work on them either which causes a lot of headache if I try to ignore the false errors.

If I copy boltdb to the classic location and import it accordingly

github.com/boltdb/bolt

My autocomplete and real-time notifications work just fine and my code continues to compile and pass its tests.