Skip to content
This repository has been archived by the owner on Apr 15, 2020. It is now read-only.

Add space after commentStart and before commentEnd #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/block-comment-plus.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ function toggle() {
let endLanguage = getLanguage(bufferRange.end);

// defaults to C based comments
let commentStart = '/*';
let commentEnd = '*/';
let commentStart = '/* ';
let commentEnd = ' */';
let addNewLine = false;

if (startLanguage !== endLanguage || startLanguage === "plain") {
Expand Down