7 Module implementing a PostScript lexer with some additional methods. |
7 Module implementing a PostScript lexer with some additional methods. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt6.Qsci import QsciLexerPostScript |
10 from PyQt6.Qsci import QsciLexerPostScript |
11 |
11 |
|
12 from eric7 import Preferences |
|
13 |
12 from .Lexer import Lexer |
14 from .Lexer import Lexer |
13 from eric7 import Preferences |
|
14 |
15 |
15 |
16 |
16 class LexerPostScript(Lexer, QsciLexerPostScript): |
17 class LexerPostScript(Lexer, QsciLexerPostScript): |
17 """ |
18 """ |
18 Subclass to implement some additional lexer dependant methods. |
19 Subclass to implement some additional lexer dependant methods. |