You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that whenever I copied and pasted lines from user.js into my own configuration, an empty newline was being inserted after every line.
After investigating with git diff, I discovered the presence of ^M characters at the end of each line. This indicates that the files were saved with Windows-style line endings (CRLF), which can cause formatting issues when viewed or edited on Unix-like systems.
I have forked the repository and ran dos2unix to normalize the line endings to LF. Interestingly, only user.js and personal/user-overrides.js required conversion; the rest of the repository was already in Unix format.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
I noticed that whenever I copied and pasted lines from
user.jsinto my own configuration, an empty newline was being inserted after every line.After investigating with git diff, I discovered the presence of ^M characters at the end of each line. This indicates that the files were saved with Windows-style line endings (CRLF), which can cause formatting issues when viewed or edited on Unix-like systems.
I have forked the repository and ran
dos2unixto normalize the line endings to LF. Interestingly, onlyuser.jsandpersonal/user-overrides.jsrequired conversion; the rest of the repository was already in Unix format.You can view the changes here:
https://github.com/codayon/betterfox/commit/c500dc6eaa244557023cea0e18bb169feb978aea
All reactions