更改PyCharm多行列表自动缩进

问题描述 投票:0回答:4

我希望多行列表的格式为:

long_list = [
    6,
    8,
]

相反,PyCharm 希望将其缩进为:

long_list = [
  6,
  8,
  ]

我讨厌!我将缩进设置为两个空格,并将继续缩进设置为四个空格。任何帮助将不胜感激!

pycharm
4个回答
0
投票

选择列表,

Ctrl + Alt + I 或转到

Code > Auto-indent lines
。 PyCharm 会缩进代码。


0
投票

在设置中,您可以转到

Editor > Code style > Python > Wrapping and Braces
并取消选中
Hang closing brackets
。然后,自动缩进应根据需要格式化大括号。


0
投票

使用

Smart keys
,您应该转到
Editor > General > Smart Keys
,在
Enter
选项卡中,确保选中
Smart indent


0
投票

您可能在

Settings
| 中勾选了“悬挂右括号”
Editor
|
Code Style
|
Python
|
Wrapping and Braces
选项卡。

设置中的包裹和大括号,注意示例代码中的蓝色突出显示

取消选中它可以取消右括号的缩进。

© www.soinside.com 2019 - 2024. All rights reserved.