2018-08-10 15:07:43 +03:00
|
|
|
import * as vscode from "vscode";
|
2022-04-21 13:39:53 -07:00
|
|
|
import * as lc from "vscode-languageclient/node";
|
2020-03-17 12:44:31 +01:00
|
|
|
import * as os from "os";
|
2018-08-10 15:07:43 +03:00
|
|
|
|
2018-10-07 22:59:02 +02:00
|
|
|
import * as commands from "./commands";
|
2019-12-30 15:11:30 +01:00
|
|
|
import { Ctx } from "./ctx";
|
2021-05-23 13:57:04 +03:00
|
|
|
import { Config } from "./config";
|
2021-12-23 08:24:58 +02:00
|
|
|
import { log, isValidExecutable, isRustDocument } from "./util";
|
2020-03-16 19:23:38 +01:00
|
|
|
import { PersistentState } from "./persistent_state";
|
2020-03-30 18:12:22 +01:00
|
|
|
import { activateTaskProvider } from "./tasks";
|
2020-05-27 19:40:13 +03:00
|
|
|
import { setContextValue } from "./util";
|
2021-12-23 13:04:27 +02:00
|
|
|
import { exec } from "child_process";
|
2019-12-30 14:42:59 +01:00
|
|
|
|
2020-02-05 00:13:46 +02:00
|
|
|
let ctx: Ctx | undefined;
|
2018-08-10 15:07:43 +03:00
|
|
|
|
2020-05-27 19:40:13 +03:00
|
|
|
const RUST_PROJECT_CONTEXT_NAME = "inRustProject";
|
|
|
|
|
2022-06-05 13:59:49 +02:00
|
|
|
let TRACE_OUTPUT_CHANNEL: vscode.OutputChannel | null = null;
|
|
|
|
export function traceOutputChannel() {
|
|
|
|
if (!TRACE_OUTPUT_CHANNEL) {
|
|
|
|
TRACE_OUTPUT_CHANNEL = vscode.window.createOutputChannel(
|
|
|
|
"Rust Analyzer Language Server Trace"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return TRACE_OUTPUT_CHANNEL;
|
|
|
|
}
|
|
|
|
let OUTPUT_CHANNEL: vscode.OutputChannel | null = null;
|
|
|
|
export function outputChannel() {
|
|
|
|
if (!OUTPUT_CHANNEL) {
|
|
|
|
OUTPUT_CHANNEL = vscode.window.createOutputChannel("Rust Analyzer Language Server");
|
|
|
|
}
|
|
|
|
return OUTPUT_CHANNEL;
|
|
|
|
}
|
|
|
|
|
2022-04-21 13:39:53 -07:00
|
|
|
export interface RustAnalyzerExtensionApi {
|
2022-08-23 15:45:02 +02:00
|
|
|
client?: lc.LanguageClient;
|
2022-04-21 13:39:53 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
export async function activate(
|
|
|
|
context: vscode.ExtensionContext
|
|
|
|
): Promise<RustAnalyzerExtensionApi> {
|
2020-12-21 20:36:58 +02:00
|
|
|
// VS Code doesn't show a notification when an extension fails to activate
|
|
|
|
// so we do it ourselves.
|
2022-04-21 13:39:53 -07:00
|
|
|
return await tryActivate(context).catch((err) => {
|
2020-07-02 05:19:02 +03:00
|
|
|
void vscode.window.showErrorMessage(`Cannot activate rust-analyzer: ${err.message}`);
|
|
|
|
throw err;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-04-21 13:39:53 -07:00
|
|
|
async function tryActivate(context: vscode.ExtensionContext): Promise<RustAnalyzerExtensionApi> {
|
2022-08-23 15:45:02 +02:00
|
|
|
// We only support local folders, not eg. Live Share (`vlsl:` scheme), so don't activate if
|
|
|
|
// only those are in use.
|
|
|
|
// (r-a still somewhat works with Live Share, because commands are tunneled to the host)
|
|
|
|
const folders = (vscode.workspace.workspaceFolders || []).filter((folder) =>
|
|
|
|
folder.uri.scheme == "file"
|
|
|
|
);
|
|
|
|
const rustDocuments = vscode.workspace.textDocuments.filter((document) =>
|
|
|
|
isRustDocument(document)
|
|
|
|
);
|
|
|
|
|
|
|
|
if (folders.length == 0 && rustDocuments.length == 0) {
|
|
|
|
// FIXME: Ideally we would choose not to activate at all (and avoid registering
|
|
|
|
// non-functional editor commands), but VS Code doesn't seem to have a good way of doing
|
|
|
|
// that
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2020-02-17 22:09:44 +02:00
|
|
|
const config = new Config(context);
|
2020-03-17 12:44:31 +01:00
|
|
|
const state = new PersistentState(context.globalState);
|
2021-12-23 09:49:24 +02:00
|
|
|
const serverPath = await bootstrap(context, config, state).catch((err) => {
|
2020-06-22 21:18:36 +03:00
|
|
|
let message = "bootstrap error. ";
|
|
|
|
|
2020-07-05 17:42:52 +03:00
|
|
|
message += 'See the logs in "OUTPUT > Rust Analyzer Client" (should open automatically). ';
|
|
|
|
message += 'To enable verbose logs use { "rust-analyzer.trace.extension": true }';
|
2020-06-22 21:18:36 +03:00
|
|
|
|
2020-06-20 15:38:08 +03:00
|
|
|
log.error("Bootstrap error", err);
|
|
|
|
throw new Error(message);
|
|
|
|
});
|
2020-02-17 14:03:33 +01:00
|
|
|
|
2022-08-23 15:45:02 +02:00
|
|
|
if (folders.length === 0) {
|
|
|
|
ctx = await Ctx.create(config, context, serverPath, {
|
|
|
|
kind: "Detached Files",
|
|
|
|
files: rustDocuments,
|
|
|
|
});
|
2020-11-16 00:19:04 +02:00
|
|
|
} else {
|
|
|
|
// Note: we try to start the server before we activate type hints so that it
|
|
|
|
// registers its `onDidChangeDocument` handler before us.
|
|
|
|
//
|
|
|
|
// This a horribly, horribly wrong way to deal with this problem.
|
2021-05-26 01:11:52 +03:00
|
|
|
ctx = await Ctx.create(config, context, serverPath, { kind: "Workspace Folder" });
|
|
|
|
ctx.pushCleanup(activateTaskProvider(ctx.config));
|
2020-03-31 09:05:22 +01:00
|
|
|
}
|
2020-11-16 00:19:04 +02:00
|
|
|
await initCommonContext(context, ctx);
|
2020-03-30 18:12:22 +01:00
|
|
|
|
2020-11-16 00:19:04 +02:00
|
|
|
warnAboutExtensionConflicts();
|
|
|
|
|
2022-08-03 18:22:45 +02:00
|
|
|
if (config.typingContinueCommentsOnNewline) {
|
|
|
|
ctx.pushCleanup(configureLanguage());
|
|
|
|
}
|
2021-09-28 20:23:25 +03:30
|
|
|
|
2020-11-16 00:19:04 +02:00
|
|
|
vscode.workspace.onDidChangeConfiguration(
|
2021-10-02 07:37:51 +03:00
|
|
|
(_) =>
|
|
|
|
ctx?.client
|
|
|
|
?.sendNotification("workspace/didChangeConfiguration", { settings: "" })
|
|
|
|
.catch(log.error),
|
2020-11-16 00:19:04 +02:00
|
|
|
null,
|
|
|
|
ctx.subscriptions
|
|
|
|
);
|
2022-04-21 13:39:53 -07:00
|
|
|
|
|
|
|
return {
|
|
|
|
client: ctx.client,
|
|
|
|
};
|
2020-11-16 00:19:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
async function initCommonContext(context: vscode.ExtensionContext, ctx: Ctx) {
|
|
|
|
// Register a "dumb" onEnter command for the case where server fails to
|
|
|
|
// start.
|
|
|
|
//
|
|
|
|
// FIXME: refactor command registration code such that commands are
|
|
|
|
// **always** registered, even if the server does not start. Use API like
|
|
|
|
// this perhaps?
|
2020-02-17 13:40:20 +01:00
|
|
|
//
|
2020-11-16 00:19:04 +02:00
|
|
|
// ```TypeScript
|
|
|
|
// registerCommand(
|
|
|
|
// factory: (Ctx) => ((Ctx) => any),
|
|
|
|
// fallback: () => any = () => vscode.window.showErrorMessage(
|
|
|
|
// "rust-analyzer is not available"
|
|
|
|
// ),
|
|
|
|
// )
|
|
|
|
const defaultOnEnter = vscode.commands.registerCommand("rust-analyzer.onEnter", () =>
|
|
|
|
vscode.commands.executeCommand("default:type", { text: "\n" })
|
|
|
|
);
|
|
|
|
context.subscriptions.push(defaultOnEnter);
|
2020-02-17 13:40:20 +01:00
|
|
|
|
2021-02-09 17:42:46 +03:30
|
|
|
await setContextValue(RUST_PROJECT_CONTEXT_NAME, true);
|
2020-05-27 19:40:13 +03:00
|
|
|
|
2020-02-17 13:40:20 +01:00
|
|
|
// Commands which invokes manually via command palette, shortcut, etc.
|
2020-03-26 23:44:19 +02:00
|
|
|
|
|
|
|
// Reloading is inspired by @DanTup maneuver: https://github.com/microsoft/vscode/issues/45774#issuecomment-373423895
|
|
|
|
ctx.registerCommand("reload", (_) => async () => {
|
|
|
|
void vscode.window.showInformationMessage("Reloading rust-analyzer...");
|
2022-06-05 13:59:49 +02:00
|
|
|
await doDeactivate();
|
2020-03-26 23:44:19 +02:00
|
|
|
while (context.subscriptions.length > 0) {
|
|
|
|
try {
|
|
|
|
context.subscriptions.pop()!.dispose();
|
|
|
|
} catch (err) {
|
|
|
|
log.error("Dispose error:", err);
|
2020-02-17 12:17:01 +01:00
|
|
|
}
|
2020-03-26 23:44:19 +02:00
|
|
|
}
|
|
|
|
await activate(context).catch(log.error);
|
2020-02-17 22:09:44 +02:00
|
|
|
});
|
2020-02-17 12:17:01 +01:00
|
|
|
|
2019-12-30 14:53:43 +01:00
|
|
|
ctx.registerCommand("analyzerStatus", commands.analyzerStatus);
|
2020-07-07 12:10:14 +02:00
|
|
|
ctx.registerCommand("memoryUsage", commands.memoryUsage);
|
2021-12-07 15:38:12 +01:00
|
|
|
ctx.registerCommand("shuffleCrateGraph", commands.shuffleCrateGraph);
|
2020-07-01 14:57:59 +02:00
|
|
|
ctx.registerCommand("reloadWorkspace", commands.reloadWorkspace);
|
2019-12-30 15:20:13 +01:00
|
|
|
ctx.registerCommand("matchingBrace", commands.matchingBrace);
|
2019-12-30 15:50:15 +01:00
|
|
|
ctx.registerCommand("joinLines", commands.joinLines);
|
2019-12-30 17:03:05 +01:00
|
|
|
ctx.registerCommand("parentModule", commands.parentModule);
|
2019-12-30 19:05:41 +01:00
|
|
|
ctx.registerCommand("syntaxTree", commands.syntaxTree);
|
2020-12-28 18:29:58 +00:00
|
|
|
ctx.registerCommand("viewHir", commands.viewHir);
|
2022-03-31 14:50:33 +02:00
|
|
|
ctx.registerCommand("viewFileText", commands.viewFileText);
|
2021-05-21 23:59:52 +02:00
|
|
|
ctx.registerCommand("viewItemTree", commands.viewItemTree);
|
2021-05-11 16:15:31 +02:00
|
|
|
ctx.registerCommand("viewCrateGraph", commands.viewCrateGraph);
|
2021-07-02 00:08:05 +02:00
|
|
|
ctx.registerCommand("viewFullCrateGraph", commands.viewFullCrateGraph);
|
2019-12-30 19:30:30 +01:00
|
|
|
ctx.registerCommand("expandMacro", commands.expandMacro);
|
2019-12-30 19:58:44 +01:00
|
|
|
ctx.registerCommand("run", commands.run);
|
2021-02-10 14:28:13 +03:00
|
|
|
ctx.registerCommand("copyRunCommandLine", commands.copyRunCommandLine);
|
2020-05-11 16:06:57 +03:00
|
|
|
ctx.registerCommand("debug", commands.debug);
|
2020-05-11 18:00:15 +03:00
|
|
|
ctx.registerCommand("newDebugConfig", commands.newDebugConfig);
|
2020-08-30 20:02:29 +12:00
|
|
|
ctx.registerCommand("openDocs", commands.openDocs);
|
2020-11-12 17:48:07 -08:00
|
|
|
ctx.registerCommand("openCargoToml", commands.openCargoToml);
|
2021-02-27 20:04:43 +03:00
|
|
|
ctx.registerCommand("peekTests", commands.peekTests);
|
2021-03-16 14:37:00 +02:00
|
|
|
ctx.registerCommand("moveItemUp", commands.moveItemUp);
|
|
|
|
ctx.registerCommand("moveItemDown", commands.moveItemDown);
|
2022-08-19 08:52:31 +02:00
|
|
|
ctx.registerCommand("cancelFlycheck", commands.cancelFlycheck);
|
2020-02-24 12:32:15 +01:00
|
|
|
|
|
|
|
defaultOnEnter.dispose();
|
2020-02-02 02:21:04 +01:00
|
|
|
ctx.registerCommand("onEnter", commands.onEnter);
|
2020-02-24 12:32:15 +01:00
|
|
|
|
2020-02-17 22:09:44 +02:00
|
|
|
ctx.registerCommand("ssr", commands.ssr);
|
2020-02-21 10:04:03 +08:00
|
|
|
ctx.registerCommand("serverVersion", commands.serverVersion);
|
2020-05-25 03:47:33 +03:00
|
|
|
ctx.registerCommand("toggleInlayHints", commands.toggleInlayHints);
|
2019-12-30 20:07:04 +01:00
|
|
|
|
|
|
|
// Internal commands which are invoked by the server.
|
|
|
|
ctx.registerCommand("runSingle", commands.runSingle);
|
2020-03-09 22:06:45 +01:00
|
|
|
ctx.registerCommand("debugSingle", commands.debugSingle);
|
2019-12-30 20:07:04 +01:00
|
|
|
ctx.registerCommand("showReferences", commands.showReferences);
|
2020-05-21 14:26:44 +02:00
|
|
|
ctx.registerCommand("applySnippetWorkspaceEdit", commands.applySnippetWorkspaceEditCommand);
|
2020-06-02 22:21:48 +02:00
|
|
|
ctx.registerCommand("resolveCodeAction", commands.resolveCodeAction);
|
2020-05-22 17:29:55 +02:00
|
|
|
ctx.registerCommand("applyActionGroup", commands.applyActionGroup);
|
2020-06-10 23:01:19 +03:00
|
|
|
ctx.registerCommand("gotoLocation", commands.gotoLocation);
|
2022-05-16 19:53:00 +01:00
|
|
|
|
|
|
|
ctx.registerCommand("linkToCommand", commands.linkToCommand);
|
2018-08-17 19:54:08 +03:00
|
|
|
}
|
|
|
|
|
2019-12-31 18:14:00 +01:00
|
|
|
export async function deactivate() {
|
2022-06-05 13:59:49 +02:00
|
|
|
TRACE_OUTPUT_CHANNEL?.dispose();
|
|
|
|
TRACE_OUTPUT_CHANNEL = null;
|
|
|
|
OUTPUT_CHANNEL?.dispose();
|
|
|
|
OUTPUT_CHANNEL = null;
|
|
|
|
await doDeactivate();
|
|
|
|
}
|
|
|
|
|
|
|
|
async function doDeactivate() {
|
2021-02-09 17:42:46 +03:30
|
|
|
await setContextValue(RUST_PROJECT_CONTEXT_NAME, undefined);
|
2020-03-26 23:44:19 +02:00
|
|
|
await ctx?.client.stop();
|
2020-02-17 12:17:01 +01:00
|
|
|
ctx = undefined;
|
2019-04-16 22:11:50 +02:00
|
|
|
}
|
2020-03-17 12:44:31 +01:00
|
|
|
|
2021-12-23 08:44:23 +02:00
|
|
|
async function bootstrap(
|
|
|
|
context: vscode.ExtensionContext,
|
|
|
|
config: Config,
|
|
|
|
state: PersistentState
|
|
|
|
): Promise<string> {
|
|
|
|
const path = await getServer(context, config, state);
|
2020-03-17 12:44:31 +01:00
|
|
|
if (!path) {
|
|
|
|
throw new Error(
|
|
|
|
"Rust Analyzer Language Server is not available. " +
|
|
|
|
"Please, ensure its [proper installation](https://rust-analyzer.github.io/manual.html#installation)."
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-07-05 17:42:52 +03:00
|
|
|
log.info("Using server binary at", path);
|
2020-04-04 16:10:06 +03:00
|
|
|
|
2020-05-06 01:42:04 +03:00
|
|
|
if (!isValidExecutable(path)) {
|
2021-08-03 14:03:49 +02:00
|
|
|
if (config.serverPath) {
|
|
|
|
throw new Error(`Failed to execute ${path} --version. \`config.server.path\` or \`config.serverPath\` has been set explicitly.\
|
|
|
|
Consider removing this config or making a valid server binary available at that path.`);
|
|
|
|
} else {
|
|
|
|
throw new Error(`Failed to execute ${path} --version`);
|
|
|
|
}
|
2020-03-17 12:44:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
2021-05-23 22:37:10 -04:00
|
|
|
async function patchelf(dest: vscode.Uri): Promise<void> {
|
2020-05-21 18:26:50 +03:00
|
|
|
await vscode.window.withProgress(
|
|
|
|
{
|
2020-05-21 18:49:30 +03:00
|
|
|
location: vscode.ProgressLocation.Notification,
|
2020-05-21 17:50:28 +02:00
|
|
|
title: "Patching rust-analyzer for NixOS",
|
2020-05-21 18:49:30 +03:00
|
|
|
},
|
2020-05-21 18:26:50 +03:00
|
|
|
async (progress, _) => {
|
2020-05-21 21:30:56 +03:00
|
|
|
const expression = `
|
2021-02-13 23:11:00 +03:00
|
|
|
{srcStr, pkgs ? import <nixpkgs> {}}:
|
2020-05-21 18:26:50 +03:00
|
|
|
pkgs.stdenv.mkDerivation {
|
|
|
|
name = "rust-analyzer";
|
2021-02-13 23:11:00 +03:00
|
|
|
src = /. + srcStr;
|
2020-05-21 18:26:50 +03:00
|
|
|
phases = [ "installPhase" "fixupPhase" ];
|
|
|
|
installPhase = "cp $src $out";
|
|
|
|
fixupPhase = ''
|
|
|
|
chmod 755 $out
|
|
|
|
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $out
|
|
|
|
'';
|
|
|
|
}
|
2020-05-21 21:30:56 +03:00
|
|
|
`;
|
2021-06-15 13:29:02 -04:00
|
|
|
const origFile = vscode.Uri.file(dest.fsPath + "-orig");
|
2021-10-02 10:05:39 +03:00
|
|
|
await vscode.workspace.fs.rename(dest, origFile, { overwrite: true });
|
2021-10-02 10:07:50 +03:00
|
|
|
try {
|
|
|
|
progress.report({ message: "Patching executable", increment: 20 });
|
|
|
|
await new Promise((resolve, reject) => {
|
|
|
|
const handle = exec(
|
|
|
|
`nix-build -E - --argstr srcStr '${origFile.fsPath}' -o '${dest.fsPath}'`,
|
|
|
|
(err, stdout, stderr) => {
|
|
|
|
if (err != null) {
|
|
|
|
reject(Error(stderr));
|
|
|
|
} else {
|
|
|
|
resolve(stdout);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
handle.stdin?.write(expression);
|
|
|
|
handle.stdin?.end();
|
|
|
|
});
|
|
|
|
} finally {
|
|
|
|
await vscode.workspace.fs.delete(origFile);
|
|
|
|
}
|
2020-05-21 18:26:50 +03:00
|
|
|
}
|
2020-05-21 18:49:30 +03:00
|
|
|
);
|
2020-05-21 18:26:50 +03:00
|
|
|
}
|
|
|
|
|
2021-12-23 08:44:23 +02:00
|
|
|
async function getServer(
|
|
|
|
context: vscode.ExtensionContext,
|
|
|
|
config: Config,
|
|
|
|
state: PersistentState
|
|
|
|
): Promise<string | undefined> {
|
2021-01-07 16:33:00 +02:00
|
|
|
const explicitPath = serverPath(config);
|
2020-03-17 12:44:31 +01:00
|
|
|
if (explicitPath) {
|
|
|
|
if (explicitPath.startsWith("~/")) {
|
|
|
|
return os.homedir() + explicitPath.slice("~".length);
|
|
|
|
}
|
|
|
|
return explicitPath;
|
|
|
|
}
|
2020-03-25 20:56:48 +02:00
|
|
|
if (config.package.releaseTag === null) return "rust-analyzer";
|
2020-03-17 12:44:31 +01:00
|
|
|
|
2021-12-23 13:04:27 +02:00
|
|
|
const ext = process.platform === "win32" ? ".exe" : "";
|
|
|
|
const bundled = vscode.Uri.joinPath(context.extensionUri, "server", `rust-analyzer${ext}`);
|
|
|
|
const bundledExists = await vscode.workspace.fs.stat(bundled).then(
|
|
|
|
() => true,
|
|
|
|
() => false
|
|
|
|
);
|
|
|
|
if (bundledExists) {
|
|
|
|
let server = bundled;
|
|
|
|
if (await isNixOs()) {
|
|
|
|
await vscode.workspace.fs.createDirectory(config.globalStorageUri).then();
|
|
|
|
const dest = vscode.Uri.joinPath(config.globalStorageUri, `rust-analyzer${ext}`);
|
|
|
|
let exists = await vscode.workspace.fs.stat(dest).then(
|
|
|
|
() => true,
|
|
|
|
() => false
|
|
|
|
);
|
|
|
|
if (exists && config.package.version !== state.serverVersion) {
|
|
|
|
await vscode.workspace.fs.delete(dest);
|
|
|
|
exists = false;
|
|
|
|
}
|
|
|
|
if (!exists) {
|
|
|
|
await vscode.workspace.fs.copy(bundled, dest);
|
|
|
|
await patchelf(dest);
|
2021-12-23 09:49:24 +02:00
|
|
|
}
|
2021-12-30 14:50:54 +02:00
|
|
|
server = dest;
|
2021-12-18 17:38:01 +02:00
|
|
|
}
|
2021-12-23 13:04:27 +02:00
|
|
|
await state.updateServerVersion(config.package.version);
|
|
|
|
return server.fsPath;
|
2021-12-18 17:38:01 +02:00
|
|
|
}
|
2021-12-23 13:04:27 +02:00
|
|
|
|
|
|
|
await state.updateServerVersion(undefined);
|
2021-12-23 09:49:24 +02:00
|
|
|
await vscode.window.showErrorMessage(
|
|
|
|
"Unfortunately we don't ship binaries for your platform yet. " +
|
2021-12-23 14:04:46 +02:00
|
|
|
"You need to manually clone the rust-analyzer repository and " +
|
2021-12-23 09:49:24 +02:00
|
|
|
"run `cargo xtask install --server` to build the language server from sources. " +
|
|
|
|
"If you feel that your platform should be supported, please create an issue " +
|
2022-07-08 15:44:49 +02:00
|
|
|
"about that [here](https://github.com/rust-lang/rust-analyzer/issues) and we " +
|
2021-12-23 09:49:24 +02:00
|
|
|
"will consider it."
|
|
|
|
);
|
|
|
|
return undefined;
|
2020-03-17 12:44:31 +01:00
|
|
|
}
|
2020-09-22 23:12:51 -07:00
|
|
|
|
2021-01-07 16:33:00 +02:00
|
|
|
function serverPath(config: Config): string | null {
|
|
|
|
return process.env.__RA_LSP_SERVER_DEBUG ?? config.serverPath;
|
|
|
|
}
|
|
|
|
|
2020-12-21 19:18:50 +02:00
|
|
|
async function isNixOs(): Promise<boolean> {
|
|
|
|
try {
|
2021-05-23 22:37:10 -04:00
|
|
|
const contents = (
|
|
|
|
await vscode.workspace.fs.readFile(vscode.Uri.file("/etc/os-release"))
|
|
|
|
).toString();
|
2022-03-15 06:52:03 +03:00
|
|
|
const idString = contents.split("\n").find((a) => a.startsWith("ID=")) || "ID=linux";
|
|
|
|
return idString.indexOf("nixos") !== -1;
|
2021-06-15 13:29:02 -04:00
|
|
|
} catch {
|
2020-12-21 19:18:50 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-22 15:52:41 +01:00
|
|
|
function warnAboutExtensionConflicts() {
|
2021-12-23 13:08:06 +02:00
|
|
|
if (vscode.extensions.getExtension("rust-lang.rust")) {
|
2020-12-18 18:47:03 +01:00
|
|
|
vscode.window
|
|
|
|
.showWarningMessage(
|
2022-05-13 13:21:52 +02:00
|
|
|
`You have both the rust-analyzer (rust-lang.rust-analyzer) and Rust (rust-lang.rust) ` +
|
2020-12-18 18:39:51 +01:00
|
|
|
"plugins enabled. These are known to conflict and cause various functions of " +
|
2021-02-07 21:52:32 +03:30
|
|
|
"both plugins to not work correctly. You should disable one of them.",
|
|
|
|
"Got it"
|
|
|
|
)
|
2021-02-07 21:59:06 +03:30
|
|
|
.then(() => {}, console.error);
|
2021-12-23 13:08:06 +02:00
|
|
|
}
|
2020-12-18 18:39:51 +01:00
|
|
|
}
|
2021-09-28 20:23:25 +03:30
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets up additional language configuration that's impossible to do via a
|
|
|
|
* separate language-configuration.json file. See [1] for more information.
|
|
|
|
*
|
|
|
|
* [1]: https://github.com/Microsoft/vscode/issues/11514#issuecomment-244707076
|
|
|
|
*/
|
|
|
|
function configureLanguage(): vscode.Disposable {
|
|
|
|
const indentAction = vscode.IndentAction.None;
|
|
|
|
return vscode.languages.setLanguageConfiguration("rust", {
|
|
|
|
onEnterRules: [
|
|
|
|
{
|
|
|
|
// Doc single-line comment
|
|
|
|
// e.g. ///|
|
|
|
|
beforeText: /^\s*\/{3}.*$/,
|
|
|
|
action: { indentAction, appendText: "/// " },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// Parent doc single-line comment
|
|
|
|
// e.g. //!|
|
|
|
|
beforeText: /^\s*\/{2}\!.*$/,
|
|
|
|
action: { indentAction, appendText: "//! " },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// Begins an auto-closed multi-line comment (standard or parent doc)
|
|
|
|
// e.g. /** | */ or /*! | */
|
|
|
|
beforeText: /^\s*\/\*(\*|\!)(?!\/)([^\*]|\*(?!\/))*$/,
|
|
|
|
afterText: /^\s*\*\/$/,
|
|
|
|
action: { indentAction: vscode.IndentAction.IndentOutdent, appendText: " * " },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// Begins a multi-line comment (standard or parent doc)
|
|
|
|
// e.g. /** ...| or /*! ...|
|
|
|
|
beforeText: /^\s*\/\*(\*|\!)(?!\/)([^\*]|\*(?!\/))*$/,
|
|
|
|
action: { indentAction, appendText: " * " },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// Continues a multi-line comment
|
|
|
|
// e.g. * ...|
|
|
|
|
beforeText: /^(\ \ )*\ \*(\ ([^\*]|\*(?!\/))*)?$/,
|
|
|
|
action: { indentAction, appendText: "* " },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// Dedents after closing a multi-line comment
|
|
|
|
// e.g. */|
|
|
|
|
beforeText: /^(\ \ )*\ \*\/\s*$/,
|
|
|
|
action: { indentAction, removeText: 1 },
|
|
|
|
},
|
|
|
|
],
|
|
|
|
});
|
|
|
|
}
|