From 9bbb27604d12b97506da6ee3fed95c66d696a6ac Mon Sep 17 00:00:00 2001 From: krk Date: Wed, 30 Oct 2019 21:44:06 +0100 Subject: [PATCH] Add link to the vscode VIM extension compatibility warning. --- editors/code/src/extension.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editors/code/src/extension.ts b/editors/code/src/extension.ts index 39fe6efd889..c06928d122b 100644 --- a/editors/code/src/extension.ts +++ b/editors/code/src/extension.ts @@ -45,7 +45,7 @@ export function activate(context: vscode.ExtensionContext) { }); } catch (_) { vscode.window.showWarningMessage( - 'Enhanced typing feature is disabled because of incompatibility with VIM extension' + 'Enhanced typing feature is disabled because of incompatibility with VIM extension, consider turning off rust-analyzer.enableEnhancedTyping: https://github.com/rust-analyzer/rust-analyzer/blob/master/docs/user/README.md#settings' ); } } -- 2.44.0