Re: TextEdit and Windows

2018-04-07 Thread E.T.

   For a free app, it sure beats the native Notepad.

From E.T.'s Keyboard...
   ancient.ali...@icloud.com
Many believe that we have been visited
in the past. What if it were true?

On 4/6/2018 11:32 PM, Simon Fogarty wrote:

A lot of windows users are now going to the notepad ++ as the preferred text 
editer

It offers a number of extra features over the normal notepad application.

-Original Message-
From: macvisionaries@googlegroups.com [mailto:macvisionaries@googlegroups.com] 
On Behalf Of Jonathan Cohn
Sent: Friday, 6 April 2018 2:20 AM
To: macvisionaries@googlegroups.com
Subject: Re: TextEdit and Windows

ET,

In notepad++ there is a item in the editing menu for changing line endings. It 
looks like the Latin / Win encoding used “Unix”  style line endings. Windows 
expects the line to end with both a carriage return and a new line character. 
Which is not terribly surprising since DEC Operating Systems in the 1980’s also 
used both characters, and the idea to use “/“ to indicate the start of an 
option shows up in TOPS-10, VMS and the Operating System for the PDP=11 if I 
remember correctly.

  

On Apr 4, 2018, at 10:45 PM, E.T. <ancient.ali...@icloud.com> wrote:

Jonathan,
   My thinking is that most people will probably use the default applications 
so if I were to share a document created with TextEdit with a Windows user, it 
will not display correctly.

   I did some digging and think the reason Notepad fails here is because it 
does not support the Western encoding. It does support UTF-8 so I may 
experiment with the two apps.

   I did install Notepad++ just to see what it's like.

 From E.T.'s Keyboard...
   ancient.ali...@icloud.com
Many believe that we have been visited in the past. What if it were
true?

On 4/4/2018 1:10 PM, Jonathan Cohn wrote:

Ah,
I did not test with notepad, just with MS Word. I suggest you use Notepad++ my 
office installed a copy of it on my system, and it automatically checks line 
endings and display text correctly weather you use PC/Mac?Linux.
There is also a one line regular expression that was once posted to this list 
that changes \r to \mn or perhaps \r\n to do this. You could then used sed or 
vi to correct the line endings and even create a droplet or contextual menu to 
do this conversion.
My guess is that the regular expression would be:
s/.$/\r\n/

On Apr 4, 2018, at 3:25 PM, E.T. <ancient.ali...@icloud.com> wrote:

Jonathan,
   I will need to look at this again as it did not work for me. Maybe I am not 
understanding the issue. I set the encoding to Western (DOS Latin 1) in 
TextEdit preferences, Open and Save.

   In TextEdit the text I enter displaud properly. If I look at the document 
with Windows Notepad all the text is on one line.

 From E.T.'s Keyboard...
   ancient.ali...@icloud.com
Many believe that we have been visited in the past. What if it were
true?

On 4/4/2018 10:29 AM, Jonathan Cohn wrote:

Hello,
I had to do just a little bit of work to test this out… 1. In the
save dialog choose the  encodings menu.
2. Choose the last item to customize available encodings.
3. Make sure "Western (DOS Latin 1)” is checked 4. Close the
customize encodings dialog.
5. Select "Western (DOS Latin 1)” from the encoding menu. It will probably 
already be selected.
6. Now save your document.
HTH,
Jonathan Cohn
.

On Apr 4, 2018, at 11:12 AM, E.T. <ancient.ali...@icloud.com> wrote:

   When reading a plain text document in Windows that was created with TextEdit 
on the Mac, the line returns are not respected. Isn't there a setting in 
TextEdit that will correct this? Thanks.

 From E.T.'s Keyboard...
   ancient.ali...@icloud.com
Many believe that we have been visited in the past. What if it
were true?

--
The following information is important for all members of the Mac Visionaries 
list.

If you have any questions or concerns about the running of this list, or if you 
feel that a member's post is inappropriate, please contact the owners or 
moderators directly rather than posting on the list itself.

Your Mac Visionaries list moderator is Mark Taylor.  You can reach
mark at:  mk...@ucla.edu and your owner is Cara Quinn - you can
reach Cara at caraqu...@caraquinn.com

The archives for this list can be searched at:
http://www.mail-archive.com/macvisionaries@googlegroups.com/
--- You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at https://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.


--
The following information is important for all members of the Mac Visionaries 
list.

If you have any questions or concerns about the running of this list, or if you 
feel that a member's post is inappropriate, pl

RE: TextEdit and Windows

2018-04-07 Thread Simon Fogarty
A lot of windows users are now going to the notepad ++ as the preferred text 
editer 

