On 27 February 2012 19:48, klo uo <[email protected]> wrote: > 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 == '.'); > } >
At this point I think you are just going to have to try it and see what might work and what else it might break. Cheers Lex > ? > _______________________________________________ > Geany mailing list > [email protected] > https://lists.uvena.de/cgi-bin/mailman/listinfo/geany _______________________________________________ Geany mailing list [email protected] https://lists.uvena.de/cgi-bin/mailman/listinfo/geany
