@@ -54,27 +54,28 @@ class RPCManager(
5454 // Send empty configuration model
5555 logger.info(" Sending configuration information to extension process" )
5656 val themeName =
57- if (ThemeManager .getInstance().isDarkThemeForce()) " Default Dark Modern " else " Default Light Modern "
57+ if (ThemeManager .getInstance().isDarkThemeForce()) " Visual Studio 2017 Dark - C++ " else " Visual Studio 2017 Light - C++ "
5858
59- // Create empty configuration model
60- val emptyMap = mapOf (
61- " contents" to emptyMap<String , Any >(),
62- " keys" to emptyList<String >(),
63- " overrides" to emptyList<String >()
64- )
6559 // Get proxy configuration
6660 val httpProxyConfig = ProxyConfigUtil .getHttpProxyConfigForInitialization()
67-
61+
6862 // Build configuration contents
6963 val contentsBuilder = mutableMapOf<String , Any >(
70- " workbench" to mapOf ( " colorTheme" to themeName)
64+ " workbench. colorTheme" to themeName
7165 )
72-
66+
7367 // Add proxy configuration if available
7468 httpProxyConfig?.let {
7569 contentsBuilder[" http" ] = it
7670 logger.info(" Using proxy configuration for initialization: $it " )
7771 }
72+
73+ // Create empty configuration model
74+ val emptyMap = mapOf (
75+ " contents" to emptyMap<String , Any >(),
76+ " keys" to emptyList<String >(),
77+ " overrides" to emptyList<String >()
78+ )
7879
7980 val emptyConfigModel = mapOf (
8081 " defaults" to mapOf (
0 commit comments