Index: clangd/clients/clangd-vscode/src/extension.ts =================================================================== --- clangd/clients/clangd-vscode/src/extension.ts +++ clangd/clients/clangd-vscode/src/extension.ts @@ -24,13 +24,6 @@ const clientOptions: vscodelc.LanguageClientOptions = { // Register the server for C/C++ files documentSelector: ['c', 'cc', 'cpp', 'h', 'hh', 'hpp'], - uriConverters: { - // FIXME: by default the URI sent over the protocol will be percent encoded (see rfc3986#section-2.1) - // the "workaround" below disables temporarily the encoding until decoding - // is implemented properly in clangd - code2Protocol: (uri: vscode.Uri) : string => uri.toString(true), - protocol2Code: (uri: string) : vscode.Uri => undefined - } }; const clangdClient = new vscodelc.LanguageClient('Clang Language Server', serverOptions, clientOptions);