--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric6/QScintilla/TypingCompleters/__init__.py Sun Apr 14 15:09:21 2019 +0200 @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- + +# Copyright (c) 2007 - 2019 Detlev Offenbach <detlev@die-offenbachs.de> +# + +""" +Package implementing lexers for the various supported programming languages. +""" + + +from __future__ import unicode_literals + + +def getCompleter(language, editor, parent=None): + """ + Module function to instantiate a lexer object for a given language. + + @param language language of the lexer (string) + @param editor reference to the editor object (QScintilla.Editor) + @param parent reference to the parent object (QObject) + @return reference to the instanciated lexer object (QsciLexer) + """ + try: + if language in ["Python", "Python2", "Python3"]: + from .CompleterPython import CompleterPython + return CompleterPython(editor, parent) + elif language == "Ruby": + from .CompleterRuby import CompleterRuby + return CompleterRuby(editor, parent) + else: + return None + except ImportError: + return None