The raw form code is as the following:
class A(object):
def __init__(self):
self.__private()
self.public()
def __private(self):
print('A.__private()')
def public(self):
print 'A.public()'
What is the most quickest way to set into the well formatted form as the following in gvim?
class A(object):
def __init__(self):
self.__private()
self.public()
def __private(self):
print('A.__private()')
def public(self):
print 'A.public()'