It offers a number of extra features over the normal notepad application.

-Original Message-
From: macvisionaries@googlegroups.com [mailto:macvisionaries@googlegroups.com] 
On Behalf Of Jonathan Cohn
Sent: Friday, 6 April 2018 2:20 AM
To: macvisionaries@googlegroups.com
Subject: Re: TextEdit and Windows

ET,

In notepad++ there is a item in the editing menu for changing line endings. It 
looks like the Latin / Win encoding used “Unix”  style line endings. Windows 
expects the line to end with both a carriage return and a new line character. 
Which is not terribly surprising since DEC Operating Systems in the 1980’s also 
used both characters, and the idea to use “/“ to indicate the start of an 
option shows up in TOPS-10, VMS and the Operating System for the PDP=11 if I 
remember correctly.

 
> On Apr 4, 2018, at 10:45 PM, E.T. <ancient.ali...@icloud.com> wrote:
> 
> Jonathan,
>   My thinking is that most people will probably use the default applications 
> so if I were to share a document created with TextEdit with a Windows user, 
> it will not display correctly.
> 
>   I did some digging and think the reason Notepad fails here is because it 
> does not support the Western encoding. It does support UTF-8 so I may 
> experiment with the two apps.
> 
>   I did install Notepad++ just to see what it's like.
> 
> From E.T.'s Keyboard...
>   ancient.ali...@icloud.com
> Many believe that we have been visited in the past. What if it were 
> true?
> 
> On 4/4/2018 1:10 PM, Jonathan Cohn wrote:
>> Ah,
>> I did not test with notepad, just with MS Word. I suggest you use Notepad++ 
>> my office installed a copy of it on my system, and it automatically checks 
>> line endings and display text correctly weather you use PC/Mac?Linux.
>> There is also a one line regular expression that was once posted to this 
>> list that changes \r to \mn or perhaps \r\n to do this. You could then used 
>> sed or vi to correct the line endings and even create a droplet or 
>> contextual menu to do this conversion.
>> My guess is that the regular expression would be:
>> s/.$/\r\n/
>>> On Apr 4, 2018, at 3:25 PM, E.T. <ancient.ali...@icloud.com> wrote:
>>> 
>>> Jonathan,
>>>   I will need to look at this again as it did not work for me. Maybe I am 
>>> not understanding the issue. I set the encoding to Western (DOS Latin 1) in 
>>> TextEdit preferences, Open and Save.
>>> 
>>>   In TextEdit the text I enter displaud properly. If I look at the document 
>>> with Windows Notepad all the text is on one line.
>>> 
>>> From E.T.'s Keyboard...
>>>   ancient.ali...@icloud.com
>>> Many believe that we have been visited in the past. What if it were 
>>> true?
>>> 
>>> On 4/4/2018 10:29 AM, Jonathan Cohn wrote:
>>>> Hello,
>>>> I had to do just a little bit of work to test this out… 1. In the 
>>>> save dialog choose the  encodings menu.
>>>> 2. Choose the last item to customize available encodings.
>>>> 3. Make sure "Western (DOS Latin 1)” is checked 4. Close the 
>>>> customize encodings dialog.
>>>> 5. Select "Western (DOS Latin 1)” from the encoding menu. It will probably 
>>>> already be selected.
>>>> 6. Now save your document.
>>>> HTH,
>>>> Jonathan Cohn
>>>> .
>>>>> On Apr 4, 2018, at 11:12 AM, E.T. <ancient.ali...@icloud.com> wrote:
>>>>> 
>>>>>   When reading a plain text document in Windows that was created with 
>>>>> TextEdit on the Mac, the line returns are not respected. Isn't there a 
>>>>> setting in TextEdit that will correct this? Thanks.
>>>>> 
>>>>> From E.T.'s Keyboard...
>>>>>   ancient.ali...@icloud.com
>>>>> Many believe that we have been visited in the past. What if it 
>>>>> were true?
>>>>> 
>>>>> --
>>>>> The following information is important for all members of the Mac 
>>>>> Visionaries list.
>>>>> 
>>>>> If you have any questions or concerns about the running of this list, or 
>>>>> if you feel that a member's post is inappropriate, please contact the 
>>>>> owners or moderators directly rather than posting on the list itself.
>>>>> 
>>>>> Your Mac Visionaries list moderator is Mark Taylor.  You can reach 
>>>>> mark at:  mk...@ucla.edu and your owner is Cara Quinn - you can

Re: TextEdit and Windows

2018-04-05 Thread E.T.

   Its ok. I am putting this aside for now.

