slysherz / vscode-comment-box

Extension that transforms lines of text into a pretty comment box.
MIT License
19 stars 2 forks source link

Configuration example needs a comma #16

Closed RafaelLinux closed 2 years ago

RafaelLinux commented 2 years ago
"commentBox.styles": {
    "defaultStyle": {
        "capitalize": false,
        "ignoreInnerIndentation": false,
        "ignoreOuterIndentation": false,
        "removeEmptyLines": false,
        "textAlignment": "left"
    } ,   <----- Needs that comma
    "pythonicStyle": {
        "commentStartToken": "",
        "commentEndToken": "##",
        "leftEdgeToken": "# ",
        "rightEdgeToken": " #",
        "topEdgeToken": "#",
        "bottomEdgeToken": "#",
        "topRightToken": "##",
        "bottomLeftToken": "##"
    }
},
slysherz commented 2 years ago

Nice catch @RafaelLinux , thanks for reporting this.

Fixed : )

RafaelLinux commented 2 years ago

You are wellcome!!!! ;)