From 0dbaf64b12fc2b55144b2a762095d91f2a9f0592 Mon Sep 17 00:00:00 2001 From: hamidreza kalbasi Date: Tue, 28 Sep 2021 20:23:25 +0330 Subject: [PATCH] add vscode native onEnterRules --- editors/code/src/main.ts | 53 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) diff --git a/editors/code/src/main.ts b/editors/code/src/main.ts index a5958146354..da04eec92b1 100644 --- a/editors/code/src/main.ts +++ b/editors/code/src/main.ts @@ -63,6 +63,8 @@ async function tryActivate(context: vscode.ExtensionContext) { activateInlayHints(ctx); warnAboutExtensionConflicts(); + ctx.pushCleanup(configureLanguage()); + vscode.workspace.onDidChangeConfiguration( _ => ctx?.client?.sendNotification('workspace/didChangeConfiguration', { settings: "" }), null, @@ -474,3 +476,54 @@ function warnAboutExtensionConflicts() { .then(() => { }, console.error); }; } + +/** + * 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 }, + }, + ], + }); +}