aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/config.ts
diff options
context:
space:
mode:
Diffstat (limited to 'editors/code/src/config.ts')
-rw-r--r--editors/code/src/config.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/editors/code/src/config.ts b/editors/code/src/config.ts
index 9f8c810b6..a3fe39098 100644
--- a/editors/code/src/config.ts
+++ b/editors/code/src/config.ts
@@ -1,5 +1,6 @@
1import * as vscode from 'vscode'; 1import * as vscode from 'vscode';
2import * as scopes from './scopes'; 2import * as scopes from './scopes';
3import * as scopesMapper from './scopes_mapper';
3import { Server } from './server'; 4import { Server } from './server';
4 5
5const RA_LSP_DEBUG = process.env.__RA_LSP_SERVER_DEBUG; 6const RA_LSP_DEBUG = process.env.__RA_LSP_SERVER_DEBUG;
@@ -49,6 +50,7 @@ export class Config {
49 50
50 Server.highlighter.removeHighlights(); 51 Server.highlighter.removeHighlights();
51 scopes.load() 52 scopes.load()
53 scopesMapper.load()
52 if (config.has('highlightingOn')) { 54 if (config.has('highlightingOn')) {
53 55
54 this.highlightingOn = config.get('highlightingOn') as boolean; 56 this.highlightingOn = config.get('highlightingOn') as boolean;