From 4bcb152c253ce6aafe1448d178c9e9c26339e847 Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Thu, 19 Feb 2015 18:04:50 -0800 Subject: [PATCH] Improve comment spacing --- src/dfmt.d | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/dfmt.d b/src/dfmt.d index 516b490..b48a35d 100644 --- a/src/dfmt.d +++ b/src/dfmt.d @@ -179,8 +179,12 @@ private: { if (index > 0) { - if (tokens[index - 1].line + 1 < tokens[index].line) + if (tokens[index - 1].type != tok!";" + && tokens[index - 1].type != tok!"}" + && tokens[index - 1].line + 1 < tokens[index].line) + { newline(); + } else if (tokens[index - 1].line == tokens[index].line) write(" "); }