Thanks for delving me in :)
On Mon, Feb 27, 2012 at 9:31 AM, Lex Trotman <[email protected]> wrote: > The Lua tag parser only gets function names, nothing else, so I don't > see how it will find symbols that you can address as > something.somethingelse. > > The Python tag parser has *hard coded* identifier characters. See > tagmanager/python.c:49-56. > > You cannot set this. Well, can't I do, something like (python.c:53-56): static boolean isIdentifierCharacter (int c) { return (boolean) (isalnum (c) || c == '_' || c == '.'); } ? _______________________________________________ Geany mailing list [email protected] https://lists.uvena.de/cgi-bin/mailman/listinfo/geany
