Branch: refs/heads/master Author: Jiří Techet techet@gmail.com Committer: Jiří Techet techet@gmail.com Date: Thu, 19 Nov 2020 10:30:28 UTC Commit: ab681681312acea05b2a484e99dd25647d21dddd https://github.com/geany/geany/commit/ab681681312acea05b2a484e99dd25647d21dd...
Log Message: ----------- Don't use tag identifier F
It's used for file tags upstram and might interfere with it.
Modified Paths: -------------- ctags/parsers/geany_objc.c ctags/parsers/geany_ruby.c ctags/parsers/geany_rust.c ctags/parsers/geany_sql.c src/tagmanager/tm_parser.c
Modified: ctags/parsers/geany_objc.c 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -46,7 +46,7 @@ static kindDefinition ObjcKinds[] = { {true, 'm', "method", "Object's method"}, {true, 'c', "class", "Class' method"}, {true, 'v', "var", "Global variable"}, - {true, 'F', "field", "Object field"}, + {true, 'E', "field", "Object field"}, {true, 'f', "function", "A function"}, {true, 'p', "property", "A property"}, {true, 't', "typedef", "A type alias"},
Modified: ctags/parsers/geany_ruby.c 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -39,7 +39,7 @@ static kindDefinition RubyKinds [] = { { true, 'c', "class", "classes" }, { true, 'f', "method", "methods" }, { true, 'm', "module", "modules" }, - { true, 'F', "singletonMethod", "singleton methods" }, + { true, 'S', "singletonMethod", "singleton methods" }, #if 0 /* Following two kinds are reserved. */ { true, 'd', "describe", "describes and contexts for Rspec" },
Modified: ctags/parsers/geany_rust.c 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -58,7 +58,7 @@ static kindDefinition rustKinds[] = { {true, 'M', "macro", "Macro Definition"}, {true, 'm', "field", "A struct field"}, {true, 'e', "enumerator", "An enum variant"}, - {true, 'F', "method", "A method"}, + {true, 'P', "method", "A method"}, };
typedef enum {
Modified: ctags/parsers/geany_sql.c 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -204,7 +204,7 @@ static kindDefinition SqlKinds [] = { { true, 'c', "cursor", "cursors" }, { false, 'd', "prototype", "prototypes" }, { true, 'f', "function", "functions" }, - { true, 'F', "field", "record fields" }, + { true, 'E', "field", "record fields" }, { false, 'l', "local", "local variables" }, { true, 'L', "label", "block label" }, { true, 'P', "package", "packages" },
Modified: src/tagmanager/tm_parser.c 8 lines changed, 4 insertions(+), 4 deletions(-) =================================================================== @@ -159,7 +159,7 @@ static TMParserMapEntry map_SQL[] = { {'c', tm_tag_undef_t}, {'d', tm_tag_prototype_t}, {'f', tm_tag_function_t}, - {'F', tm_tag_field_t}, + {'E', tm_tag_field_t}, {'l', tm_tag_undef_t}, {'L', tm_tag_undef_t}, {'P', tm_tag_package_t}, @@ -209,7 +209,7 @@ static TMParserMapEntry map_RUBY[] = { {'c', tm_tag_class_t}, {'f', tm_tag_method_t}, {'m', tm_tag_namespace_t}, - {'F', tm_tag_member_t}, + {'S', tm_tag_member_t}, };
static TMParserMapEntry map_TCL[] = { @@ -458,7 +458,7 @@ static TMParserMapEntry map_OBJC[] = { {'m', tm_tag_method_t}, {'c', tm_tag_class_t}, {'v', tm_tag_variable_t}, - {'F', tm_tag_field_t}, + {'E', tm_tag_field_t}, {'f', tm_tag_function_t}, {'p', tm_tag_undef_t}, {'t', tm_tag_typedef_t}, @@ -496,7 +496,7 @@ static TMParserMapEntry map_RUST[] = { {'M', tm_tag_macro_t}, {'m', tm_tag_field_t}, {'e', tm_tag_enumerator_t}, - {'F', tm_tag_method_t}, + {'P', tm_tag_method_t}, };
static TMParserMapEntry map_GO[] = {
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).