The extension is GREAT. But when using Undo (Ctrl+Z), I'd like to be able to undo all the actions of the macro; not just the last one.
For example, in this macro, only "editor.action.removeCommentLine" is undone.
"commentDown": [
"editor.action.addCommentLine",
"editor.action.copyLinesDownAction",
"editor.action.removeCommentLine"
]
To Undo a macro, I have to type "Ctrl+Z" as many times as editor actions it has.
Thanks