You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
859 B
Python
36 lines
859 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
"""A Mirror object contains the same text as its related tabstop."""
|
|
|
|
from UltiSnips.text_objects._base import NoneditableTextObject
|
|
|
|
|
|
class Mirror(NoneditableTextObject):
|
|
|
|
"""See module docstring."""
|
|
|
|
def __init__(self, parent, tabstop, token):
|
|
NoneditableTextObject.__init__(self, parent, token)
|
|
self._ts = tabstop
|
|
|
|
def _update(self, done):
|
|
if self._ts.is_killed:
|
|
self.overwrite('')
|
|
self._parent._del_child(self) # pylint:disable=protected-access
|
|
return True
|
|
|
|
if self._ts not in done:
|
|
return False
|
|
|
|
self.overwrite(self._get_text())
|
|
return True
|
|
|
|
def _get_text(self):
|
|
"""Returns the text used for mirroring.
|
|
|
|
Overwritten by base classes.
|
|
|
|
"""
|
|
return self._ts.current_text
|