Visual Studio代码:如何显示行尾

我怎样才能显示在Visual Studio代码(不在Visual Studio中)lineendings(CR,LF)。

我使用以下设置,但没有显示行结束。

"editor.renderWhitespace": true, "editor.renderControlCharacters": true, "editor.renderIndentGuides": true 

是否有排列的设置?

更新:
我已经在github https://github.com/Microsoft/vscode/issues/12223上打开了一个问题

问候Tonka

AFAIK没有办法在编辑器空间中直观地看到行结尾,但是在窗口的右下angular有一个指示符,指示“CLRF”或“LF”,它可以让你设置特定文件的行尾。 点击文本将允许你改变行结束。

在这里输入图像说明

如果你想把它设置为默认的LF,你可以进入文件 – >首选项 – >设置,在用户设置下,你可以把这行粘贴到其他用户设置的下面。

“files.eol”:“\ n”

例如。

 "git.confirmSync": false, "window.zoomLevel": -1, "workbench.activityBar.visible": true, "editor.wordWrap": true, "workbench.iconTheme": "vscode-icons", "window.menuBarVisibility": "default", "vsicons.projectDetection.autoReload": true, "files.eol": "\n"