[geany/geany-plugins] c5ded4: geanyctags: ignore hidden directories for tag generation (on linux)
Jiří Techet
git-noreply at xxxxx
Sun Oct 19 18:19:59 UTC 2014
Branch: refs/heads/master
Author: Jiří Techet <techet at gmail.com>
Committer: Jiří Techet <techet at gmail.com>
Date: Sun, 19 Oct 2014 18:19:59 UTC
Commit: c5ded4ee8ca7e4bb1ba7518dbe83fee910acb1e3
https://github.com/geany/geany-plugins/commit/c5ded4ee8ca7e4bb1ba7518dbe83fee910acb1e3
Log Message:
-----------
geanyctags: ignore hidden directories for tag generation (on linux)
Modified Paths:
--------------
geanyctags/src/geanyctags.c
Modified: geanyctags/src/geanyctags.c
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -181,7 +181,7 @@ static gchar *generate_find_string(GeanyProject *prj)
{
gchar *ret;
- ret = g_strdup("find");
+ ret = g_strdup("find . -not -path '*/\\.*'");
if (!EMPTY(prj->file_patterns))
{
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
More information about the Plugins-Commits
mailing list