Skip to content

Commit

Permalink
Fix analyzer extension fail when there are enabled any VIM extension.
Browse files Browse the repository at this point in the history
  • Loading branch information
max-frai committed Dec 22, 2018
1 parent 5c7e8f4 commit 0f5d9a0
Showing 1 changed file with 17 additions and 13 deletions.
30 changes: 17 additions & 13 deletions editors/code/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,23 @@ export function activate(context: vscode.ExtensionContext) {
const original = (...args: any[]) =>
vscode.commands.executeCommand(defaultCmd, ...args);

registerCommand(name, async (...args: any[]) => {
const editor = vscode.window.activeTextEditor;
if (
!editor ||
!editor.document ||
editor.document.languageId !== 'rust'
) {
return await original(...args);
}
if (!(await f(...args))) {
return await original(...args);
}
});
try {
registerCommand(name, async (...args: any[]) => {
const editor = vscode.window.activeTextEditor;
if (
!editor ||
!editor.document ||
editor.document.languageId !== 'rust'
) {
return await original(...args);
}
if (!(await f(...args))) {
return await original(...args);
}
});
} catch(_) {
vscode.window.showWarningMessage('Enhanced typing feature is disabled because of incompatibility with VIM extension');
}
}

// Commands are requests from vscode to the language server
Expand Down

0 comments on commit 0f5d9a0

Please sign in to comment.