Masatake YAMATO

Results 774 comments of Masatake YAMATO

For languages for programming, the primary task of ctags is to extract names defining language objects. ``` import create from "./bar.js" ``` `create` is not defined in foo.js. Instead, foo.js...

> If import create from "./bar.js" binds create to the anonymous function, let me know. I tried: ``` $ tree . ├── bar.js ├── foo.js └── package.json 1 directory, 3...

I recongnize again that we need `unknown/Y` to solve some issues about the JavaScript parser.

I don't know. Vim people may know. Regarding reading https://docs.ctags.io/en/stable/man/tags.5.html , vi handles patterns as Ex commands. So your question is "What is the syntax of the Ex command?"

> May that come handy to anyone to have less restrictive tagfiles , for use with vim I don't understand what you wrote well. Could you tell me more? We...

So I wonder what you want is `patternAppend` regex flag that can be used like: ``` --regex-dantags=//\1/i/{patternAppend=\\( (X)\\)\\?} ``` Of course, using sed is not a bad idea.

`patternAppend` is not implemented yet. Just an idea. Would you like such a flag?

Incredible work! At first glance, the following rules in Makefile.am are the parts we must extend: ``` .peg.c: $(packcc_verbose)$(PACKCC) -o $(top_builddir)/peg/$(*F) "$

> Well, using extending configure with HAVE_PEGOF macro would solve the problem with unsupported platforms, but there are other potential problems. The code is not yet stable enough and I...

I opened #4026. The good news is that I found a bug in pegof during work on #4026. We are enjoying open-source development now.