@techee commented on this pull request.


In projectorganizer/src/prjorg-goto-panel.c:

> +
+	if (!symbols)
+		return ret;
+
+	tf_strv = g_strsplit_set(filter, " ", -1);
+
+	for (i = 0; i < symbols->len && j < 100; i++)
+	{
+		PrjorgGotoSymbol *symbol = symbols->pdata[i];
+		gchar *normalized_name = g_utf8_normalize(symbol->name, -1, G_NORMALIZE_ALL);
+		gboolean filtered = FALSE;
+		gchar **val;
+
+		foreach_strv(val, tf_strv)
+		{
+			gchar *normalized_val = g_utf8_normalize(*val, -1, G_NORMALIZE_ALL);

Done.


Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.Message ID: <geany/geany-plugins/pull/1341/review/2043668902@github.com>