I want Visual Studio Code to "word wrap" latex files automatically, but leave other files as they are. How do I do this?
Asked
Active
Viewed 1.6k times
1 Answers
48
You can use Language-specific settings. Add the following block in your user settings.
"[latex]": {
"editor.wordWrap": "on"
},
To do this, open the command pallette (ctrl - shift - p), select Preferences: Configure language specific settings... and select the latex language.
Merlijn Sebrechts
- 1,469
