diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2019-12-30 22:24:39 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2019-12-30 22:24:39 +0000 |
commit | e6a1ccc1f49488af31ff7429ff977768d3d32485 (patch) | |
tree | 0e6c920b9bb1955de444dc360072b2256060d89b /editors/code/src/server.ts | |
parent | c3d74744cdae29aa6a6bfa0cd7ab64b8b251e287 (diff) | |
parent | 233f1dd2a850a7c8c6947c88c1ce06f7a945befd (diff) |
Merge #2695
2695: Privatize highlighting r=matklad a=matklad
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'editors/code/src/server.ts')
-rw-r--r-- | editors/code/src/server.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/editors/code/src/server.ts b/editors/code/src/server.ts index 10dc079fb..2bb21da6b 100644 --- a/editors/code/src/server.ts +++ b/editors/code/src/server.ts | |||
@@ -3,7 +3,6 @@ import * as lc from 'vscode-languageclient'; | |||
3 | 3 | ||
4 | import { window, workspace } from 'vscode'; | 4 | import { window, workspace } from 'vscode'; |
5 | import { Config } from './config'; | 5 | import { Config } from './config'; |
6 | import { Highlighter } from './highlighting'; | ||
7 | 6 | ||
8 | function expandPathResolving(path: string) { | 7 | function expandPathResolving(path: string) { |
9 | if (path.startsWith('~/')) { | 8 | if (path.startsWith('~/')) { |
@@ -13,7 +12,6 @@ function expandPathResolving(path: string) { | |||
13 | } | 12 | } |
14 | 13 | ||
15 | export class Server { | 14 | export class Server { |
16 | public static highlighter = new Highlighter(); | ||
17 | public static config = new Config(); | 15 | public static config = new Config(); |
18 | public static client: lc.LanguageClient; | 16 | public static client: lc.LanguageClient; |
19 | 17 | ||