You can modify the header comment of a file in PyDev

0

I've been experimenting with several Python IDEs, for example PyCharm or the same IDLE . Now I'm trying to use PyDev as a plugin for Eclipse , and I'm pretty much like it. I would like to know if it is possible to change or modify the default header comment.

For example, if I create a class, it gives this:

'''
Created on Dec 8, 2014

@author: nbro
'''

class MyClass(object):
    '''
    classdocs
    '''

    def __init__(self, params):
        '''
        Constructor
        '''

I would like to change the initial comment so that it is always reflected in my projects.

    
asked by anonymous 08.12.2014 / 02:46

1 answer

1

Go to Window and click Preferences > PyDev > Editor . Search for (Code) Templates and change the values listed in Comments .

    
08.12.2014 / 12:09