From a5fd3efdb84fea8910604ebc4a45077124b7e76d Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Mon, 22 Jul 2013 01:41:12 +0000 Subject: [PATCH] Fixed bad ctags output --- ctags.d | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ctags.d b/ctags.d index 1cd3d72..233efc2 100755 --- a/ctags.d +++ b/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);