Kaydet (Commit) f0c92858 authored tarafından Nick Treleaven's avatar Nick Treleaven

Show Haxe enum types in the symbol list.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@1886 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst 67c2afa9
......@@ -7,6 +7,8 @@
Apply code from blackdog to parse Haxe typedef tags (thanks).
Show Haxe typedefs in the symbol list.
Add tag_type treeview iter.
* tagmanager/haxe.c:
Show Haxe enum types in the symbol list.
2007-09-13 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
......
......@@ -49,11 +49,10 @@ typedef enum {
static kindOption HxKinds [] = {
{ TRUE, 'm', "method", "methods" },
{ TRUE, 'c', "class", "classes" },
{ TRUE, 'e', "enums", "enumerations" },
{ TRUE, 'e', "enum", "enumerations" },
{ TRUE, 'v', "variable", "variables" },
{ TRUE, 'i', "interface", "interfaces" },
{ TRUE, 't', "typedef", "typedefs" },
};
static void findHxTags (void)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment