This is because you have no line breaks in your code
This is just one long string that is interpted as 1 line
Lines.Text := 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.';
I too am using lazarus in linux enviroment and same is for me.
I if you copy and paste your code into the properties of StringList in properties you will see that it paste as one long string, thefore you need line break.
Hope this helps