aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/ctx.ts
diff options
context:
space:
mode:
authorVeetaha <[email protected]>2020-02-02 19:37:22 +0000
committerVeetaha <[email protected]>2020-02-02 19:37:22 +0000
commit81847524702dd7cb1eeae25a53444b325295b129 (patch)
treea92d8c8da4b4fcbde67bccccdfd2870900451b46 /editors/code/src/ctx.ts
parente72771ebc6eb98c58a9e4216f7e3381a41e75f84 (diff)
vscode refactoring: use more laconic export snytax, split huge string to several lines
Diffstat (limited to 'editors/code/src/ctx.ts')
-rw-r--r--editors/code/src/ctx.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/editors/code/src/ctx.ts b/editors/code/src/ctx.ts
index b882a8e52..094566d09 100644
--- a/editors/code/src/ctx.ts
+++ b/editors/code/src/ctx.ts
@@ -66,7 +66,9 @@ export class Ctx {
66 this.pushCleanup(d); 66 this.pushCleanup(d);
67 } catch (_) { 67 } catch (_) {
68 vscode.window.showWarningMessage( 68 vscode.window.showWarningMessage(
69 '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', 69 'Enhanced typing feature is disabled because of incompatibility ' +
70 'with VIM extension, consider turning off rust-analyzer.enableEnhancedTyping: ' +
71 'https://github.com/rust-analyzer/rust-analyzer/blob/master/docs/user/README.md#settings',
70 ); 72 );
71 } 73 }
72 } 74 }