本文整理汇总了TypeScript中@jupyterlab/mainmenu.EditMenu.addGroup方法的典型用法代码示例。如果您正苦于以下问题:TypeScript EditMenu.addGroup方法的具体用法?TypeScript EditMenu.addGroup怎么用?TypeScript EditMenu.addGroup使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类@jupyterlab/mainmenu.EditMenu
的用法示例。
在下文中一共展示了EditMenu.addGroup方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: createEditMenu
export function createEditMenu(app: JupyterLab, menu: EditMenu): void {
const commands = menu.menu.commands;
// Add the undo/redo commands the the Edit menu.
commands.addCommand(CommandIDs.undo, {
label: 'Undo',
isEnabled: Private.delegateEnabled(app, menu.undoers, 'undo'),
execute: Private.delegateExecute(app, menu.undoers, 'undo')
});
commands.addCommand(CommandIDs.redo, {
label: 'Redo',
isEnabled: Private.delegateEnabled(app, menu.undoers, 'redo'),
execute: Private.delegateExecute(app, menu.undoers, 'redo')
});
menu.addGroup(
[{ command: CommandIDs.undo }, { command: CommandIDs.redo }],
0
);
// Add the clear commands to the Edit menu.
commands.addCommand(CommandIDs.clearCurrent, {
label: () => {
const noun = Private.delegateLabel(app, menu.clearers, 'noun');
const enabled = Private.delegateEnabled(
app,
menu.clearers,
'clearCurrent'
)();
return `Clear${enabled ? ` ${noun}` : ''}`;
},
isEnabled: Private.delegateEnabled(app, menu.clearers, 'clearCurrent'),
execute: Private.delegateExecute(app, menu.clearers, 'clearCurrent')
});
commands.addCommand(CommandIDs.clearAll, {
label: () => {
const noun = Private.delegateLabel(app, menu.clearers, 'pluralNoun');
const enabled = Private.delegateEnabled(app, menu.clearers, 'clearAll')();
return `Clear All${enabled ? ` ${noun}` : ''}`;
},
isEnabled: Private.delegateEnabled(app, menu.clearers, 'clearAll'),
execute: Private.delegateExecute(app, menu.clearers, 'clearAll')
});
menu.addGroup(
[{ command: CommandIDs.clearCurrent }, { command: CommandIDs.clearAll }],
10
);
// Add the find/replace commands the the Edit menu.
commands.addCommand(CommandIDs.find, {
label: 'Find…',
isEnabled: Private.delegateEnabled(app, menu.findReplacers, 'find'),
execute: Private.delegateExecute(app, menu.findReplacers, 'find')
});
commands.addCommand(CommandIDs.findAndReplace, {
label: 'Find and Replace…',
isEnabled: Private.delegateEnabled(
app,
menu.findReplacers,
'findAndReplace'
),
execute: Private.delegateExecute(app, menu.findReplacers, 'findAndReplace')
});
menu.addGroup(
[{ command: CommandIDs.find }, { command: CommandIDs.findAndReplace }],
200
);
commands.addCommand(CommandIDs.goToLine, {
label: 'Go to Line…',
isEnabled: Private.delegateEnabled(app, menu.goToLiners, 'goToLine'),
execute: Private.delegateExecute(app, menu.goToLiners, 'goToLine')
});
menu.addGroup([{ command: CommandIDs.goToLine }], 200);
}