| 2555 | } |
| 2556 | |
| 2557 | LSPClientServer::LSPRequestHandle |
| 2558 | LSPClientServer::documentRangeFormatting( const URI& document, const TextRange& range, |
| 2559 | const json& options, const JsonReplyHandler& h ) { |
| 2560 | auto params = textDocumentOptions( document, options, range.normalized() ); |
| 2561 | return send( newRequest( "textDocument/rangeFormatting", params ), h ); |
| 2562 | } |
| 2563 | |
| 2564 | LSPClientServer::LSPRequestHandle |
| 2565 | LSPClientServer::documentRangeFormatting( const URI& document, const TextRange& range, |
no test coverage detected