Branch: refs/heads/master
Author: Jiřà Techet <techet(a)gmail.com>
Committer: Jiřà Techet <techet(a)gmail.com>
Date: Thu, 11 Dec 2014 20:35:55 UTC
Commit: dbecaa01e0fbd931035eceae9b9fce7dde2c3fa7
https://github.com/geany/geany-plugins/commit/dbecaa01e0fbd931035eceae9b9fc…
Log Message:
-----------
geanyctags: use "exact" instead of "full"
Modified Paths:
--------------
geanyctags/README
geanyctags/src/geanyctags.c
Modified: geanyctags/README
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -59,7 +59,7 @@ When using the Project->Find tag search, it is possible to select from several
search types:
* prefix (default) - finds all tags with the specified prefix
-* full - finds all tags matching the name exactly
+* exact - finds all tags matching the name exactly
* pattern - finds all tags matching the provided glob pattern
Note that the pattern option is the slowest of the three possibilities because it
Modified: geanyctags/src/geanyctags.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -544,7 +544,7 @@ static void create_dialog_find_file(void)
gtk_size_group_add_widget(size_group, label);
s_ft_dialog.combo_match = gtk_combo_box_text_new();
- gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(s_ft_dialog.combo_match), "full");
+ gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(s_ft_dialog.combo_match), "exact");
gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(s_ft_dialog.combo_match), "prefix");
gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(s_ft_dialog.combo_match), "pattern");
gtk_combo_box_set_active(GTK_COMBO_BOX(s_ft_dialog.combo_match), 1);
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).