I have a C file in the project directory and several C modules in the
directories I added as external directories. When I use GeanyCtags plugin,
"Project/Generate tags" menu item appears. When I click that, files in external
dirs are not tagged.
At Messages the following appears:
find . -not -path '*/\.*' | ctags --totals --fields=fKsSt --extra=-fq
--c-kinds=+p --sort=foldcase --excmd=number -L - -f
/home/username/projects/Proj.tags (in directory: /home/username/projects/Proj/)
I think find should be invoked for each directory. The command should look like
this (at least on Linux/Unix):
cat <(find ...) <(find extdir1 ...) <(find extdir2 ...) | ctags ...
---
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/issues/330#issuecomment-171636625