format
This commit is contained in:
parent
1bb4e973ff
commit
3a0234d60f
@ -130,7 +130,7 @@ export function joinLines(ctx: Ctx): Cmd {
|
|||||||
builder.replace(edit.range, edit.newText);
|
builder.replace(edit.range, edit.newText);
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
.then(() => {}, console.error);
|
.then(() => { }, console.error);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -248,7 +248,7 @@ export function ssr(ctx: Ctx): Cmd {
|
|||||||
|
|
||||||
await vscode.workspace.applyEdit(client.protocol2CodeConverter.asWorkspaceEdit(edit));
|
await vscode.workspace.applyEdit(client.protocol2CodeConverter.asWorkspaceEdit(edit));
|
||||||
})
|
})
|
||||||
.then(() => {}, console.error);
|
.then(() => { }, console.error);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -468,7 +468,7 @@ export function showReferences(ctx: Ctx): Cmd {
|
|||||||
client.protocol2CodeConverter.asPosition(position),
|
client.protocol2CodeConverter.asPosition(position),
|
||||||
locations.map(client.protocol2CodeConverter.asLocation),
|
locations.map(client.protocol2CodeConverter.asLocation),
|
||||||
)
|
)
|
||||||
.then(() => {}, console.error);
|
.then(() => { }, console.error);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
@ -481,7 +481,7 @@ export function applyActionGroup(_ctx: Ctx): Cmd {
|
|||||||
'rust-analyzer.resolveCodeAction',
|
'rust-analyzer.resolveCodeAction',
|
||||||
selectedAction.arguments,
|
selectedAction.arguments,
|
||||||
)
|
)
|
||||||
.then(() => {}, console.error);
|
.then(() => { }, console.error);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -515,7 +515,7 @@ export function openDocs(ctx: Ctx): Cmd {
|
|||||||
|
|
||||||
if (doclink != null) {
|
if (doclink != null) {
|
||||||
vscode.commands.executeCommand("vscode.open", vscode.Uri.parse(doclink))
|
vscode.commands.executeCommand("vscode.open", vscode.Uri.parse(doclink))
|
||||||
.then(() => {}, console.error);
|
.then(() => { }, console.error);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -79,7 +79,7 @@ async function getDebugConfiguration(ctx: Ctx, runnable: ra.Runnable): Promise<v
|
|||||||
if (!debugEngine) {
|
if (!debugEngine) {
|
||||||
vscode.window.showErrorMessage(`Install [CodeLLDB](https://marketplace.visualstudio.com/items?itemName=vadimcn.vscode-lldb)`
|
vscode.window.showErrorMessage(`Install [CodeLLDB](https://marketplace.visualstudio.com/items?itemName=vadimcn.vscode-lldb)`
|
||||||
+ ` or [MS C++ tools](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools) extension for debugging.`)
|
+ ` or [MS C++ tools](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools) extension for debugging.`)
|
||||||
.then(() => {}, console.error);
|
.then(() => { }, console.error);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -77,7 +77,7 @@ async function tryActivate(context: vscode.ExtensionContext) {
|
|||||||
ctx = await Ctx.create(config, context, serverPath, workspaceFolder.uri.fsPath);
|
ctx = await Ctx.create(config, context, serverPath, workspaceFolder.uri.fsPath);
|
||||||
|
|
||||||
setContextValue(RUST_PROJECT_CONTEXT_NAME, true)
|
setContextValue(RUST_PROJECT_CONTEXT_NAME, true)
|
||||||
.then(() => {}, console.error);
|
.then(() => { }, console.error);
|
||||||
|
|
||||||
// Commands which invokes manually via command palette, shortcut, etc.
|
// Commands which invokes manually via command palette, shortcut, etc.
|
||||||
|
|
||||||
@ -144,7 +144,7 @@ async function tryActivate(context: vscode.ExtensionContext) {
|
|||||||
|
|
||||||
export async function deactivate() {
|
export async function deactivate() {
|
||||||
setContextValue(RUST_PROJECT_CONTEXT_NAME, undefined)
|
setContextValue(RUST_PROJECT_CONTEXT_NAME, undefined)
|
||||||
.then(() => {}, console.error);
|
.then(() => { }, console.error);
|
||||||
await ctx?.client.stop();
|
await ctx?.client.stop();
|
||||||
ctx = undefined;
|
ctx = undefined;
|
||||||
}
|
}
|
||||||
@ -189,7 +189,7 @@ async function bootstrapExtension(config: Config, state: PersistentState): Promi
|
|||||||
log.error(e);
|
log.error(e);
|
||||||
if (state.releaseId === undefined) { // Show error only for the initial download
|
if (state.releaseId === undefined) { // Show error only for the initial download
|
||||||
vscode.window.showErrorMessage(`Failed to download rust-analyzer nightly ${e}`)
|
vscode.window.showErrorMessage(`Failed to download rust-analyzer nightly ${e}`)
|
||||||
.then(() => {}, console.error);
|
.then(() => { }, console.error);
|
||||||
}
|
}
|
||||||
return undefined;
|
return undefined;
|
||||||
});
|
});
|
||||||
@ -308,7 +308,7 @@ async function getServer(config: Config, state: PersistentState): Promise<string
|
|||||||
"If you feel that your platform should be supported, please create an issue " +
|
"If you feel that your platform should be supported, please create an issue " +
|
||||||
"about that [here](https://github.com/rust-analyzer/rust-analyzer/issues) and we " +
|
"about that [here](https://github.com/rust-analyzer/rust-analyzer/issues) and we " +
|
||||||
"will consider it."
|
"will consider it."
|
||||||
).then(() => {}, console.error);
|
).then(() => { }, console.error);
|
||||||
return undefined;
|
return undefined;
|
||||||
}
|
}
|
||||||
const ext = platform.indexOf("-windows-") !== -1 ? ".exe" : "";
|
const ext = platform.indexOf("-windows-") !== -1 ? ".exe" : "";
|
||||||
@ -437,6 +437,6 @@ function warnAboutExtensionConflicts() {
|
|||||||
`You have both the ${fst[0]} (${fst[1]}) and ${sec[0]} (${sec[1]}) ` +
|
`You have both the ${fst[0]} (${fst[1]}) and ${sec[0]} (${sec[1]}) ` +
|
||||||
"plugins enabled. These are known to conflict and cause various functions of " +
|
"plugins enabled. These are known to conflict and cause various functions of " +
|
||||||
"both plugins to not work correctly. You should disable one of them.", "Got it")
|
"both plugins to not work correctly. You should disable one of them.", "Got it")
|
||||||
.then(() => {}, console.error);
|
.then(() => { }, console.error);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -46,7 +46,7 @@ export async function selectRunnable(ctx: Ctx, prevRunnable?: RunnableQuickPick,
|
|||||||
// it is the debug case, run always has at least 'cargo check ...'
|
// it is the debug case, run always has at least 'cargo check ...'
|
||||||
// see crates\rust-analyzer\src\main_loop\handlers.rs, handle_runnables
|
// see crates\rust-analyzer\src\main_loop\handlers.rs, handle_runnables
|
||||||
vscode.window.showErrorMessage("There's no debug target!")
|
vscode.window.showErrorMessage("There's no debug target!")
|
||||||
.then(() => {}, console.error);
|
.then(() => { }, console.error);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user