| 2539 | } |
| 2540 | |
| 2541 | LSPClientServer::LSPRequestHandle LSPClientServer::documentFormatting( const URI& document, |
| 2542 | const json& options, |
| 2543 | const JsonReplyHandler& h ) { |
| 2544 | auto params = textDocumentOptions( document, options ); |
| 2545 | return send( newRequest( "textDocument/formatting", params ), h ); |
| 2546 | } |
| 2547 | |
| 2548 | LSPClientServer::LSPRequestHandle |
| 2549 | LSPClientServer::documentFormatting( const URI& document, const json& options, |
no test coverage detected