this post was submitted on 26 May 2025
45 points (97.9% liked)

Programming

20418 readers
323 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities [email protected]



founded 2 years ago
MODERATORS
 

The comment does well in providing context and arguments.

Lets go back to the closest thing we have for requirements for this editor..Default CLI Editor - Feature Exploration!. This discussion was based on the current state of windows and was not concerned with UNIX.

Being a simple text editor, it should not hallucinate, it should not add text one did not type, it should not change the text that was typed. If the user typed a tab character, it was because the user wanted a tab character. If you want four spaces then type four spaces.

edit should by default work like the original namesake and not hallucinate or add characters that were not typed or make assumptions.

Where do you draw the line on "smart" features? Tab should not add indent spaces? Encoding or newline mechanisms? Determining EOF newline?

you are viewing a single comment's thread
view the rest of the comments
[–] Kissaki 1 points 5 days ago (1 children)

and use CRLF (on Windows) for newlines with at most a setting to configure it in the editor for that session

How would you handle text files with LF newlines being opened on Windows? Recognize and use LF too? Write CRLF on newly added lines? Save everything as CRLF, effectively transforming all LF?

[–] [email protected] 3 points 5 days ago (1 children)

I would expect it to use CRLF (on Windows) for all new newlines unless I tell it otherwise. It shouldn't try to be smart about it. It should just do exactly what I tell it to do and nothing more.

[–] JadedBlueEyes 1 points 3 days ago

That wouldn't be what I would expect. Having mixed new lines in a file is generally a bad thing - the editor should pick one mode