From f7cb9e9fbe50e5d0e23e81b8b5b90405ef5c1931 Mon Sep 17 00:00:00 2001 From: ShuiRuTian <158983297@qq.com> Date: Mon, 11 Jan 2021 14:45:35 +0800 Subject: move logic from client to server. --- crates/rust-analyzer/src/handlers.rs | 10 +++++++++- editors/code/src/client.ts | 20 -------------------- 2 files changed, 9 insertions(+), 21 deletions(-) diff --git a/crates/rust-analyzer/src/handlers.rs b/crates/rust-analyzer/src/handlers.rs index 1aafef78b..17f67d4b7 100644 --- a/crates/rust-analyzer/src/handlers.rs +++ b/crates/rust-analyzer/src/handlers.rs @@ -435,7 +435,15 @@ pub(crate) fn handle_will_rename_files( if from_path.is_dir() { // This is a quick implement, try to use will_rename_file code. // imitate change the older_folder/mod.rs to older_folder/new_folder.rs - let imitate_from_url = from.join("mod.rs").ok()?; + + // add '/' to end of url -- from `file://path/to/folder` to `file://path/to/folder/` + let old_folder_name = from_path.file_stem()?; + let old_folder_name = old_folder_name.to_str()?; + let mut old_folder_name = old_folder_name.to_string(); + old_folder_name.push('/'); + let from_with_trailing_slash = from.join(&old_folder_name).ok()?; + + let imitate_from_url = from_with_trailing_slash.join("mod.rs").ok()?; let imite_new_file_name = to_path.file_name()?.to_str()?; Some(( snap.url_to_file_id(&imitate_from_url).ok()?, diff --git a/editors/code/src/client.ts b/editors/code/src/client.ts index 772892b07..539e487ec 100644 --- a/editors/code/src/client.ts +++ b/editors/code/src/client.ts @@ -51,32 +51,12 @@ export function createClient(serverPath: string, cwd: string, extraEnv: Env): lc 'Rust Analyzer Language Server Trace', ); - const workspace: lc.WorkspaceMiddleware = { - willRenameFiles: function

>(this: void, data: P, next: (data: P) => R) { - // why add this function rather than default: - // 1. change `url` parameter to happy format for url crate. (folder should end with '/') - // 2. filter some change in here. - // 2.1 rename from or to `mod.rs` should be special. - // 2.2 not all folder change should be cared, only those have files with ".rs" postfix. - const newFiles = data.files.map((file) => { - const isFolder = !file.oldUri.path.endsWith(".rs"); - return !isFolder ? file : { - oldUri: vscode.Uri.file(file.oldUri.path + '/'), - newUri: vscode.Uri.file(file.newUri.path + '/') - }; - }); - data = { ...data, files: newFiles }; - return next(data); - } - }; - const clientOptions: lc.LanguageClientOptions = { documentSelector: [{ scheme: 'file', language: 'rust' }], initializationOptions: vscode.workspace.getConfiguration("rust-analyzer"), diagnosticCollectionName: "rustc", traceOutputChannel, middleware: { - workspace, provideDocumentSemanticTokens(document: vscode.TextDocument, token: vscode.CancellationToken, next: DocumentSemanticsTokensSignature): vscode.ProviderResult { return semanticHighlightingWorkaround(next, document, token); }, -- cgit v1.2.3