96:9624a110667d | 97:c4086afea02b |
---|---|
7 Module implementing a typing completer for Ruby. | 7 Module implementing a typing completer for Ruby. |
8 """ | 8 """ |
9 | 9 |
10 import re | 10 import re |
11 | 11 |
12 from PyQt4.QtCore import QObject, SIGNAL, QRegExp | 12 from PyQt4.QtCore import QRegExp |
13 from PyQt4.Qsci import QsciLexerRuby | 13 from PyQt4.Qsci import QsciLexerRuby |
14 | 14 |
15 from .CompleterBase import CompleterBase | 15 from .CompleterBase import CompleterBase |
16 | 16 |
17 import Preferences | 17 import Preferences |