From E.T.'s Keyboard...
   ancient.ali...@icloud.com
Many believe that we have been visited
in the past. What if it were true?

On 4/5/2018 7:20 AM, Jonathan Cohn wrote:

ET,

In notepad++ there is a item in the editing menu for changing line endings. It 
looks like the Latin / Win encoding used “Unix”  style line endings. Windows 
expects the line to end with both a carriage return and a new line character. 
Which is not terribly surprising since DEC Operating Systems in the 1980’s also 
used both characters, and the idea to use “/“ to indicate the start of an 
option shows up in TOPS-10, VMS and the Operating System for the PDP=11 if I 
remember correctly.

  

On Apr 4, 2018, at 10:45 PM, E.T. <ancient.ali...@icloud.com> wrote:

Jonathan,
   My thinking is that most people will probably use the default applications 
so if I were to share a document created with TextEdit with a Windows user, it 
will not display correctly.

   I did some digging and think the reason Notepad fails here is because it 
does not support the Western encoding. It does support UTF-8 so I may 
experiment with the two apps.

   I did install Notepad++ just to see what it's like.

 From E.T.'s Keyboard...
   ancient.ali...@icloud.com
Many believe that we have been visited
in the past. What if it were true?

On 4/4/2018 1:10 PM, Jonathan Cohn wrote:

Ah,
I did not test with notepad, just with MS Word. I suggest you use Notepad++ my 
office installed a copy of it on my system, and it automatically checks line 
endings and display text correctly weather you use PC/Mac?Linux.
There is also a one line regular expression that was once posted to this list 
that changes \r to \mn or perhaps \r\n to do this. You could then used sed or 
vi to correct the line endings and even create a droplet or contextual menu to 
do this conversion.
My guess is that the regular expression would be:
s/.$/\r\n/

On Apr 4, 2018, at 3:25 PM, E.T. <ancient.ali...@icloud.com> wrote:

Jonathan,
   I will need to look at this again as it did not work for me. Maybe I am not 
understanding the issue. I set the encoding to Western (DOS Latin 1) in 
TextEdit preferences, Open and Save.

   In TextEdit the text I enter displaud properly. If I look at the document 
with Windows Notepad all the text is on one line.

 From E.T.'s Keyboard...
   ancient.ali...@icloud.com
Many believe that we have been visited
in the past. What if it were true?

On 4/4/2018 10:29 AM, Jonathan Cohn wrote:

Hello,
I had to do just a little bit of work to test this out…
1. In the save dialog choose the  encodings menu.
2. Choose the last item to customize available encodings.
3. Make sure "Western (DOS Latin 1)” is checked
4. Close the customize encodings dialog.
5. Select "Western (DOS Latin 1)” from the encoding menu. It will probably 
already be selected.
6. Now save your document.
HTH,
Jonathan Cohn
.

On Apr 4, 2018, at 11:12 AM, E.T. <ancient.ali...@icloud.com> wrote:

   When reading a plain text document in Windows that was created with TextEdit 
on the Mac, the line returns are not respected. Isn't there a setting in 
TextEdit that will correct this? Thanks.

 From E.T.'s Keyboard...
   ancient.ali...@icloud.com
Many believe that we have been visited
in the past. What if it were true?

--
The following information is important for all members of the Mac Visionaries 
list.

If you have any questions or concerns about the running of this list, or if you 
feel that a member's post is inappropriate, please contact the owners or 
moderators directly rather than posting on the list itself.

Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark at:  
mk...@ucla.edu and your owner is Cara Quinn - you can reach Cara at 
caraqu...@caraquinn.com

The archives for this list can be searched at:
http://www.mail-archive.com/macvisionaries@googlegroups.com/
--- You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at https://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.


--
The following information is important for all members of the Mac Visionaries 
list.

If you have any questions or concerns about the running of this list, or if you 
feel that a member's post is inappropriate, please contact the owners or 
moderators directly rather than posting on the list itself.

Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark at:  
mk...@ucla.edu and your owner is Cara Quinn - you can reach Cara at 
caraqu...@caraquinn.com

The archives for this list can be searched at:
http://www.mail-archive.com/macvisionaries@googlegroups.com/
--- You received this message because y

Re: TextEdit and Windows

2018-04-05 Thread Jonathan Cohn
ET,

