Earlier quoted context omitted.
Every Apple keyboard, even the iPhone I’m typing this comment on, has had a Return key. Only the Num Pad has an Enter key on Apple’s keyboards.
Wow, throwback to running MacScheme (I think) on the university's Macs in a computer lab in the mid-90s. It interpreted main keyboard Return differently from numpad Enter, which to me (coming from the Amiga) was very confusing. If I recall correctly, only Return caused an evaluation attempt, while Enter merely added a line break for readability.
The day Return became Enter (2023)
71–80 of 179 posts
Re: The day Return became Enter (2023)
#72Re: The day Return became Enter (2023)
#73Re: The day Return became Enter (2023)
#74Re: The day Return became Enter (2023)
#75It's a damn shame that the control characters for "Field Separator" (FS ASCII 28 decimal) and "Record Separator" (RS ASCII 30 decimal) weren't used instead of TAB and CR/LF. Then the whole CRLF vs CR vs LF for line endings in files would have been totally avoided, with CR returning the print-head/cursor to the left-most position (right-most on R-L languages) and LF literally moving the print-head/cursor down. The dri…
Also CSV files would not exist.
There is "pipe delimited" which used "|" (ASCII 124 decimal) to separate fields, which actually makes way more sense, because that character is rarely used in normal text.
It's also a good separator when a human is reading the file.
Re: The day Return became Enter (2023)
#76We had distinct keys for Enter and Return for the longest time. An ISO standard keyboard has Return in the main block and Enter in the numpad. https://en.m.wikipedia.org/wiki/Enter_key#/media/File%3AEnte...
I wonder if the labels on your linked keyboard really mean much. It could be like how Apple calls their backspace key delete, and has their own names for some of the modifiers.
Re: The day Return became Enter (2023)
#77One thing the article doesn't mention is that some of the old teletypewriters were so slow that you could not be guaranteed that you would get the carriage to the start of the line by using only one Enter character, so it was mandatory to use two.
This meant that all linefeeds consisted of the following characters: CR CR LF (two carriage returns followed by one linefeed). Even in the time where most of the equipment were modern and didn't really need this, you couldn't know if somebody somewhere still had an old teletype running. So this was mandatory and part of the standard.
On mainframes there is also a distinction between Return and Enter. As far as I remember there was a soft return, which only moved the cursor down. And there was a hard return, which acted as Send - thereby transmitting your screen to the mainframe.
Something similar can be used on modern computers. Here is an example in Excel: If you edit a cell (with F2) you can end the edit by using Enter. But if you have enabled to wrap text you can use Alt+Enter to just input a linefeed without exiting the editor.
Re: The day Return became Enter (2023)
#78It's a damn shame that the control characters for "Field Separator" (FS ASCII 28 decimal) and "Record Separator" (RS ASCII 30 decimal) weren't used instead of TAB and CR/LF. Then the whole CRLF vs CR vs LF for line endings in files would have been totally avoided, with CR returning the print-head/cursor to the left-most position (right-most on R-L languages) and LF literally moving the print-head/cursor down. The dri…
> It's a damn shame that the control characters for "Field Separator" (FS ASCII 28 decimal) and "Record Separator" (RS ASCII 30 decimal) weren't used instead of TAB and CR/LF. No, it's not. That stuff is left over from 1940s-1950s schemes for polled multidrop teletype machines - multiple stations on one wire, taking turns. The idea was that you punched paper tapes locally and then put them into a reader. When it was…
I thought the control characters for that sort of use were the DC1-4 characters?
RS-485 uses polling but my understanding is that the characters for polling usually involve like "FF" (hex) and some sort of device ID.
I just read a TTY model 28 manual about the stunt box and I didn't see anything specific about FS/GS/RS there.
How were messages delimited in the polled multidrop environment?
Re: The day Return became Enter (2023)
#79How come the enter key is so small on most qwerty keyboards I've used and so big on the qwertz ones?
https://superuser.com/a/1368499
Personally I use a Pinky4 keyboard where every key is 1U these days, even space and enter.
Re: The day Return became Enter (2023)
#80To me, "return" implies a "go back" action (like "backspace"), which is the opposite of "enter", so naming the key the latter makes more sense. Plenty of TUIs used the arrow keys, Backspace, and Enter for navigation. Also, the text is nicely readable but none of the images are viewable.
It was one of the things I found amusing my first time using OS X after growing up on Windows. Enter would “enter” a folder or execute a program, while Return in Finder starts renaming the file.