Masatake YAMATO
Masatake YAMATO
~CXX~ main: insert tags to the interval table when "end:" field is set Close #3637. With this change, the combination of {scope=_intervaltab}{postrun} regex flags works. $ cat /tmp/input.c int foo(void)...
``` /** * getData() - get data from containers * */ void * getData() {... ``` The first "getData" can be extracted as a tag with "documentation" role of "function"...
See also https://github.com/universal-ctags/ctags/pull/569. Signed-off-by: Masatake YAMATO TODO: - [x] evaluate reference tags on Citre - [ ] update manual pages - [ ] merge #569 - [ ] talk to...
``` readtags -t linux.tags -t glibc.tags openat ``` See https://github.com/universal-ctags/ctags/pull/3304#issuecomment-1528616715
Unlike base parsers, the ptags for the kinds, fields, and extras of sub parsers are not emitted.
TODO - [ ] adds statements for debug printing - [ ] man pages for C/C++/CUDA, versioning - [ ] man pages for LD scripts - [ ] NEWS?
--verbose is the option for you. I should introduce a new standalone option for the purpose. However, I cannot find enough time. _Originally posted by @masatake in https://github.com/universal-ctags/ctags/issues/3648#issuecomment-1437796932_
es is used in readtags for reading S expressions. In some areas, it is broken. I must revise it. following place needs to do such checking too: https://github.com/universal-ctags/ctags/blob/master/dsl/es.c#L2684 _Originally posted...