In notepad++ there is a item in the editing menu for changing line endings. It 
looks like the Latin / Win encoding used “Unix”  style line endings. Windows 
expects the line to end with both a carriage return and a new line character. 
Which is not terribly surprising since DEC Operating Systems in the 1980’s also 
used both characters, and the idea to use “/“ to indicate the start of an 
option shows up in TOPS-10, VMS and the Operating System for the PDP=11 if I 
remember correctly.

 
> On Apr 4, 2018, at 10:45 PM, E.T. <ancient.ali...@icloud.com> wrote:
> 
> Jonathan,
>   My thinking is that most people will probably use the default applications 
> so if I were to share a document created with TextEdit with a Windows user, 
> it will not display correctly.
> 
>   I did some digging and think the reason Notepad fails here is because it 
> does not support the Western encoding. It does support UTF-8 so I may 
> experiment with the two apps.
> 
>   I did install Notepad++ just to see what it's like.
> 
> From E.T.'s Keyboard...
>   ancient.ali...@icloud.com
> Many believe that we have been visited
> in the past. What if it were true?
> 
> On 4/4/2018 1:10 PM, Jonathan Cohn wrote:
>> Ah,
>> I did not test with notepad, just with MS Word. I suggest you use Notepad++ 
>> my office installed a copy of it on my system, and it automatically checks 
>> line endings and display text correctly weather you use PC/Mac?Linux.
>> There is also a one line regular expression that was once posted to this 
>> list that changes \r to \mn or perhaps \r\n to do this. You could then used 
>> sed or vi to correct the line endings and even create a droplet or 
>> contextual menu to do this conversion.
>> My guess is that the regular expression would be:
>> s/.$/\r\n/
>>> On Apr 4, 2018, at 3:25 PM, E.T. <ancient.ali...@icloud.com> wrote:
>>> 
>>> Jonathan,
>>>   I will need to look at this again as it did not work for me. Maybe I am 
>>> not understanding the issue. I set the encoding to Western (DOS Latin 1) in 
>>> TextEdit preferences, Open and Save.
>>> 
>>>   In TextEdit the text I enter displaud properly. If I look at the document 
>>> with Windows Notepad all the text is on one line.
>>> 
>>> From E.T.'s Keyboard...
>>>   ancient.ali...@icloud.com
>>> Many believe that we have been visited
>>> in the past. What if it were true?
>>> 
>>> On 4/4/2018 10:29 AM, Jonathan Cohn wrote:
>>>> Hello,
>>>> I had to do just a little bit of work to test this out…
>>>> 1. In the save dialog choose the  encodings menu.
>>>> 2. Choose the last item to customize available encodings.
>>>> 3. Make sure "Western (DOS Latin 1)” is checked
>>>> 4. Close the customize encodings dialog.
>>>> 5. Select "Western (DOS Latin 1)” from the encoding menu. It will probably 
>>>> already be selected.
>>>> 6. Now save your document.
>>>> HTH,
>>>> Jonathan Cohn
>>>> .
>>>>> On Apr 4, 2018, at 11:12 AM, E.T. <ancient.ali...@icloud.com> wrote:
>>>>> 
>>>>>   When reading a plain text document in Windows that was created with 
>>>>> TextEdit on the Mac, the line returns are not respected. Isn't there a 
>>>>> setting in TextEdit that will correct this? Thanks.
>>>>> 
>>>>> From E.T.'s Keyboard...
>>>>>   ancient.ali...@icloud.com
>>>>> Many believe that we have been visited
>>>>> in the past. What if it were true?
>>>>> 
>>>>> -- 
>>>>> The following information is important for all members of the Mac 
>>>>> Visionaries list.
>>>>> 
>>>>> If you have any questions or concerns about the running of this list, or 
>>>>> if you feel that a member's post is inappropriate, please contact the 
>>>>> owners or moderators directly rather than posting on the list itself.
>>>>> 
>>>>> Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark 
>>>>> at:  mk...@ucla.edu and your owner is Cara Quinn - you can reach Cara at 
>>>>> caraqu...@caraquinn.com
>>>>> 
>>>>> The archives for this list can be searched at:
>>>>> http://www.mail-archive.com/macvisionaries@googlegroups.com/
>>>>> --- You received this message because you are subscribed to the Google 
>>>>> Groups "MacVisionaries" group.
>>>>&

Re: TextEdit and Windows

2018-04-05 Thread Anders Holmberg
Hi!
Notepad++ is one of the greatest editor out there in my opinion.
But you could try jarte if you like too.
I think it can do what you want.
/A

