gotags
gotags copied to clipboard
Unable to create the ctags for a list of files in a directory
The examples given in the readme file are pretty sparse on how you can run the gotags
command over a directory structure without to provide an input file with the go files list to obtain the ctags file. Please give an example how you can do it with a single command to obtain all the files in a project and construct the ctags structure for them.
Actually it can be executed a command like this to obtain all the go files and execute gotags
against them, but you can include like an example:
$ gotags `find . -name "*.go" | grep -v "./vendor"` > tags`
Actually it can be executed a command like this to obtain all the go files and execute
gotags
against them, but you can include like an example:$ gotags `find . -name "*.go" | grep -v "./vendor"` > tags`
I can't find anything in google gotags exclude dir
, and then I saw this.