Fixed bad ctags output
This commit is contained in:
parent
786d9f2ba6
commit
a5fd3efdb8
8
ctags.d
8
ctags.d
|
@ -62,10 +62,10 @@ class CTagsPrinter : ASTVisitor
|
|||
|
||||
void print(File output)
|
||||
{
|
||||
output.write("!_TAG_FILE_FORMAT 2\n"
|
||||
~ "!_TAG_FILE_SORTED 1\n"
|
||||
~ "!_TAG_FILE_AUTHOR Brian Schott\n"
|
||||
~ "!_TAG_PROGRAM_URL https://github.com/Hackerpilot/Dscanner/\n");
|
||||
output.write("!_TAG_FILE_FORMAT\t2\n"
|
||||
~ "!_TAG_FILE_SORTED\t1\n"
|
||||
~ "!_TAG_FILE_AUTHOR\tBrian Schott\n"
|
||||
~ "!_TAG_PROGRAM_URL\thttps://github.com/Hackerpilot/Dscanner/\n");
|
||||
foreach (str; sort(tagLines))
|
||||
{
|
||||
output.writeln(str);
|
||||
|
|
Loading…
Reference in New Issue