> 5 apr. 2018 kl. 04:45 skrev E.T. <ancient.ali...@icloud.com>:
> 
> Jonathan,
>   My thinking is that most people will probably use the default applications 
> so if I were to share a document created with TextEdit with a Windows user, 
> it will not display correctly.
> 
>   I did some digging and think the reason Notepad fails here is because it 
> does not support the Western encoding. It does support UTF-8 so I may 
> experiment with the two apps.
> 
>   I did install Notepad++ just to see what it's like.
> 
> From E.T.'s Keyboard...
>   ancient.ali...@icloud.com
> Many believe that we have been visited
> in the past. What if it were true?
> 
> On 4/4/2018 1:10 PM, Jonathan Cohn wrote:
>> Ah,
>> I did not test with notepad, just with MS Word. I suggest you use Notepad++ 
>> my office installed a copy of it on my system, and it automatically checks 
>> line endings and display text correctly weather you use PC/Mac?Linux.
>> There is also a one line regular expression that was once posted to this 
>> list that changes \r to \mn or perhaps \r\n to do this. You could then used 
>> sed or vi to correct the line endings and even create a droplet or 
>> contextual menu to do this conversion.
>> My guess is that the regular expression would be:
>> s/.$/\r\n/
>>> On Apr 4, 2018, at 3:25 PM, E.T. <ancient.ali...@icloud.com> wrote:
>>> 
>>> Jonathan,
>>>   I will need to look at this again as it did not work for me. Maybe I am 
>>> not understanding the issue. I set the encoding to Western (DOS Latin 1) in 
>>> TextEdit preferences, Open and Save.
>>> 
>>>   In TextEdit the text I enter displaud properly. If I look at the document 
>>> with Windows Notepad all the text is on one line.
>>> 
>>> From E.T.'s Keyboard...
>>>   ancient.ali...@icloud.com
>>> Many believe that we have been visited
>>> in the past. What if it were true?
>>> 
>>> On 4/4/2018 10:29 AM, Jonathan Cohn wrote:
>>>> Hello,
>>>> I had to do just a little bit of work to test this out…
>>>> 1. In the save dialog choose the  encodings menu.
>>>> 2. Choose the last item to customize available encodings.
>>>> 3. Make sure "Western (DOS Latin 1)” is checked
>>>> 4. Close the customize encodings dialog.
>>>> 5. Select "Western (DOS Latin 1)” from the encoding menu. It will probably 
>>>> already be selected.
>>>> 6. Now save your document.
>>>> HTH,
>>>> Jonathan Cohn
>>>> .
>>>>> On Apr 4, 2018, at 11:12 AM, E.T. <ancient.ali...@icloud.com> wrote:
>>>>> 
>>>>>   When reading a plain text document in Windows that was created with 
>>>>> TextEdit on the Mac, the line returns are not respected. Isn't there a 
>>>>> setting in TextEdit that will correct this? Thanks.
>>>>> 
>>>>> From E.T.'s Keyboard...
>>>>>   ancient.ali...@icloud.com
>>>>> Many believe that we have been visited
>>>>> in the past. What if it were true?
>>>>> 
>>>>> -- 
>>>>> The following information is important for all members of the Mac 
>>>>> Visionaries list.
>>>>> 
>>>>> If you have any questions or concerns about the running of this list, or 
>>>>> if you feel that a member's post is inappropriate, please contact the 
>>>>> owners or moderators directly rather than posting on the list itself.
>>>>> 
>>>>> Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark 
>>>>> at:  mk...@ucla.edu and your owner is Cara Quinn - you can reach Cara at 
>>>>> caraqu...@caraquinn.com
>>>>> 
>>>>> The archives for this list can be searched at:
>>>>> http://www.mail-archive.com/macvisionaries@googlegroups.com/
>>>>> --- You received this message because you are subscribed to the Google 
>>>>> Groups "MacVisionaries" group.
>>>>> To unsubscribe from this group and stop receiving emails from it, send an 
>>>>> email to macvisionaries+unsubscr...@googlegroups.com.
>>>>> To post to this group, send email to macvisionaries@googlegroups.com.
>>>>> Visit this group at https://groups.google.com/group/macvisionaries.
>>>>> For more o

Re: TextEdit and Windows

2018-04-04 Thread E.T.

Jonathan,
   My thinking is that most people will probably use the default 
applications so if I were to share a document created with TextEdit with 
a Windows user, it will not display correctly.


   I did some digging and think the reason Notepad fails here is 
because it does not support the Western encoding. It does support UTF-8 
so I may experiment with the two apps.


   I did install Notepad++ just to see what it's like.

From E.T.'s Keyboard...
   ancient.ali...@icloud.com
Many believe that we have been visited
in the past. What if it were true?

On 4/4/2018 1:10 PM, Jonathan Cohn wrote:

Ah,

