From: Erik Skultety Date: Tue, 18 Sep 2018 12:21:33 +0000 (+0200) Subject: ctags: Generate tags for headers, i.e. function prototypes X-Git-Tag: v4.8.0-rc1~163 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b916a25e8ac98e93da204855fc5a5ff85f95b2df;p=thirdparty%2Flibvirt.git ctags: Generate tags for headers, i.e. function prototypes From time to time it's handy to jump directly to a function prototype in a header. However, generating tags for headers is disabled by default in ctags, let's enable it by using --c-kinds=+p. Signed-off-by: Erik Skultety --- diff --git a/.ctags b/.ctags index 75e9753182..a4f17b589d 100644 --- a/.ctags +++ b/.ctags @@ -3,3 +3,4 @@ --exclude=*.html --exclude=*.html.in --langmap=c:+.h.in +--c-kinds=+p