Just a minor issue that was giving me a little trouble for a couple days. The drop down menu at the top of the script is incredibly useful for me, but the other day, it stopped recognizing functions beyond script line 10,000 and I couldn't figure out why. I thought it might have been an issue with scripts longer than 10,000 lines, but then I figured out that in the function around that line, I had an un-terminated bracket in a comment block. Something like:
/*
blah blah blah
function something(){
*/
Simply closing that bracket made the whole thing work again, but it was giving me a headache for a while. It seems like the editor should avoid comment blocks when making the function name list. Terribly minor, but just pointing it out!
/*
blah blah blah
function something(){
*/
Simply closing that bracket made the whole thing work again, but it was giving me a headache for a while. It seems like the editor should avoid comment blocks when making the function name list. Terribly minor, but just pointing it out!