We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b7839e commit 9bb43b8Copy full SHA for 9bb43b8
phpctags
@@ -15,6 +15,7 @@ if (is_dir($vendor = __DIR__ . '/vendor')) {
15
$options = getopt('af:R',array(
16
'append::',
17
'debug',
18
+ 'exclude:',
19
'excmd::',
20
'fields::',
21
'format::',
@@ -83,6 +84,10 @@ if (isset($options['R'])) {
83
84
continue;
85
}
86
87
+ if (isset($options['exclude']) && false !== strpos($filename, $options['exclude'])) {
88
+ continue;
89
+ }
90
+
91
$result .= $ctags->export($filename, $options);
92
93
} else {
0 commit comments