Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在 Java VS CODE Formatter 中禁用此自动换行符
这是错的
预期的:
这是因为您打开了 wordWrap,但您当前的代码长度超过了默认设置的最大长度。
您的问题有两种解决方案,将其写在 Settings.json 中:
1.关闭wordWrap:
"editor.wordWrap":"off",
2.仍然保持 wordWrap 开启,但改变代码的最大长度:
"editor.wordWrap": "wordWrapColumn", "editor.wordWrapColumn":200,