Yes, I think it
should default to LF line terminators for UNIX (and CRLF for Windows). And I believe it does, provided that it is not overridden by the CRLF option in the
INI.VUE (or
CRLF ON at the VUE command prompt), or by
OPTIONS=CRLF in the miame.ini file.
Only if none of the above is specified does it revert to the standard line terminators for the current operating system.
(Note that in all of the above cases, "CRLF" and "CRNL" are interchangeable.)Besides checking the miame.ini directly, you can also use the SET command with no args, which will display the overall A-Shell line terminator status (per the miame.ini) as
CRNL or
NOCRNLFor VUE, in command mode it will display
crnl on the options line if the terminator is CRLF (aka CRNL, aka ASCII 13,10). Else it will display nothing up there. Note that you can also launch VUE with the
/T switch to trace the INI.VUE processing, which may clear up any uncertainty about which INI.VUE file is being processed.
When VUE (if configured to use LF terminators) loads a file containing CRLF terminators, it will display a warning message (unless
CVTWARN=FALSE is set in the INI.VUE)
Note that for most A-Shell files (including CMD files, Basic source code, text files processed with INPUT LINE, etc.) either type of terminator is acceptable. But for files used directly by UNIX (shell scripts, config files, etc.), you typically must have the correct (LF) terminator.
If you are using the standalone (native UNIX) vue executable to edit native UNIX files, you should create an /etc/ini.vue file containing the following:
CRNL=OFF
BAKDIR=/tmp
The BAKDIR command specifies an alternate location for the .BAK (backup) file created by VUE whenever you save the current file. Putting these in some other location (not necessarily /tmp, but that seems like a good spot) eliminates the possibility of unexpected side effects from the existence of the .bak file. (For example, in some of the "rc" directories, the boot up sequence may execute every file in the directory, so if you edited one and ended up with a .bak in the same directory, it could result in the script being executed twice, resulting in all kinds of confusion.)