File tree Expand file tree Collapse file tree
Extension/src/LanguageServer Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -306,10 +306,6 @@ export class ColorizationSettings {
306306 let themeFullPath : string = path . join ( extensionPath , themeRelativePath ) ;
307307 let defaultStyle : ThemeStyle = new ThemeStyle ( ) ;
308308 let rulesSet : TextMateRule [ ] [ ] = await this . loadTheme ( themeFullPath , defaultStyle ) ;
309- let editorBackgroundSetting : string = otherSettings . editorBackground ;
310- if ( editorBackgroundSetting ) {
311- this . editorBackground = editorBackgroundSetting ;
312- }
313309 this . updateStyles ( themeName , defaultStyle , rulesSet ) ;
314310 return ;
315311 }
Original file line number Diff line number Diff line change @@ -117,7 +117,6 @@ export class OtherSettings {
117117 public get filesExclude ( ) : vscode . WorkspaceConfiguration { return vscode . workspace . getConfiguration ( "files" , this . resource ) . get ( "exclude" ) ; }
118118 public get searchExclude ( ) : vscode . WorkspaceConfiguration { return vscode . workspace . getConfiguration ( "search" , this . resource ) . get ( "exclude" ) ; }
119119 public get settingsEditor ( ) : string { return vscode . workspace . getConfiguration ( "workbench.settings" ) . get < string > ( "editor" ) ; }
120- public get editorBackground ( ) : string { return vscode . workspace . getConfiguration ( "editor" , this . resource ) . get < string > ( "background" ) ; }
121120
122121 public get colorTheme ( ) : string { return vscode . workspace . getConfiguration ( "workbench" ) . get < string > ( "colorTheme" ) ; }
123122
You can’t perform that action at this time.
0 commit comments