[Geany] How to define autocomplete trigger and question about calltip appearance

klo uo klonuo at xxxxx
Mon Feb 27 08:48:38 UTC 2012


Thanks for delving me in :)


On Mon, Feb 27, 2012 at 9:31 AM, Lex Trotman <elextr at gmail.com> 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 == '.');
}

?



More information about the Users mailing list