I'm having a problem where Sublime acts the way I like with keyword arguments. PEP-8 allows two conventions for function calls:
function_name( arg=1, arg2=blah)
and
function_name(arg=1, arg2=blah)
I prefer the latter for lines of less than 80 characters. but Sublime Text 3 is not suitable for this. When I press Enter after the first comma of the line, the indentation continues in four places:
function_name(arg=1, arg2=blah)
Is there a way to make the editor align the cursor to the position to the right of the open bracket?
Thanks!
frank source share