@techee commented on this pull request.


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

> +	GPtrArray *arr = g_ptr_array_new_full(0, (GDestroyNotify)prjorg_goto_symbol_free);
+	gint lineno = atoi(line_str);
+	gint linenum = sci_get_line_count(doc->editor->sci);
+	guint i;
+
+	for (i = 0; i < 4; i++)
+	{
+		PrjorgGotoSymbol *sym = g_new0(PrjorgGotoSymbol, 1);
+
+		sym->file_name = utils_get_utf8_from_locale(doc->real_path);
+		sym->icon = _ICON_OTHER;
+
+		switch (i)
+		{
+			case 0:
+				sym->name = g_strdup(_("line typed above"));

Done (also in the LSP plugin).


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/2043659316@github.com>