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 f50914f commit d672bacCopy full SHA for d672bac
bootstrap.php
@@ -229,6 +229,8 @@
229
}
230
231
$mode = ($options['sort'] == 'yes' ? 1 : ($options['sort'] == 'foldcase' ? 2 : 0));
232
+
233
+if (!isset($options['a'])) {
234
$tagline = <<<EOF
235
!_TAG_FILE_FORMAT\t2\t/extended format; --format=1 will not append ;" to lines/
236
!_TAG_FILE_SORTED\t{$mode}\t/0=unsorted, 1=sorted, 2=foldcase/
@@ -237,6 +239,7 @@
237
239
!_TAG_PROGRAM_URL\thttps://github.com/techlivezheng/phpctags\t/official site/
238
240
!_TAG_PROGRAM_VERSION\t${version}\t//\n
241
EOF;
242
+}
243
244
fwrite($tagfile, $tagline.$result);
245
fclose($tagfile);
0 commit comments