I think I did not explain myself clearly. It's not the script result that I am after but how the text is actually laid out IN THE EDITOR WHILE I AM WORKING ON IT
ie, I tried the above example, and in Komodo, the result was
$skip_us=array('LIST_1',\r\n 'LIST_31',\r\n 'LIST_33',\r\n'LIST_34',\r\n'LIST_38',\r\n'LIST_96 ');
what I want it to look like (AGAIN, IN THE EDITOR WINDOW) is like so:
$skip_us=array('LIST_1',
'LIST_31',
'LIST_33',
'LIST_34',
'LIST_38',
'LIST_96 ');
Is there some special character or code that I can use in the Komodo search/replace box that will insert whatever the magical/invisible line break is that is used for that editor?