如何在Visual Studio Code中包装文字/注释?


19

有人可以告诉我在Microsoft的Visual Studio Code中包装文字,注释等的键盘快捷键/菜单路径吗?我在找不到它User Preferences。这是屏幕快照,其中有很多我想包装的评论:

在此处输入图片说明

我知道Sublime Text 2在下具有该选项Edit > Wrap,但是在Visual Studio Code上找不到类似的东西。


FWIW,我曾在Stack Overflow上提出过类似的要求,但我明确要求在每个实例的基础上提供一种快速的方法(不包括此处给出的答案)。
耶隆2015年

Answers:


33

文件>首选项>设置

新设置用户界面(可搜索🔎)🎉

设置用户界面现已启用搜索功能

只是搜索换行/自动换行

  • editor.wordWrap:“ off” -行将永远不会换行。editor.wordWrap:“ on”-线将以视口宽度换行
  • editor.wordWrap:“ on”-线将以视口宽度换行。
  • editor.wordWrap:“ wordWrapColumn”-行将以editor.wordWrapColumn的值换行。
  • editor.wordWrap:“ bounded”-行将以最小视口宽度和editor.wordWrapColumn的值进行换行。
  • editor.wordWrap:“ bounded”-行将以最小视口宽度和editor.wordWrapColumn的值进行换行。

参考:https : //code.visualstudio.com/updates/v1_10#_word-wrap-settings-redesign和来自@ jermila-dhas的信息

不推荐使用(出于历史记录目的/ JSON设置的外观)

文件>首选项>用户设置

对于初学者

将以下内容粘贴到 settings.json

// Place your settings in this file to overwrite the default settings
{       "editor.wrappingColumn": 0 }

就是这样,它更简单,但是可能我们会为json设置提供一个开源用户界面。

对于中级用户

如果已经有了settings.json,只需添加

"editor.wrappingColumn": 0

由于设置使用JSON,因此最后的设置没有逗号,,并且设置}以“默认设置” 结尾,并且settings.json覆盖所有“默认”设置


4
哇...。很好隐藏。微软做得好。
Aliostad

1
完全同意。但是性能和功能使Visual Studio代码易于用于支持的某些语言。
Edward Chan JW 2015年

gist.github.com/matijagrcic/…上查看所有设置,或在默认设置列表中按Ctrl + Shift + O,以查看所有可用设置的概述。
Matija Grcic 2015年

这让我发疯,不得不滚动。将需要签出其他设置。谢谢。
thehme

如果您想缩进的换行比初始行多,请使用"editor.wrappingIndent": "indent"(或deepIndent)。
Qwertie

5

如果您使用的是Visual Studio代码v1.10,则该设置"editor.wrappingCloumn"已被弃用。

使用"editor.wordWrap": "on"代替。

更多信息可以在这里找到

(希望这可能对某人有帮助)

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.