We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a84ef7 commit 515db2dCopy full SHA for 515db2d
core/config/load.ts
@@ -134,7 +134,14 @@ async function loadSerializedConfig(
134
135
if (remoteConfigServerUrl) {
136
const remoteConfigJson = await fetchRemoteConfig(remoteConfigServerUrl.href);
137
- config = mergeJson(config, remoteConfigJson, "overwrite", configMergeKeys);
+ config = mergeJson(config, remoteConfigJson, "merge", configMergeKeys);
138
+
139
+ // Force it to generate line by line
140
+ if (config.tabAutocompleteOptions) {
141
+ config.tabAutocompleteOptions.multilineCompletions = "never";
142
+ } else {
143
+ config.tabAutocompleteOptions = { multilineCompletions: "never" };
144
+ }
145
}
146
147
for (const workspaceConfig of workspaceConfigs) {
0 commit comments