我在vscode
中保存时使用格式,我想说vscode
不要在第 80 列中换行。 这些设置对我不起作用。
"editor.wordWrapColumn": 120,
"editor.wordWrap": "wordWrapColumn"
setting.json
中的正确设置是什么?
编辑: 根据 Brett 的回答,是否可以编辑例如 python 的 autopep8 设置?
我正在使用最新版本的C/C++ Microsoft扩展。 还有 Python Microsoft扩展。
在settings.json
中,您可以将参数传递给 autopep8 并定义最大列宽:
"python.formatting.autopep8Args": [
"--max-line-length=200"
]
该设置将特定于工具,具体取决于您选择使用 Python 扩展设置的格式化程序(例如,autopep8 将有自己的设置,黑色有自己的设置等(。