vscode refactoring: use more laconic export snytax, split huge string to several lines

This commit is contained in:
Veetaha 2020-02-02 21:37:22 +02:00
parent e72771ebc6
commit 8184752470
3 changed files with 17 additions and 32 deletions

View file

@ -66,7 +66,9 @@ export class Ctx {
this.pushCleanup(d);
} catch (_) {
vscode.window.showWarningMessage(
'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',
'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',
);
}
}