macros icon indicating copy to clipboard operation
macros copied to clipboard

keybinding fail

Open Gubith opened this issue 6 years ago • 2 comments

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"
	]
},

Gubith avatar Jul 31 '19 15:07 Gubith

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.

oloryn avatar Nov 17 '19 22:11 oloryn

See @jeff-hykins's macro-commander, a fork of this extension which fixes this and works on the current version of VSCode.

oloryn avatar Nov 21 '19 18:11 oloryn