| Module implementing the editor component of the eric3 IDE. 
        
            | Imported modules |  |  
        | from Checks.SyntaxCheckerDialog import SyntaxCheckerDialog from Checks.TabnannyDialog import TabnannyDialog
 from Debugger.DebugIcons import IconBreak, IconCBreak, IconBreakDisabled, IconTBreak, IconTCBreak
 from Debugger.EditBreakpointDialog import EditBreakpointDialog
 from EditorIcons import *
 from Icons.FileIcons import IconFilePython
 from Icons.Icons import IconClose
 import Preferences
 from Printer import Printer
 from UI.CodeMetricsDialog import CodeMetricsDialog
 from UI.PyCoverageDialog import PyCoverageDialog
 from UI.PyProfileDialog import PyProfileDialog
 import Utilities
 import glob
 import os
 from qt import *
 from qtext import QextScintilla, QextScintillaPrinter, QextScintillaMacro
 import re
 
 |  
            | Classes |  |  
        | 
| Editor | Class implementing the editor component of the eric3 IDE. |  |  |