Deluge script code view line length limit?

Deluge script code view line length limit?

Dear Zoho Creator Team,

I was coding a sendmail for deletion of a record in our new module. However, I ran in to a line length limit issue.

Question:
#1. Is there a way to force a new line in the deluge code. ( I'm not referring to "\n" or "<br>" ) I'm talking about forcing a new line in the code editor?

The reason I bring this up is because the form has around 90 fields of data. I wanted to send this data to the admin if it were deleted as a backup just in case.

So, I concatenated the code in the sendmail message area however, every time I saved the code the code became truncated.

Granted the solution was to separate the code into the following:

messageText1 = "Sales Rep: " + user + breakRow + "Launch Call Date: " + callDate + breakRow + "Launch Call Status: " + launchCallStatus + breakRow + "Launch Call Email Sent: " + emailSent + breakRow + "Launch Call Scheduled: " + launchCallScheduled + breakRow + "Strategy Call Date: " + strategyCallDate + breakRow + "Strategy Call Status: " + strategyCallStatus + breakRow + "Strategy Email Sent: " + strategyEmailSent + breakRow + "Strategy Call Scheduled: " + strategyCallScheduled + breakRow + "Training Rep: " + trainingRep + breakRow + "Training Call Date: " + trainingCallDate + breakRow + "Training Call Status: " + trainingCallStatus + breakRow + "Trainer Email Sent: " + trainerEmailSent + breakRow + "Training Call Scheduled: " + trainingCallScheduled + breakRow + "Call Name: " + callName + breakRow + "CRM Contact: " + crmContact + breakRow + "CRM Account: " + crmAccount + breakRow + "First Name: " + firstName + breakRow + "Last Name: " + lastName + breakRow + "Specialty: " + specialty + breakRow;

messageText2 = "How many Offices?: " + howManyOffices + breakRow + "Additional Doctors Being Promoted: " + additionalDoctorsBeingPromoted + breakRow + "Address: " + address + breakRow + "City: " + city + breakRow + "State: " + state + breakRow + "Zip Code: " + zipCode + breakRow + "Office Phone: " + officePhone + breakRow + "Mobile Phone: " + mobilePhone + breakRow + "Email: " + email + breakRow + "Secondary Email: " + secondaryEmail + breakRow + "Website: " + website + breakRow + "Different URL: " + differentUrl + breakRow + "General Notes: " + generalNotes + breakRow + "Mobile: " + mobile + breakRow + "Responsive: " + responsive + breakRow + "YouTube Channel: " + youtubeChannel + breakRow + "Targeted Landings w call to action: " + targetedLandingsWCallToAction + breakRow;

// Then concatenating the messageText.

messageText = messageText1 + messageText2;

Granted there are 7 sections now :(

But at least I got it working, just thought I would ask. 

If you had any advise on this code line length limit?

Thanks for all your help and support!
Thomas Pursfull