Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

GMEdit

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

[Implemented] Feature Request: Rainbow Code Brackets

A topic by Wzqxrys created Jan 01, 2020 Views: 478 Replies: 2
Viewing posts 1 to 2

Similar to the image below,
I'd love to see color matching code brackets as an option for readability.
Customizing what colors and how many different ones before looping color again would be a very nice addition.
E.g. Red, Green, Blue, Red...
I'm sure you get the picture.
I saw my friend using this in his IDE and fell in love with it
I would love to see this implemented in GmEdit as its my preferred GML editor.

Kind Regards
~WZQXRYS

Rainbow Brackets - Plugins | JetBrains

Developer

Pushed to git - this is actually just a big hack, so it'll only count curly bracket depth.

Example: 

#main .ace-tm .ace_curly.ace_paren.ace_depth0 {
color: #FF79C6;
}
#main .ace-tm .ace_curly.ace_paren.ace_depth1 {
color: #C6FF79;
}
#main .ace-tm .ace_curly.ace_paren.ace_depth2 {
color: #79C6FF;
}

Nice one thanks yellow!