aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-12-30 20:39:34 +0000
committerAleksey Kladov <[email protected]>2019-12-30 20:39:34 +0000
commit08c5d157f9a24f0094c90c556019a20bf85e5a07 (patch)
treede0ff1192ae7ce31d0d452af51f3e55f3af0ac14
parentac8a142dddc697d26d5aa8c878df933300163e09 (diff)
Thoughtlessly copy-paste a fix to a problem I don't understand
-rw-r--r--editors/code/src/highlighting.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/editors/code/src/highlighting.ts b/editors/code/src/highlighting.ts
index 0f9271de2..333319b85 100644
--- a/editors/code/src/highlighting.ts
+++ b/editors/code/src/highlighting.ts
@@ -1,6 +1,7 @@
1import * as vscode from 'vscode'; 1import * as vscode from 'vscode';
2import * as lc from 'vscode-languageclient'; 2import * as lc from 'vscode-languageclient';
3import * as seedrandom from 'seedrandom'; 3import * as seedrandom_ from 'seedrandom';
4const seedrandom = seedrandom_; // https://github.com/jvandemo/generator-angular2-library/issues/221#issuecomment-355945207
4 5
5import * as scopes from './scopes'; 6import * as scopes from './scopes';
6import * as scopesMapper from './scopes_mapper'; 7import * as scopesMapper from './scopes_mapper';