macros
macros copied to clipboard
keybinding fail
keybinding problem with "Macros.commentDown" The error is "Value is not accepted. Valid values: ..." Currently no other problems showing in all of vsCode.
My custom macros were failing this way so I removed all that and put only examples from the info page.
keybindings.json
{ "key": "alt+d", "command": "Macros.commentDown" },
settings.json
"macros": {
"commentDown": [
"editor.action.copyLinesDownAction",
"cursorUp",
"editor.action.addCommentLine",
"cursorDown"
]
},
Just installed macros on the latest VSCode (1.40.1), and I'm seeing the same problem. With macros not being added to the command palette, and keybindings now not working, this extension doesn't seem to be useful.
See @jeff-hykins's macro-commander, a fork of this extension which fixes this and works on the current version of VSCode.