5 |
5 |
6 """ |
6 """ |
7 Module implementing a special QScintilla lexer to handle the preferences. |
7 Module implementing a special QScintilla lexer to handle the preferences. |
8 """ |
8 """ |
9 |
9 |
|
10 from PyQt6.Qsci import QsciScintillaBase |
10 from PyQt6.QtCore import QCoreApplication, QObject |
11 from PyQt6.QtCore import QCoreApplication, QObject |
11 from PyQt6.Qsci import QsciScintillaBase |
|
12 |
12 |
13 from eric7 import Globals, Preferences |
13 from eric7 import Globals, Preferences |
14 |
14 |
15 |
15 |
16 class PreferencesLexerError(Exception): |
16 class PreferencesLexerError(Exception): |