From 1fe23ebb5066ff82ade2864532a872f3c5c80484 Mon Sep 17 00:00:00 2001 From: Junior Mayhe Date: Mon, 20 Feb 2023 19:37:05 +0000 Subject: [PATCH] fix: added space to count lines of file --- src/extension.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extension.ts b/src/extension.ts index f5dc0c4..c6a8ee4 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -283,7 +283,7 @@ class CodeCounterController { const lineCounter = c.getCounter(doc.uri.fsPath, doc.languageId); if (lineCounter) { const result = lineCounter?.count(doc.getText()); - this.showStatusBar(`Code:${result.code} Comment:${result.comment} Blank:${result.blank}`); + this.showStatusBar(`Code: ${result.code} Comment: ${result.comment} Blank: ${result.blank}`); } else { this.showStatusBar(); }