本文整理汇总了TypeScript中@jupyterlab/coreutils.ISettingRegistry类的典型用法代码示例。如果您正苦于以下问题:TypeScript ISettingRegistry类的具体用法?TypeScript ISettingRegistry怎么用?TypeScript ISettingRegistry使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了ISettingRegistry类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1:
execute: () => {
config.lineWrap = !config.lineWrap;
return settingRegistry.set(id, 'editorConfig', config)
.catch((reason: Error) => {
console.error(`Failed to set ${id}: ${reason.message}`);
});
},
示例2: createConsole
/**
* Create a console for a given path.
*/
async function createConsole(options: ICreateOptions): Promise<ConsolePanel> {
let panel: ConsolePanel;
await manager.ready;
panel = new ConsolePanel({
manager,
contentFactory,
mimeTypeService: editorServices.mimeTypeService,
rendermime,
setBusy: app.setBusy.bind(app),
...(options as Partial<ConsolePanel.IOptions>)
});
const interactionMode: string = (await settingRegistry.get(
'@jupyterlab/console-extension:tracker',
'interactionMode'
)).composite as string;
panel.console.node.dataset.jpInteractionMode = interactionMode;
await panel.session.ready;
// Add the console panel to the tracker.
tracker.add(panel);
panel.session.propertyChanged.connect(() => tracker.save(panel));
shell.addToMainArea(panel, {
ref: options.ref,
mode: options.insertMode,
activate: options.activate
});
return panel;
}
示例3: updateSettings
async function updateSettings() {
interactionMode = (await settingRegistry.get(pluginId, 'interactionMode'))
.composite as string;
tracker.forEach(panel => {
panel.console.node.dataset.jpInteractionMode = interactionMode;
});
}
示例4:
execute: args => {
const theme = args['theme'] as Terminal.ITheme;
return settingRegistry
.set(plugin.id, 'theme', theme)
.then(() => commands.notifyCommandChanged(CommandIDs.setTheme))
.catch(showErrorMessage);
}
示例5:
execute: () => {
autoClosingBrackets = !autoClosingBrackets;
tracker.forEach(widget => {
widget.editor.setOption('autoClosingBrackets', autoClosingBrackets);
});
return settingRegistry
.set(id, 'autoClosingBrackets', autoClosingBrackets);
},
示例6:
execute: () => {
let { fontSize } = Terminal.defaultOptions;
if (fontSize > 9) {
return settingRegistry
.set(plugin.id, 'fontSize', fontSize - 1)
.catch(showErrorMessage);
}
}
示例7:
execute: args => {
config.tabSize = args['size'] as number || 4;
config.insertSpaces = !!args['insertSpaces'];
return settingRegistry.set(id, 'editorConfig', config)
.catch((reason: Error) => {
console.error(`Failed to set ${id}: ${reason.message}`);
});
},
示例8:
execute: () => {
config.autoClosingBrackets = !config.autoClosingBrackets;
return settingRegistry
.set(id, 'editorConfig', config)
.catch((reason: Error) => {
console.error(`Failed to set ${id}: ${reason.message}`);
});
},
示例9:
execute: () => {
const value = !docManager.autosave;
const key = 'autosave';
return settingRegistry.set(pluginId, key, value)
.catch((reason: Error) => {
console.error(`Failed to set ${pluginId}:${key} - ${reason.message}`);
});
}