diff -r 29e9027f28c0 -r 43e994af5ee0 eric6/QScintilla/TypingCompleters/__init__.py --- a/eric6/QScintilla/TypingCompleters/__init__.py Thu Aug 29 18:59:54 2019 +0200 +++ b/eric6/QScintilla/TypingCompleters/__init__.py Thu Aug 29 19:00:33 2019 +0200 @@ -21,7 +21,7 @@ @return reference to the instanciated lexer object (QsciLexer) """ try: - if language in ["Python", "Python2", "Python3"]: + if language in ["Python", "Python2", "Python3", "MicroPython"]: from .CompleterPython import CompleterPython return CompleterPython(editor, parent) elif language == "Ruby":