--- a/scripts/install.py Mon Feb 01 13:25:37 2021 +0100 +++ b/scripts/install.py Mon Feb 01 14:49:12 2021 +0100 @@ -776,7 +776,7 @@ copyTree( os.path.join(eric6SourceDir, "Styles"), cfg['ericStylesDir'], - ['*.qss', '*.e4h', '*.e6h']) + ['*.qss', '*.e4h', '*.e6h', '*.ehj']) copyTree( os.path.join(eric6SourceDir, "i18n"), cfg['ericTranslationsDir'], @@ -849,7 +849,9 @@ print("Could not install '{0}'.".format(name)) # copy some more stuff - for name in ['default.e4k', 'default_Mac.e4k']: + # TODO: create the default shortcuts files + for name in ('default.ekj', 'default_Mac.ekj', + 'default.e4k', 'default_Mac.e4k'): try: shutilCopy(os.path.join(sourceDir, "others", name), cfg['ericOthersDir'])