PyCharm: shortcut to fan out multiple lines in list-like structure

已回答

when you have something like

f(a,b,c)

or (a,b,c)

or [a,b,c]

or array[a,b,c]

is there a quick way to fan it out to 

[

a,

b,

c,

]

perhaps even with indent?

 

thanks for your anwer

0

Not with the current settings I'm afraid. There may be a 3rd party plugin that can help achieve that.
All the python specific code style settings are under Settings | Editor | Code Style | Python

1

请先登录再写评论。