Formatter: Attempt at implementing into LSP (untested)

This commit is contained in:
gregorni 2023-08-29 22:50:55 +02:00
parent bf3917099a
commit bce4fb77d9
2 changed files with 42 additions and 0 deletions

View file

@ -184,3 +184,9 @@ class LocationLink:
"targetRange": self.target_range.to_json(),
"targetSelectionRange": self.target_selection_range.to_json(),
}
@dataclass
class TextEdit:
range: Range
newText: str