I am working on an extension which has an output channel, and I wish to contribute a button/command to the toolbar for that output channel. I need a way to reference that toolbar as a contribution point, like "view/title", as well as the output channel view.
Perhaps it would look something like this in the package.json: "output/title": [ "command": "myExtensionOutputChannelView.cmd", "when": "view == output.myExtensionOutputChannelView" ]
Is there a way to do this? Thanks.