I did not test with notepad, just with MS Word. I suggest you use Notepad++ my 
office installed a copy of it on my system, and it automatically checks line 
endings and display text correctly weather you use PC/Mac?Linux.

There is also a one line regular expression that was once posted to this list 
that changes \r to \mn or perhaps \r\n to do this. You could then used sed or 
vi to correct the line endings and even create a droplet or contextual menu to 
do this conversion.


My guess is that the regular expression would be:
s/.$/\r\n/



On Apr 4, 2018, at 3:25 PM, E.T. <ancient.ali...@icloud.com> wrote:

Jonathan,
   I will need to look at this again as it did not work for me. Maybe I am not 
understanding the issue. I set the encoding to Western (DOS Latin 1) in 
TextEdit preferences, Open and Save.

   In TextEdit the text I enter displaud properly. If I look at the document 
with Windows Notepad all the text is on one line.

 From E.T.'s Keyboard...
   ancient.ali...@icloud.com
Many believe that we have been visited
in the past. What if it were true?

On 4/4/2018 10:29 AM, Jonathan Cohn wrote:

Hello,
I had to do just a little bit of work to test this out…
1. In the save dialog choose the  encodings menu.
2. Choose the last item to customize available encodings.
3. Make sure "Western (DOS Latin 1)” is checked
4. Close the customize encodings dialog.
5. Select "Western (DOS Latin 1)” from the encoding menu. It will probably 
already be selected.
6. Now save your document.
HTH,
Jonathan Cohn
.

On Apr 4, 2018, at 11:12 AM, E.T. <ancient.ali...@icloud.com> wrote:

   When reading a plain text document in Windows that was created with TextEdit 
on the Mac, the line returns are not respected. Isn't there a setting in 
TextEdit that will correct this? Thanks.

 From E.T.'s Keyboard...
   ancient.ali...@icloud.com
Many believe that we have been visited
in the past. What if it were true?

--
The following information is important for all members of the Mac Visionaries 
list.

If you have any questions or concerns about the running of this list, or if you 
feel that a member's post is inappropriate, please contact the owners or 
moderators directly rather than posting on the list itself.

Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark at:  
mk...@ucla.edu and your owner is Cara Quinn - you can reach Cara at 
caraqu...@caraquinn.com

The archives for this list can be searched at:
http://www.mail-archive.com/macvisionaries@googlegroups.com/
--- You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at https://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.


--
The following information is important for all members of the Mac Visionaries 
list.

If you have any questions or concerns about the running of this list, or if you 
feel that a member's post is inappropriate, please contact the owners or 
moderators directly rather than posting on the list itself.

Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark at:  
mk...@ucla.edu and your owner is Cara Quinn - you can reach Cara at 
caraqu...@caraquinn.com

The archives for this list can be searched at:
http://www.mail-archive.com/macvisionaries@googlegroups.com/
--- You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at https://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.




--
The following information is important for all members of the Mac Visionaries 
list.

If you have any questions or concerns about the running of this list, or if you 
feel that a member's post is inappropriate, please contact the owners or 
moderators directly rather than posting on the list itself.

Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark at:  
m

Re: TextEdit and Windows

2018-04-04 Thread Jonathan Cohn
Ah, 

I did not test with notepad, just with MS Word. I suggest you use Notepad++ my 
office installed a copy of it on my system, and it automatically checks line 
endings and display text correctly weather you use PC/Mac?Linux.

There is also a one line regular expression that was once posted to this list 
that changes \r to \mn or perhaps \r\n to do this. You could then used sed or 
vi to correct the line endings and even create a droplet or contextual menu to 
do this conversion.


My guess is that the regular expression would be:
s/.$/\r\n/


