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
Is your feature request related to a problem? Please describe.
Carriage return (CRLF) line endings cause problems on linux systems
Describe the solution you'd like
I want to see if there are any carriage returns (U+000D) in a file.
Adding it as a character in the config does not trigger gremlin tracker:
Render Line Endings vscode plugin is a solution where you can identify the line endings in files.
You can edit .gitconfig to enforce certain line endings
#Set LF as your line ending default.
git config --global core.eol lf
#Set autocrlf to false to stop converting between windows style (CRLF) and Unix style (LF)
git config --global core.autocrlf false
You can edit vscode settings to enforce line endings
"files.eol": "\n",
Additional context
I'm not sure if this is possible with the vscode api, but it would be helpful.
Are there other unicode characters that gremlin tracker can't detect?
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Carriage return (CRLF) line endings cause problems on linux systems
Describe the solution you'd like
I want to see if there are any carriage returns (
U+000D
) in a file.Adding it as a character in the config does not trigger gremlin tracker:
Describe alternatives you've considered
Render Line Endings vscode plugin is a solution where you can identify the line endings in files.
You can edit .gitconfig to enforce certain line endings
Additional context
I'm not sure if this is possible with the vscode api, but it would be helpful.
Are there other unicode characters that gremlin tracker can't detect?
The text was updated successfully, but these errors were encountered: