如何在 visual studio 代码中显示完整的长行(自动换行)
How to show full long line in visual studio code (word wrap off)
我希望能够在 visual studio 代码中查看完整的长行(在一行中)。编辑器在末尾终止了带有 ...
的行。
我可以按 End
键移动到该行的最后一列,但它在视口中不可见。
是否有任何选项可以像在 Sublime Text 或 Notepad++ 中那样查看完整的长行?
The current recommendation is to turn on word wrapping if the intent
is to edit past the 10k limit or change the limit via the "hidden"
setting "editor.stopRenderingLineAfter" which is equal to 10000 by
default, but which can be changed to -1 to never stop rendering. But
then freezes/lagging might occur.
也就是说,使用CTRL + SHIFT + P 打开Command调色板,select 首选项:打开设置 (JSON),然后添加以下行:
"editor.stopRenderingLineAfter" : -1
如果您想设置硬限制,只需将 -1 更改为您想要的任意字符数。请注意,如果您没有禁用它,您可能仍然会发生换行,您可以使用 ALT + Z 或使用提到的其他方法进行切换在 .
在版本 1.41.1 中,您可以在 Preferences/Settings
中将 Editor: Word Wrap
设置为 on
。要转到“设置”,请在 Mac 中使用 Cmd
+ ,
并在 Windows 中使用 Ctrl
+ ,
。
换句话说,使用 CTRL + SHIFT + P 打开命令面板,select Preferences: Open Settings (JSON),并添加以下行:
"editor.wordWrap": "开"
我希望能够在 visual studio 代码中查看完整的长行(在一行中)。编辑器在末尾终止了带有 ...
的行。
我可以按 End
键移动到该行的最后一列,但它在视口中不可见。
是否有任何选项可以像在 Sublime Text 或 Notepad++ 中那样查看完整的长行?
The current recommendation is to turn on word wrapping if the intent is to edit past the 10k limit or change the limit via the "hidden" setting "editor.stopRenderingLineAfter" which is equal to 10000 by default, but which can be changed to -1 to never stop rendering. But then freezes/lagging might occur.
也就是说,使用CTRL + SHIFT + P 打开Command调色板,select 首选项:打开设置 (JSON),然后添加以下行:
"editor.stopRenderingLineAfter" : -1
如果您想设置硬限制,只需将 -1 更改为您想要的任意字符数。请注意,如果您没有禁用它,您可能仍然会发生换行,您可以使用 ALT + Z 或使用提到的其他方法进行切换在
在版本 1.41.1 中,您可以在 Preferences/Settings
中将 Editor: Word Wrap
设置为 on
。要转到“设置”,请在 Mac 中使用 Cmd
+ ,
并在 Windows 中使用 Ctrl
+ ,
。
换句话说,使用 CTRL + SHIFT + P 打开命令面板,select Preferences: Open Settings (JSON),并添加以下行:
"editor.wordWrap": "开"