> On Apr 4, 2018, at 3:25 PM, E.T.  wrote:
> 
> Jonathan,
>   I will need to look at this again as it did not work for me. Maybe I am not 
> understanding the issue. I set the encoding to Western (DOS Latin 1) in 
> TextEdit preferences, Open and Save.
> 
>   In TextEdit the text I enter displaud properly. If I look at the document 
> with Windows Notepad all the text is on one line.
> 
> From E.T.'s Keyboard...
>   ancient.ali...@icloud.com
> Many believe that we have been visited
> in the past. What if it were true?
> 
> On 4/4/2018 10:29 AM, Jonathan Cohn wrote:
>> Hello,
>> I had to do just a little bit of work to test this out…
>> 1. In the save dialog choose the  encodings menu.
>> 2. Choose the last item to customize available encodings.
>> 3. Make sure "Western (DOS Latin 1)” is checked
>> 4. Close the customize encodings dialog.
>> 5. Select "Western (DOS Latin 1)” from the encoding menu. It will probably 
>> already be selected.
>> 6. Now save your document.
>> HTH,
>> Jonathan Cohn
>> .
>>> On Apr 4, 2018, at 11:12 AM, E.T.  wrote:
>>> 
>>>   When reading a plain text document in Windows that was created with 
>>> TextEdit on the Mac, the line returns are not respected. Isn't there a 
>>> setting in TextEdit that will correct this? Thanks.
>>> 
>>> From E.T.'s Keyboard...
>>>   ancient.ali...@icloud.com
>>> Many believe that we have been visited
>>> in the past. What if it were true?
>>> 
>>> -- 
>>> The following information is important for all members of the Mac 
>>> Visionaries list.
>>> 
>>> If you have any questions or concerns about the running of this list, or if 
>>> you feel that a member's post is inappropriate, please contact the owners 
>>> or moderators directly rather than posting on the list itself.
>>> 
>>> Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark at: 
>>>  mk...@ucla.edu and your owner is Cara Quinn - you can reach Cara at 
>>> caraqu...@caraquinn.com
>>> 
>>> The archives for this list can be searched at:
>>> http://www.mail-archive.com/macvisionaries@googlegroups.com/
>>> --- You received this message because you are subscribed to the Google 
>>> Groups "MacVisionaries" group.
>>> To unsubscribe from this group and stop receiving emails from it, send an 
>>> email to macvisionaries+unsubscr...@googlegroups.com.
>>> To post to this group, send email to macvisionaries@googlegroups.com.
>>> Visit this group at https://groups.google.com/group/macvisionaries.
>>> For more options, visit https://groups.google.com/d/optout.
> 
> -- 
> The following information is important for all members of the Mac Visionaries 
> list.
> 
> If you have any questions or concerns about the running of this list, or if 
> you feel that a member's post is inappropriate, please contact the owners or 
> moderators directly rather than posting on the list itself.
> 
> Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark at:  
> mk...@ucla.edu and your owner is Cara Quinn - you can reach Cara at 
> caraqu...@caraquinn.com
> 
> The archives for this list can be searched at:
> http://www.mail-archive.com/macvisionaries@googlegroups.com/
> --- You received this message because you are subscribed to the Google Groups 
> "MacVisionaries" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to macvisionaries+unsubscr...@googlegroups.com.
> To post to this group, send email to macvisionaries@googlegroups.com.
> Visit this group at https://groups.google.com/group/macvisionaries.
> For more options, visit https://groups.google.com/d/optout.

-- 
The following information is important for all members of the Mac Visionaries 
list.

If you have any questions or concerns about the running of this list, or if you 
feel that a member's post is inappropriate, please contact the owners or 
moderators directly rather than posting on the list itself.

Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark at:  
mk...@ucla.edu and your owner is Cara Quinn - you can reach Cara at 
caraqu...@caraquinn.com

The archives for this list can be searched at:
http://www.mail-archive.com/macvisionaries@googlegroups.com/
--- 
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to 

Re: TextEdit and Windows

2018-04-04 Thread E.T.

Jonathan,
   I will need to look at this again as it did not work for me. Maybe I 
am not understanding the issue. I set the encoding to Western (DOS Latin 
1) in TextEdit preferences, Open and Save.


   In TextEdit the text I enter displaud properly. If I look at the 
document with Windows Notepad all the text is on one line.


From E.T.'s Keyboard...
   ancient.ali...@icloud.com
Many believe that we have been visited
in the past. What if it were true?

On 4/4/2018 10:29 AM, Jonathan Cohn wrote:

Hello,

I had to do just a little bit of work to test this out…

1. In the save dialog choose the  encodings menu.
2. Choose the last item to customize available encodings.
3. Make sure "Western (DOS Latin 1)” is checked
4. Close the customize encodings dialog.
5. Select "Western (DOS Latin 1)” from the encoding menu. It will probably 
already be selected.
6. Now save your document.

HTH,

Jonathan Cohn
.

On Apr 4, 2018, at 11:12 AM, E.T.  wrote:

   When reading a plain text document in Windows that was created with TextEdit 
on the Mac, the line returns are not respected. Isn't there a setting in 
TextEdit that will correct this? Thanks.

 From E.T.'s Keyboard...
   ancient.ali...@icloud.com
Many believe that we have been visited
in the past. What if it were true?

--
The following information is important for all members of the Mac Visionaries 
list.

If you have any questions or concerns about the running of this list, or if you 
feel that a member's post is inappropriate, please contact the owners or 
moderators directly rather than posting on the list itself.

Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark at:  
mk...@ucla.edu and your owner is Cara Quinn - you can reach Cara at 
caraqu...@caraquinn.com

