We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 769054d commit d42a008Copy full SHA for d42a008
1 file changed
mathicsscript/completion.py
@@ -108,9 +108,9 @@ def __init__(self, definitions):
108
109
# @ is not really an operator
110
self.ascii_operators = frozenset(_data["ascii-operators"])
111
- from mathics_scanner.characters import aliased_characters
+ from mathics_scanner.characters import ALIASED_CHARACTERS
112
113
- self.escape_sequences = aliased_characters.keys()
+ self.escape_sequences = ALIASED_CHARACTERS.keys()
114
115
def _is_space_before_cursor(self, text_before_cursor: str) -> bool:
116
"""Space before or no text before cursor."""
0 commit comments