aboutsummaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-12-31 08:41:16 +0000
committerAleksey Kladov <[email protected]>2019-12-31 13:06:40 +0000
commit6c1d92d6c56185f88581c73617e647397fc79dd2 (patch)
tree630c3574b990927e94564ebeffec78b9cc0e296a /editors
parent7c4d4e113bc039712aa3996e57eaef19d12bd9ff (diff)
Rename file
Diffstat (limited to 'editors')
-rw-r--r--editors/code/src/highlighting.ts2
-rw-r--r--editors/code/src/load_theme_colors.ts (renamed from editors/code/src/scopes.ts)0
-rw-r--r--editors/code/src/scopes_mapper.ts2
3 files changed, 2 insertions, 2 deletions
diff --git a/editors/code/src/highlighting.ts b/editors/code/src/highlighting.ts
index 5e9cbe0de..e97eb086a 100644
--- a/editors/code/src/highlighting.ts
+++ b/editors/code/src/highlighting.ts
@@ -3,7 +3,7 @@ import * 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 4const seedrandom = seedrandom_; // https://github.com/jvandemo/generator-angular2-library/issues/221#issuecomment-355945207
5 5
6import { loadThemeColors, TextMateRuleSettings } from './scopes'; 6import { loadThemeColors, TextMateRuleSettings } from './load_theme_colors';
7import * as scopesMapper from './scopes_mapper'; 7import * as scopesMapper from './scopes_mapper';
8 8
9import { Ctx } from './ctx'; 9import { Ctx } from './ctx';
diff --git a/editors/code/src/scopes.ts b/editors/code/src/load_theme_colors.ts
index 73fabbf54..73fabbf54 100644
--- a/editors/code/src/scopes.ts
+++ b/editors/code/src/load_theme_colors.ts
diff --git a/editors/code/src/scopes_mapper.ts b/editors/code/src/scopes_mapper.ts
index e738fa239..1295ab476 100644
--- a/editors/code/src/scopes_mapper.ts
+++ b/editors/code/src/scopes_mapper.ts
@@ -1,5 +1,5 @@
1import * as vscode from 'vscode'; 1import * as vscode from 'vscode';
2import { TextMateRuleSettings } from './scopes'; 2import { TextMateRuleSettings } from './load_theme_colors';
3 3
4let mappings = new Map<string, string[]>(); 4let mappings = new Map<string, string[]>();
5 5