CUDA 7.5 issues with nsight eclipse edition indexer

just installed cuda 7.5 on ubuntu 15.04. For some reason my indexer is not picking up any of the cuda functions. I am not sure why. The code compiles fine but I find it annoying not being able to hit Ctrl+Space and see my options. I tried to include some of the cuda headers but this does not seem to help. The indexer works for all of the stl functions but none of the function that start with cuda… show up in the auto complete.

Putting this at the top of the program seems to work but is there a betters solution?

#ifdef CDT_PARSER
#undef CUDA_RUNTIME_H
#include <cuda_runtime.h>
#endif

I have the same problem. Did you find any solution?