wrap line function

Hi all,

my company just switched the IDE from Eclipse to PyCharm. I like how PyCharm works and I found all of the shortcuts and functions which I used in Eclipse also in PyCharm. 

Unfortunately, there is one function which I really used all the time and it's missing from PyCharm.

There is not a function to wrap a line. For example I have a line of code:

x = [ "test", "test1", "test2", "test3"]

and in Eclipse with Ctrl + 1 -> Wrap will format the line of code to:

x = ["test",

      "test1",

      "test2",

     "test3"]

or

result = (a="abc", b="abc", c="abc")

results:

resut = (a="abc",

            b="abc",

            c="abc")

 And of course, unwrap will format the code from

resut = (a="abc",

            b="abc",

            c="abc")

to

result = (a="abc", b="abc", c="abc")

 

Is there any plan to implement this functionality?

0

请先登录再写评论。