aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/extension.ts
diff options
context:
space:
mode:
authorJeremy Kolb <[email protected]>2019-01-12 23:49:07 +0000
committerJeremy Kolb <[email protected]>2019-01-12 23:49:07 +0000
commit2a1cb52c994f5becb1a52d45b869d6ad0a36d713 (patch)
treeccb861cc9e6fffaa96e5e3b2504f6e1b87bb7db4 /editors/code/src/extension.ts
parenteb931c0d9e0877e573622253ae5b05563841037b (diff)
npm fix run
Diffstat (limited to 'editors/code/src/extension.ts')
-rw-r--r--editors/code/src/extension.ts6
1 files changed, 4 insertions, 2 deletions
diff --git a/editors/code/src/extension.ts b/editors/code/src/extension.ts
index 9edfb13b5..0098c9454 100644
--- a/editors/code/src/extension.ts
+++ b/editors/code/src/extension.ts
@@ -37,8 +37,10 @@ export function activate(context: vscode.ExtensionContext) {
37 return await original(...args); 37 return await original(...args);
38 } 38 }
39 }); 39 });
40 } catch(_) { 40 } catch (_) {
41 vscode.window.showWarningMessage('Enhanced typing feature is disabled because of incompatibility with VIM extension'); 41 vscode.window.showWarningMessage(
42 'Enhanced typing feature is disabled because of incompatibility with VIM extension'
43 );
42 } 44 }
43 } 45 }
44 46