We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f28b40 commit 38d52c3Copy full SHA for 38d52c3
1 file changed
src/vs/editor/common/config/commonEditorConfig.ts
@@ -207,6 +207,17 @@ function migrateOptions(options: IEditorOptions): void {
207
enabled: false
208
};
209
}
210
+
211
+ const parameterHints = options.parameterHints;
212
+ if (<any>parameterHints === true) {
213
+ options.parameterHints = {
214
+ enabled: true
215
+ };
216
+ } else if (<any>parameterHints === false) {
217
218
+ enabled: false
219
220
+ }
221
222
223
function deepCloneAndMigrateOptions(_options: IEditorOptions): IEditorOptions {
0 commit comments