From 583fa7a89866cf4ea7a7933957e798d443137cd6 Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Fri, 23 Aug 2019 11:19:23 -0700 Subject: [PATCH] Fix the URL in the ctags output --- src/dscanner/ctags.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dscanner/ctags.d b/src/dscanner/ctags.d index 19bd324..61fbaf2 100644 --- a/src/dscanner/ctags.d +++ b/src/dscanner/ctags.d @@ -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); }