I'd like to be able to use ctags to browse the apple iphone sdk docsets with vim. Is there a way to generate a ctags file that links to the docsets in question?
I use Objective-C to program for the iPhone, so I ended up using Objective-C Ctags, and changed my commandline to be:
ctags -f iPhone.tags -R --langmap="ObjC:.m .h" --fields=+ias --extra=+q /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Library/Frameworks/
Also, the + and - of the methods get into the tags, and since you don't use them in the code, I had to strip them from the generated tags file.