Masatake YAMATO

Results 774 comments of Masatake YAMATO

Instead of merging the optimized version of the Kotolin grammar file, I integrated pegof into our build scripts. So I close this. @dolik-rce, when you think pegof is stable enough,...

I also wanted the feature to support multiple tag files. Supporting multiple tags files in readtags is not so hard (but not easy enough to implement in a week.). Each...

>> I expect the second approach (supporting _READTAGS_INCLUDE_TAGS) doesn't require citre much change to support multiple tags files. > Yes, as Citre uses only one tags file for one directory....

A version without ptag unification works on my local PC: ``` $ ~/bin/ctags -o podman.tags -R ~/var/podman $ ~/bin/ctags -o glibc.tags -R ~/var/glibc $ ~/bin/ctags -o coreutils832.tags -R /srv/sources9c/sources/c/coreutils/8.32-31.el9--srpm/pre-build/coreutils-8.32 $...

`#!_READTAGS_INCLUDE` also works. ``` $ ./readtags -t podman.tags -t glibc.tags -t coreutils832.tags --generate-aggregate-tag-file | tee tags !_READTAGS_INCLUDE podman.tags // !_READTAGS_INCLUDE glibc.tags // !_READTAGS_INCLUDE coreutils832.tags // !_TAG_FILE_FORMAT 2 // !_TAG_FILE_SORTED 1...

You can try the experimental code: https://github.com/universal-ctags/ctags/pull/4068 The experimental code doesn't consider the consistency of pseudo tags between tag files at all. So `-D` and `-P` options are unreliable. However,...

> Seems the sorting is done separately on each tags file. Is that right? You are correct. I updated the pull request for supporting "-S ... -t ... -t ..."....

When we will support `import` in the future, introducing `unknown` kind is one of choice.

Thank you for reporting. Could you show an example input that a C++ compiler accepts? I don't know C++ well. I read https://en.cppreference.com/w/cpp/language/final. It seems that the final keyword can...

If the final keyword is used inside a struct, it is recorded in `properties:` field as expected. ``` [yamato@dev64]/tmp% cat foo.cpp struct Base { virtual void foo(); }; struct A...