ctags: Providing exclude patterns

ctags supports the --exclude=pattern flag to exclude paths from consideration but it must be typed exactly as specified with the pattern following an equals sign.

ctags --exclude=node_modules ...  # ✅ Correct
ctags --exclude node_modules ...  # ❌ Incorrect
Published on: 22 Apr 2024