From f2d719b24afd404dbaf26332ff314a6161c74b71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adolfo=20Ochagav=C3=ADa?= Date: Tue, 9 Oct 2018 22:56:15 +0200 Subject: Format vscode extension and add npm run fix --- editors/code/src/commands/index.ts | 4 ++-- editors/code/src/commands/on_enter.ts | 17 +++++++++++++---- editors/code/src/extension.ts | 21 +++++++++++++-------- 3 files changed, 28 insertions(+), 14 deletions(-) (limited to 'editors/code/src') diff --git a/editors/code/src/commands/index.ts b/editors/code/src/commands/index.ts index d78a64c3e..33e2b34a2 100644 --- a/editors/code/src/commands/index.ts +++ b/editors/code/src/commands/index.ts @@ -2,7 +2,7 @@ import * as applySourceChange from './apply_source_change'; import * as extendSelection from './extend_selection'; import * as joinLines from './join_lines'; import * as matchingBrace from './matching_brace'; -import * as on_enter from './on_enter'; +import * as onEnter from './on_enter'; import * as parentModule from './parent_module'; import * as runnables from './runnables'; import * as syntaxTree from './syntaxTree'; @@ -15,5 +15,5 @@ export { parentModule, runnables, syntaxTree, - on_enter, + onEnter }; diff --git a/editors/code/src/commands/on_enter.ts b/editors/code/src/commands/on_enter.ts index 2666797fe..fe6aca63d 100644 --- a/editors/code/src/commands/on_enter.ts +++ b/editors/code/src/commands/on_enter.ts @@ -1,7 +1,10 @@ import * as vscode from 'vscode'; import * as lc from 'vscode-languageclient'; import { Server } from '../server'; -import { handle as applySourceChange, SourceChange } from './apply_source_change'; +import { + handle as applySourceChange, + SourceChange +} from './apply_source_change'; interface OnEnterParams { textDocument: lc.TextDocumentIdentifier; @@ -10,12 +13,18 @@ interface OnEnterParams { export async function handle(event: { text: string }): Promise { const editor = vscode.window.activeTextEditor; - if (editor == null || editor.document.languageId !== 'rust' || event.text !== '\n') { + if ( + editor == null || + editor.document.languageId !== 'rust' || + event.text !== '\n' + ) { return false; } const request: OnEnterParams = { textDocument: { uri: editor.document.uri.toString() }, - position: Server.client.code2ProtocolConverter.asPosition(editor.selection.active), + position: Server.client.code2ProtocolConverter.asPosition( + editor.selection.active + ) }; const change = await Server.client.sendRequest( 'm/onEnter', @@ -25,5 +34,5 @@ export async function handle(event: { text: string }): Promise { return false; } await applySourceChange(change); - return true + return true; } diff --git a/editors/code/src/extension.ts b/editors/code/src/extension.ts index 3e5767535..ff8f23c7a 100644 --- a/editors/code/src/extension.ts +++ b/editors/code/src/extension.ts @@ -16,21 +16,26 @@ export function activate(context: vscode.ExtensionContext) { disposeOnDeactivation(vscode.commands.registerCommand(name, f)); } function overrideCommand( - name: string, - f: (...args: any[]) => Promise, + f: (...args: any[]) => Promise ) { const defaultCmd = `default:${name}`; - const original = async (...args: any[]) => await vscode.commands.executeCommand(defaultCmd, ...args); + const original = async (...args: any[]) => + await vscode.commands.executeCommand(defaultCmd, ...args); + registerCommand(name, async (...args: any[]) => { const editor = vscode.window.activeTextEditor; - if (!editor || !editor.document || editor.document.languageId !== 'rust') { + if ( + !editor || + !editor.document || + editor.document.languageId !== 'rust' + ) { return await original(...args); } - if (!await f(...args)) { + if (!(await f(...args))) { return await original(...args); } - }) + }); } // Commands are requests from vscode to the language server @@ -44,12 +49,12 @@ export function activate(context: vscode.ExtensionContext) { 'ra-lsp.applySourceChange', commands.applySourceChange.handle ); - overrideCommand('type', commands.on_enter.handle) + overrideCommand('type', commands.onEnter.handle); // Notifications are events triggered by the language server const allNotifications: Iterable< [string, lc.GenericNotificationHandler] - > = [['m/publishDecorations', notifications.publishDecorations.handle]]; + > = [['m/publishDecorations', notifications.publishDecorations.handle]]; // The events below are plain old javascript events, triggered and handled by vscode vscode.window.onDidChangeActiveTextEditor( -- cgit v1.2.3