[geany/geany] e97384: Show go interfaces, structs and struct members in symbol tree

Jiří Techet git-noreply at xxxxx
Thu May 28 14:22:54 UTC 2015


Branch:      refs/heads/master
Author:      Jiří Techet <techet at gmail.com>
Committer:   Jiří Techet <techet at gmail.com>
Date:        Thu, 28 May 2015 14:22:54 UTC
Commit:      e973841ceca799c3301830f792df0c39d9bab1b2
             https://github.com/geany/geany/commit/e973841ceca799c3301830f792df0c39d9bab1b2

Log Message:
-----------
Show go interfaces, structs and struct members in symbol tree


Modified Paths:
--------------
    src/symbols.c

Modified: src/symbols.c
9 lines changed, 6 insertions(+), 3 deletions(-)
===================================================================
@@ -698,7 +698,7 @@ static void add_top_level_items(GeanyDocument *doc)
 				&(tv_iters.tag_variable), _("Variables"), "classviewer-var",
 				&(tv_iters.tag_macro), _("Macros"), "classviewer-macro",
 				&(tv_iters.tag_member), _("Methods"), "classviewer-member",
-				&(tv_iters.tag_other), _("Other"), "classviewer-other", NULL,
+				&(tv_iters.tag_other), _("Other"), "classviewer-other",
 				NULL);
 			break;
 		}
@@ -707,10 +707,13 @@ static void add_top_level_items(GeanyDocument *doc)
 			tag_list_add_groups(tag_store,
 				&(tv_iters.tag_namespace), _("Package"), "classviewer-namespace",
 				&(tv_iters.tag_function), _("Functions"), "classviewer-method",
-				&(tv_iters.tag_macro), _("Constants"), "classviewer-macro",
+				&(tv_iters.tag_interface), _("Interfaces"), "classviewer-struct",
+				&(tv_iters.tag_struct), _("Structs"), "classviewer-struct",
 				&(tv_iters.tag_type), _("Types"), "classviewer-struct",
+				&(tv_iters.tag_macro), _("Constants"), "classviewer-macro",
 				&(tv_iters.tag_variable), _("Variables"), "classviewer-var",
-				&(tv_iters.tag_other), _("Other"), "classviewer-other", NULL,
+				&(tv_iters.tag_member), _("Members"), "classviewer-member",
+				&(tv_iters.tag_other), _("Other"), "classviewer-other",
 				NULL);
 			break;
 		}



--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).


More information about the Commits mailing list