Something I've learned (the hard way) is how to keep everything arranged in squiffy. Say you have a section dealing with a castle and all your code is grouped together. One way to make this easier to find (if you are looking off the editor's pulldown menu) is to add a fake section, like this.
[[CASTLE------------------------------------]]:
[[Castle init]]:
code goes here...
[[castle gate]]:
code goes here...
[[DUNGEON--------------------------------]]:
[[dungeon init]]:
more code here...
On the pulldown menu, you will see...
CASTLE------------------------------------
Castle init
Castle gate
DUNGEON--------------------------------
Dungeon init
This really helps me keep things organized.