Masatake YAMATO
Masatake YAMATO
https://github.com/universal-ctags/ctags/blob/master/docs/parser-tcl.rst (the web page) should be merged to the man page for tcl parser. _Originally posted by @masatake in https://github.com/universal-ctags/ctags/issues/3149#issuecomment-912786427_ ---- One of the known bugs described in the web...
GDScript language reference: * https://docs.godotengine.org/en/latest/tutorials/scripting/gdscript/gdscript_basics.html * https://docs.godotengine.org/en/stable/development/file_formats/gdscript_grammar.html#doc-gdscript-grammar * https://godotengine.org/article/gdscript-progress-report-new-gdscript-now-merged The original discussion for designing the parser: * #3194 * #3199 The critical issues: - [ ] add ctags-lang-gdscript.7.rst.in. The optional...
- [ ] extract multiple var declaration `declrear var0, var1, ... type; ` - [ ] ignore `$$` after the line `DECLARE $$` - [ ] parse schema specifications after...
When thinking about performance, a user may want to use pcre2 as the default engine. See #1861. Adding `{pcre2}` to existing parsers defined in `optlib/*.ctags` is not acceptable. If we...
Described in http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0144r2.pdf input.cc ``` #include std::tuple f() { return {9, 2}; } int main(void) { auto [a, b] = f(); return a + b; } ``` g++ accepts this...
I want to get the comments about the expression and operators you can pass to -Q option of readtags. Also, I would like to get the comments about extending the...
The language consultants/advisers ====================================================== * SystemVerilog - @antoinemadec * JavaScript - @tristanHessell * Vim (script) - @lacygoill The recruitment ====================================================== In #2076, we have been working on Cobol. In #1581,...
I will leave Tokyo tomorrow. So I will give you some attractions:) Like regex and xcmd, having xml parser class will be useful. We can cover svg, html, xhtml, ant,...
See #3020. The new option `--_makeTagEntryReflection-` allows users to add optscript code which ctags runs when making a tag. In the optscript code, you can modify the tag, make an...
"foo" in "using namespace foo;" was captured as using kind. However, "foo" is not defined in the statement. "foo" is referred as a namespace defined somewhere. Therefore, ctags should not...