A high-end code editor for all things GameMaker · By YellowAfterlife
Is there any way to list all custom variables? I want to do a find and replace to make my names consistent but couldn't find anything like that in the shortcuts or searching. I could've very easily missed something though. Editing GMS1.4 projects.
You can open the console (Ctrl+Shift+I, and switch to Console) and run the following there:
Object.keys(GmlAPI.gmlInstFieldMap)
this will show everything that auto-completion knows about.
Just what I needed, thank you!