aboutsummaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorSeivan Heidari <[email protected]>2019-11-04 23:11:43 +0000
committerSeivan Heidari <[email protected]>2019-11-04 23:11:43 +0000
commitf49781c32d82489374d0924b70b31fa7a225464b (patch)
treedf7aa4e2ddb3fb06430d20e4028ed42e9cae1901 /editors
parent8eb5148af7e7a87a685f7581809368b13eaa17ec (diff)
Logging fallback tag in case scopes are missing.
Diffstat (limited to 'editors')
-rw-r--r--editors/code/src/highlighting.ts8
1 files changed, 5 insertions, 3 deletions
diff --git a/editors/code/src/highlighting.ts b/editors/code/src/highlighting.ts
index 1c67e5dc3..b184437fc 100644
--- a/editors/code/src/highlighting.ts
+++ b/editors/code/src/highlighting.ts
@@ -73,11 +73,13 @@ export class Highlighter {
73 return [tag, decor]; 73 return [tag, decor];
74 } 74 }
75 else { 75 else {
76 const fallBackTag = 'ralsp.' + tag;
76 console.log(' '); 77 console.log(' ');
77 console.log('Missing theme for: <"' + tag + '"> for following mapped scopes:') 78 console.log('Missing theme for: <"' + tag + '"> for following mapped scopes:');
78 console.log(scopesMapper.find(tag)) 79 console.log(scopesMapper.find(tag));
80 console.log('Falling back to values defiend in: ' + fallBackTag);
79 console.log(' '); 81 console.log(' ');
80 const color = new vscode.ThemeColor('ralsp.' + tag); 82 const color = new vscode.ThemeColor(fallBackTag);
81 const decor = vscode.window.createTextEditorDecorationType({ 83 const decor = vscode.window.createTextEditorDecorationType({
82 color, 84 color,
83 textDecoration 85 textDecoration