Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

GMEdit

A high-end code editor for all things GameMaker · By YellowAfterlife

[feature request] Region all functions shortcut

A topic by Klno created May 05, 2021 Views: 151
Viewing posts 1 to 1
(3 edits)

I personally like to region functions for example

function scr_example()
    {
    }
.
.
Into this
    |
    |
    V
.
.
#region scr_example
function scr_example()     
    {     
    }
#endregion

I would find it pretty helpful if there was a keyboard shortcut to do that automatically with all of the functions present on the tab. Thanks