提交 cce8f8bc 编写于 作者: S Sandeep Somavarapu

Fix #72878

上级 6b85b9ff
......@@ -832,8 +832,9 @@ class PreferencesActionsContribution extends Disposable implements IWorkbenchCon
]
});
}
run(accessor: ServicesAccessor) {
return accessor.get(IPreferencesService).openGlobalKeybindingSettings(false);
run(accessor: ServicesAccessor, args: string | undefined) {
const query = typeof args === 'string' ? args : undefined;
return accessor.get(IPreferencesService).openGlobalKeybindingSettings(false, { query });
}
});
MenuRegistry.appendMenuItem(MenuId.GlobalActivity, {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册