I have been using vim / gvim for 4 months now and now I have found a way to use it. My tag file is generated very well, and here it is a simple line.
my.namespace.classname / path / to / file.js / ^ my.namespace.classname = function (first_arg, $ /; "f
Here is an example of what I need for omnicomplete:
my.namespace.cla <- omnicomplete list with all class names in my.namespace
The above is the key to my problem, because it looks like omnicomplete is only looking for the namespace without including "my". in front of her. Therefore, I see another element in the omnicomplete list, and not in my class name.
However, if I type: tag my.namespace.classname, for example, gvim opens the correct file in the correct position.
What is wrong and how can I make it work?
source
share