Sublime Forum

How to add some tool bar on top and add "Script run button" to this top bar, maybe have plugin for it?

#1

i know about ^+b bindiing. It is not comfortable!
like

1 Like

#2

Select Preference > Browse Packages… and open the User folder. There you create a file Main.sublime-menu with the content:

[
    {
        "caption": "Execute",
        "command": "build",
        "id": "ZZZ_build"
    },
]

This should add a menu entry with the caption Execute, which executes the same command as ctrl+b.

0 Likes

#3

so easy O.o
but how create a tool bar with big buttons?

1 Like

#4

That’s not possible.

1 Like

#5

Will it add the build button in the toolbar?
That should be visible or not?

0 Likes