Well, I'm not sure just what this shows/proves, but if nothing else, it shows that notepad, in full screen mode can't display lines of 1470 characters on a single line. But that makes sense.
I put the following code into a workbook, saved it (so it would have a path to find in the code) and ran it
Sub WriteLongLinesToTextFile()
'this will create a text file in the same folder that
'you have saved this file into named LongText.txt
'Each line will have been written with 1,470 characters,
'52 lines will have been written (a-z, A-Z)
'it will echo the output to the first sheet in the workbook
'
Dim filePath As String
Dim textToWrite As String
Dim LC As Integer
Dim bufferNumber As Integer
Dim myWS As Worksheet
Dim rowPtr As Long
Set myWS = ThisWorkbook.Worksheets(1)
myWS.Cells.ClearContents
rowPtr = 1
filePath = ThisWorkbook.Path & "/LongText.txt"
bufferNumber = FreeFile()
Open filePath For Output As #bufferNumber
Application.ScreenUpdating = False
For LC = Asc("a") To Asc("z")
textToWrite = String(1470, Chr$(LC))
Print #bufferNumber, textToWrite
myWS.Cells(rowPtr, 1) = textToWrite
rowPtr = rowPtr + 1
Next
For LC = Asc("A") To Asc("Z")
textToWrite = String(1470, Chr$(LC))
Print #bufferNumber, textToWrite
myWS.Cells(rowPtr, 1) = textToWrite
rowPtr = rowPtr + 1
Next
Close #bufferNumber
MsgBox "File created"
End Sub
After running it, I opened the created text file with Notepad and here's a screen shot of the right edge of the Notepad window showing the first several rows of data in it:

There don't appear to be any actual extra line feeds in the file, the text just had to wrap in order to be completely displayed. Copying one of the 'full' lines before it wrapped confirms that those are 1,024 characters long.
Another interesting thing about it is that when displayed in a proportional font, some of the lines appear longer than others, for example, 1024 W characters are much wider than anything else! Q comes in close behind, and because of that, other text streams
appear to terminate mid-page, when they are all terminating at the 1024th character.