tags:

views:

197

answers:

1

I am using Exuberant Ctags 5.7. I am trying to build a tag database for CGContext.h with:

tags /System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreGraphics.framework/Headers/CGContext.h

The resulting tags file has no functions included in it. It only has 75 lines for types, and enums.

+1  A: 

You need to add --c-types=+p (now --c-kinds).

Randy Proctor
--c-kinds=+p works too. I couldn't find documentation for --c-types.
phi
Sorry, old version. Corrected.
Randy Proctor