diff options
Diffstat (limited to 'editors/code/src/config.ts')
-rw-r--r-- | editors/code/src/config.ts | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/editors/code/src/config.ts b/editors/code/src/config.ts index a3fe39098..12823f319 100644 --- a/editors/code/src/config.ts +++ b/editors/code/src/config.ts | |||
@@ -21,7 +21,6 @@ export class Config { | |||
21 | public rainbowHighlightingOn = false; | 21 | public rainbowHighlightingOn = false; |
22 | public enableEnhancedTyping = true; | 22 | public enableEnhancedTyping = true; |
23 | public raLspServerPath = RA_LSP_DEBUG || 'ra_lsp_server'; | 23 | public raLspServerPath = RA_LSP_DEBUG || 'ra_lsp_server'; |
24 | public showWorkspaceLoadedNotification = true; | ||
25 | public lruCapacity: null | number = null; | 24 | public lruCapacity: null | number = null; |
26 | public displayInlayHints = true; | 25 | public displayInlayHints = true; |
27 | public maxInlayHintLength: null | number = null; | 26 | public maxInlayHintLength: null | number = null; |
@@ -62,12 +61,6 @@ export class Config { | |||
62 | ) as boolean; | 61 | ) as boolean; |
63 | } | 62 | } |
64 | 63 | ||
65 | if (config.has('showWorkspaceLoadedNotification')) { | ||
66 | this.showWorkspaceLoadedNotification = config.get( | ||
67 | 'showWorkspaceLoadedNotification' | ||
68 | ) as boolean; | ||
69 | } | ||
70 | |||
71 | if (!this.highlightingOn && Server) { | 64 | if (!this.highlightingOn && Server) { |
72 | Server.highlighter.removeHighlights(); | 65 | Server.highlighter.removeHighlights(); |
73 | } | 66 | } |