Created
December 28, 2015 18:14
-
-
Save camilopayan/088df104de184575f4d1 to your computer and use it in GitHub Desktop.
Using Universal Ctags to get everything in composer's vendor folder
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find [PATH TO VENDOR FOLDER] -type f -name '*.php' | grep -v -e "[Tt]est" | xargs ctags -a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
obv replace your composer vendor folder here.
Works pretty well and leaves out test files.