How to exclude multiple directories with Exuberant ctags?

The --exclude option does not expect a list of files. According to ctags‘s man page, “This option may be specified as many times as desired.” So, it’s like this:

ctags -R --exclude=.git --exclude=node_modules --exclude=test

Leave a Comment