I'm doing some documentation in Markdown using Visual Studio Code. The problem is that I'm used to hard wrapping.
The only way I've found for setting hard wrapping in Visual Studio Code is by the EditorConfig extension. EditorConfig is not a Microsoft extension and sometimes you can see weird things happening such as wrapping some inline code (between backticks: ``
) for instance.
Is there some built-in way of setting hard wrapping in Visual Studio Code? If not, how do people set soft wrapping in Visual Studio Code in order to make Markdown look great (for instance, keep the indentation after a wrap in a bulleted list long paragraph)? Is it scheduled for a future release built-in hard-wrapping in Visual Studio Code?
Thanks
Update: In hard-wrapped text each new line is actually a line, has a different number. Soft wrapping is wrapping only for display: you change the viewport and lines changes, but each paragraph is just a line, a number ---as in VS Code.
Update2: You can hard wrap with the VSCodeVim extension now the same way you wrap in Vim: g, q, } or any other combination with g, q.