async function start()

in src/extension.ts [27:40]


async function start(): Promise<void> {
    const categorizedSettings = await getCategorizedSettings();
    if (categorizedSettings) {
        if (categorizedSettings.mappedSettings.length || categorizedSettings.defaultSettings.length) {
            const selectedSettings: VscodeSetting[] = await showPicker(categorizedSettings);
            if (selectedSettings && selectedSettings.length) {
                await importSettings(selectedSettings);
                await vscode.commands.executeCommand('workbench.action.openGlobalSettings');
            }
        } else {
            vscode.window.showInformationMessage('Nothing to import. All settings have already been imported');
        }
    }
}