4

I have a very simple question, how can i display the end of a very long line in vscode ? I did not succeed of displayng it

Here is the screenshot that will be more explicit :

enter image description here

At the end of the line we can see 3 dots there is more code after that, how can i display everything ?

Thanks in advance to the community !

foufrix
  • 1,324
  • 4
  • 21
  • 45
  • In the bottom-right corner of the window, there is an indicator that says "CLRF" or "LF" which will let you set the line endings for a particular file. Clicking on the text will allow you to change the line endings as well. Hope to help, my friend. – Tomato32 Sep 25 '18 at 07:58
  • @Tomato32 I tried either LF or CRLF and the end of the line still does not show :( – foufrix Sep 25 '18 at 08:08
  • Try installing this extension: https://marketplace.visualstudio.com/items?itemName=sohamkamani.code-eol – Tomato32 Sep 25 '18 at 08:22
  • @Tomato32 It works !! put the answer as the real one and i will choose it as the answer :) Thaaanks ! – foufrix Sep 25 '18 at 08:28
  • Yeah. Thank you, my friend :D – Tomato32 Sep 25 '18 at 08:32
  • Does this answer your question? [Visual Studio Code: How to show line endings](https://stackoverflow.com/questions/39525417/visual-studio-code-how-to-show-line-endings) – Henke Oct 04 '22 at 11:14

2 Answers2

4

Try installing this extension. Hope to help, my friend :))

https://marketplace.visualstudio.com/items?itemName=sohamkamani.code-eol

Tomato32
  • 2,145
  • 1
  • 10
  • 10
1

on MacOS, Preference -> Settings -> Editor:Word Wrap choose any option but off.

refer to: What is the property name to break long lines in VS Code?

Jules
  • 631
  • 6
  • 14