How to add custom icons in editor action toolbar - visual-studio-code

I want to add a custom icon on the editor action toolbar in vs code, which would be a link to a command. The icon should be visible alongside the file when any file is open on vscode. How to add the custom icon? Any leads would be helpful
image

Add your custom command inside package.json under "editor/title" and "command". For more details check the following links:
Editor Action
Contribution point

Related

VSCode Extension button over editor

I want to create a button that is placed over my text editor like the "Add configuration..." button. I could not find any documentation in the oficial docs.
https://i0.wp.com/www.alphr.com/wp-content/uploads/2021/08/JS12.png?w=700&ssl=1
This is what I want to accomplish but with custom text when my extension is actived. Or at least create a new bar over the panel so I can place my button there.

How to replace VSCode terminal icon with custom icon?

as I stated in the title. I want to add custom icon to icon in terminal in VSCode.
I want to upload my own icons where I show in the picture below. Also I want it to stay the same every time I open it. How can I do it?
I also wanted it. Unfortunately VSCode doesn't have this feature. You should open a new issue on https://github.com/microsoft/vscode and ask this new feature.

Notepad++ macro in menu bar with icon

I'm looking for a way to add a macro as an icon in the toolbar.
It seems possible to bind keys to the macro, customize the toolbar with Customize Toolbar and use toolbarIcons.xml to customize it. But none of those options provide an option to add a recorded macro as an icon to the toolbar in Notepad++.
Any suggestions?
As you said this can be achieved with CustomizeToolbar plugin. Just follow tyhese steps:
Install CustomizeToolbar plugin (you can find it here on Sourceforge)
Restart notepad++
Enable custom buttons checking Plugin/Customize Toolbar/Custom Buttons:
Notepad++ will ask you to restart:
Open %APPDATA%\Notepad++\plugins\config\CustomizeToolbar.btn and add this line: Macro,YourMacroName,,, replacing YourMacroName with the name of your macro
Restart notepad++
A new button should appear in the toolbar:

Adding action item to a treeview's toolbar of eclipse plugin

There is a an eclipse plugin (I don't have source code of it) that I want to contribute to.
Plugin has an Editor, in this editor there is a TreeView with a toolbar.
I want to add new button to this toolbar with my action.
Can it be done?
I wasn't able to get useful information using Plugin Spy.
(Alt-Shift-F1 shows info about the editor and not about the view inside the editor,)
Or it's possible to add toolbar buttons only to eclipse 'core' views like 'Navigator'?
No, you can't add to the Toolbar from outside of the plugin unless the plugin has provided extension points to allow this.

eclipse plugin development-adding button to toolbar and its behaviour

Using eclipse plugin, I am trying to add some buttons in toolbar and want to perform some action onclick to that button.
so what i did in extension tab i added org.eclipse.ui.menus and so added a menucontribution to it with URI location- toolbar:org.eclipse.ui.main.toolbar.And then a toolbar in it with a command lets say Design
so by doing this a got a button on toolbar with name Design.
now i want it should be clickable (as for now it is inactive) and on click i can add some behavior/action to it.
please help.
You can use "Hello,World Command" plug-in template which adds a "Sample Menu" in the toolbar and start from that point.