Creating a custom toolbar.
-
I would like to create my own toolbar with custom icons. When clicking on an icon, for example, the Pork to Sausage Plugin should become active. I would like to create my own “HTML toolbar” to format text in bold, insert a link or other code snippets. Is it possible to implement this? Maybe I would also like to create multiple toolbars for different purposes.
-
@Hatschipuh said in Creating a custom toolbar.:
I would like to create my own toolbar with custom icons. When clicking on an icon, for example, the Pork to Sausage Plugin should become active. I would like to create my own “HTML toolbar” to format text in bold, insert a link or other code snippets. Is it possible to implement this? Maybe I would also like to create multiple toolbars for different purposes.
There already exist plugins that have HTML Toolbars – look through the Plugins Admin list, and try some of the “HTML” plugins out.
If you just want to customize the existing toolbar, the Customize Toolbar plugin allows you to add commands from any of the menus (including any plugin’s menu command) into the main toolbar.
if you want to create a new separate toolbar yourself, and add it to the Notepad++ interface, you would have to write a plugin to implement the toolbar and the features that it invokes.
Resources for Writing Plugins
-
@Hatschipuh said in Creating a custom toolbar.:
to format text in bold, insert a link or other code snippets.
You can use plugin NppSnippets
https://www.fesevur.com/nppsnippets/ -
@Karlo-F Wow the plugin NppSnippets is great!