eric6/Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/__init__.py

Sat, 31 Aug 2019 12:18:44 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 31 Aug 2019 12:18:44 +0200
changeset 7188
f9c57c6fa7c4
parent 6942
2602857055c5
child 7229
53054eb5b15a
permissions
-rw-r--r--

HgStatusDialog: backed out the disabling of the status list for merges because it prevents to review the individual changes and to inspect the list for long lists of changed files.

# -*- coding: utf-8 -*-

# Copyright (c) 2014 - 2019 Detlev Offenbach <detlev@die-offenbachs.de>
#

"""
Package implementing the largefiles extension support interface.
"""


from __future__ import unicode_literals


def getDefaults():
    """
    Function to get the default values of the extension.
    
    @return dictionary with default values and parameter as key (dict)
    """
    return {
        'minsize': 10,      # minimum size in MB
        'pattern': [],      # file name patterns
    }

eric ide

mercurial