I added [PR](https://github.com/universal-ctags/ctags/pull/1598) for current Ctags version, but Geany uses some previous version and I must use slightly different code for current Geany version: ```diff -static kindDefinition AutoItKinds[] = { +static kindOption AutoItKinds[] = {
- makeSimpleTag (name, K_FUNCTION); + makeSimpleTag (name, AutoItKinds, K_FUNCTION);
- def->kindTable = AutoItKinds; + def->kinds = AutoItKinds; ``` Can I add parser in my PR for Geany [Add AutoIt syntax highlighting #1017](https://github.com/geany/geany/pull/1017)?