(self, config, *args, **kwargs)
| 307 | signals = ["edit-pos-changed"] |
| 308 | |
| 309 | def __init__(self, config, *args, **kwargs): |
| 310 | self._bpy_text = "" |
| 311 | self._bpy_attr = [] |
| 312 | self._bpy_selectable = True |
| 313 | self._bpy_may_move_cursor = False |
| 314 | self.config = config |
| 315 | self.tab_length = config.tab_length |
| 316 | super().__init__(*args, **kwargs) |
| 317 | |
| 318 | def set_edit_pos(self, pos): |
| 319 | super().set_edit_pos(pos) |