replaceRange method
Replace a range in the active editor.
Implementation
Future<BridgeResponse> replaceRange(VscodeRange range, String newText) {
return _protocol.sendRequest('vscode/replaceRange', {
'range': range.toJson(),
'text': newText,
});
}