The archives for this list can be searched at:
http://www.mail-archive.com/macvisionaries@googlegroups.com/
--- You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at https://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.




--
The following information is important for all members of the Mac Visionaries 
list.

If you have any questions or concerns about the running of this list, or if you 
feel that a member's post is inappropriate, please contact the owners or 
moderators directly rather than posting on the list itself.

Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark at:  
mk...@ucla.edu and your owner is Cara Quinn - you can reach Cara at 
caraqu...@caraquinn.com

The archives for this list can be searched at:
http://www.mail-archive.com/macvisionaries@googlegroups.com/
--- 
You received this message because you are subscribed to the Google Groups "MacVisionaries" group.

To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at https://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.


Re: TextEdit and Windows

2018-04-04 Thread Jonathan Cohn
Hello,

I had to do just a little bit of work to test this out…

1. In the save dialog choose the  encodings menu.
2. Choose the last item to customize available encodings.
3. Make sure "Western (DOS Latin 1)” is checked
4. Close the customize encodings dialog.
5. Select "Western (DOS Latin 1)” from the encoding menu. It will probably 
already be selected.
6. Now save your document. 

HTH,

Jonathan Cohn 
.
> On Apr 4, 2018, at 11:12 AM, E.T.  wrote:
> 
>   When reading a plain text document in Windows that was created with 
> TextEdit on the Mac, the line returns are not respected. Isn't there a 
> setting in TextEdit that will correct this? Thanks.
> 
> From E.T.'s Keyboard...
>   ancient.ali...@icloud.com
> Many believe that we have been visited
> in the past. What if it were true?
> 
> -- 
> The following information is important for all members of the Mac Visionaries 
> list.
> 
> If you have any questions or concerns about the running of this list, or if 
> you feel that a member's post is inappropriate, please contact the owners or 
> moderators directly rather than posting on the list itself.
> 
> Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark at:  
> mk...@ucla.edu and your owner is Cara Quinn - you can reach Cara at 
> caraqu...@caraquinn.com
> 
> The archives for this list can be searched at:
> http://www.mail-archive.com/macvisionaries@googlegroups.com/
> --- You received this message because you are subscribed to the Google Groups 
> "MacVisionaries" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to macvisionaries+unsubscr...@googlegroups.com.
> To post to this group, send email to macvisionaries@googlegroups.com.
> Visit this group at https://groups.google.com/group/macvisionaries.
> For more options, visit https://groups.google.com/d/optout.

-- 
The following information is important for all members of the Mac Visionaries 
list.

If you have any questions or concerns about the running of this list, or if you 
feel that a member's post is inappropriate, please contact the owners or 
moderators directly rather than posting on the list itself.

Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark at:  
mk...@ucla.edu and your owner is Cara Quinn - you can reach Cara at 
caraqu...@caraquinn.com

The archives for this list can be searched at:
http://www.mail-archive.com/macvisionaries@googlegroups.com/
--- 
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at https://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.


Re: TextEdit and Windows

2018-04-04 Thread Daniel Chavez
I myself don’t believe that text edit has settings for line breaks.

-- 
The following information is important for all members of the Mac Visionaries 
list.

If you have any questions or concerns about the running of this list, or if you 
feel that a member's post is inappropriate, please contact the owners or 
moderators directly rather than posting on the list itself.

Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark at:  
mk...@ucla.edu and your owner is Cara Quinn - you can reach Cara at 
caraqu...@caraquinn.com

The archives for this list can be searched at:
http://www.mail-archive.com/macvisionaries@googlegroups.com/
--- 
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at https://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.


TextEdit and Windows

2018-04-04 Thread E.T.
   When reading a plain text document in Windows that was created with 
TextEdit on the Mac, the line returns are not respected. Isn't there a 
setting in TextEdit that will correct this? Thanks.


From E.T.'s Keyboard...
   ancient.ali...@icloud.com
Many believe that we have been visited
in the past. What if it were true?

--
The following information is important for all members of the Mac Visionaries 
list.

If you have any questions or concerns about the running of this list, or if you 
feel that a member's post is inappropriate, please contact the owners or 
moderators directly rather than posting on the list itself.

Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark at:  
mk...@ucla.edu and your owner is Cara Quinn - you can reach Cara at 
caraqu...@caraquinn.com

The archives for this list can be searched at:
http://www.mail-archive.com/macvisionaries@googlegroups.com/
--- 
You received this message because you are subscribed to the Google Groups "MacVisionaries" group.

To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at https://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.