Fix the URL in the ctags output

This commit is contained in:
Hackerpilot 2019-08-23 11:19:23 -07:00
parent 19e9b9093a
commit 583fa7a898
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ void printCtags(File output, string[] fileNames)
printer.visit(m);
}
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");
~ "!_TAG_PROGRAM_URL\thttps://github.com/dlang-community/D-Scanner/\n");
tags[].copy(output.lockingTextWriter);
}