Merge pull request #773 from dlang-community/update-ctags-url

Fix the URL in the ctags output
This commit is contained in:
Brian Schott 2019-09-12 16:46:55 -07:00 committed by GitHub
commit d4dd5b9864
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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);
}