geddski / macros

macros support for VS Code
MIT License
165 stars 36 forks source link

blockCommentDown #44

Open dunks184 opened 5 years ago

dunks184 commented 5 years ago

Hey Mate, Love the extension. Thought this might be helpful.

To 'commentDown' a block instead of just one line:

"macros": {
"commentDown": [
    "macros.expandSelection",
    "editor.action.clipboardCopyAction",
    "editor.action.commentLine",
    "editor.action.insertLineAfter",
    "editor.action.insertLineAfter",
    "editor.action.clipboardPasteAction",
    ]
}

Cheers, dunks