In src/editor.c:

> +	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" */

I know this is from before this patch but is there some reason not to use the correct tag type for Python methods?


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.