In tagmanager/src/tm_parser.c:

> +{
> +	TMParserMap *map = &parser_map[lang];
> +	guint i;
> +
> +	for (i = 0; i < map->size; i++)
> +	{
> +		TMParserMapEntry *entry = &map->entries[i];
> +
> +		if (entry->type == type)
> +			return entry->kind;
> +	}
> +	return '-';
> +}
> +
> +
> +void tm_parser_verify_type_mappings(void)

At the moment there are no parsers that would be completely identical. For Geany 1.29 I'd like to start syncing the implementations with uctags and it will be easier to make a diff of the whole parser directory against uctags to see:

  1. Which parsers are in uctags and not in Geany.
  2. Which parsers are in Geany and not in uctags.
  3. How the implementations differ.

And this will be easier with a single parser directory.


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