我希望多行列表的格式为:
long_list = [
6,
8,
]
相反,PyCharm 希望将其缩进为:
long_list = [
6,
8,
]
我讨厌!我将缩进设置为两个空格,并将继续缩进设置为四个空格。任何帮助将不胜感激!
选择列表,
按 Ctrl + Alt + I 或转到
Code > Auto-indent lines
。 PyCharm 会缩进代码。
在设置中,您可以转到
Editor > Code style > Python > Wrapping and Braces
并取消选中 Hang closing brackets
。然后,自动缩进应根据需要格式化大括号。
使用
Smart keys
,您应该转到 Editor > General > Smart Keys
,在 Enter
选项卡中,确保选中 Smart indent
您可能在
Settings
| 中勾选了“悬挂右括号” Editor
| Code Style
| Python
| Wrapping and Braces
选项卡。
取消选中它可以取消右括号的缩进。