[Github-comments] [geany/geany] WIP: Scoped calltips (#1188)

Jiří Techet notifications at xxxxx
Fri Aug 26 18:00:19 UTC 2016


> +	if (tags)
> +	{
> +		GPtrArray *filtered = g_ptr_array_new();
> +
> +		foreach_ptr_array(tag, i, tags)
> +		{
> +			if (strcmp(tag->name, word) == 0)
> +				g_ptr_array_add(filtered, tag);
> +		}
> +
> +		g_ptr_array_free(tags, TRUE);
> +		tags = filtered;
> +	}
> +	else
> +	{
> +		/* use all types in case language uses wrong tag type e.g. python "members" instead of "methods" */

Nope, we map the ctags types to our own representation in Geany now:

https://github.com/geany/geany/blob/master/src/tagmanager/tm_parser.c#L96

And methods seem to get mapped to tm_tag_method_t so maybe this comment is just outdated.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/1188/files/91ccf4842a1f86559d419db5582683be2e1f1938#r76461341
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.geany.org/pipermail/github-comments/attachments/20160826/befbece1/attachment.html>


More information about the Github-comments mailing list