本文整理匯總了TypeScript中vs/base/browser/browser.supportsExecCommand函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript supportsExecCommand函數的具體用法?TypeScript supportsExecCommand怎麽用?TypeScript supportsExecCommand使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。
在下文中一共展示了supportsExecCommand函數的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: registerClipboardAction
function registerClipboardAction(desc: IClipboardCommand, alias: string, weight: number) {
if (!browser.supportsExecCommand(desc.execCommand)) {
return;
}
CommonEditorRegistry.registerEditorAction(new EditorActionDescriptor(desc.ctor, desc.id, desc.label, {
handler: execCommandToHandler.bind(null, desc.id, desc.execCommand),
context: ContextKey.None,
primary: desc.primary,
secondary: desc.secondary,
win: desc.win,
linux: desc.linux,
mac: desc.mac,
kbExpr: KbExpr.has(editorCommon.KEYBINDING_CONTEXT_EDITOR_TEXT_FOCUS)
}, alias));
MenuRegistry.appendMenuItem(MenuId.EditorContext, {
command: {
id: desc.id,
title: desc.label
},
group: `9_cutcopypaste`,
order: weight,
when: desc.kbExpr
});
}
示例2: conditionalCopyWithSyntaxHighlighting
function conditionalCopyWithSyntaxHighlighting() {
if (browser.isEdgeOrIE || !browser.supportsExecCommand('copy')) {
return () => { };
}
return editorAction;
}
示例3: registerClipboardAction
function registerClipboardAction(desc:IClipboardCommand, alias:string) {
if (!browser.supportsExecCommand(desc.execCommand)) {
return;
}
CommonEditorRegistry.registerEditorAction(new EditorActionDescriptor(desc.ctor, desc.id, desc.label, {
handler: execCommandToHandler.bind(null, desc.id, desc.execCommand),
context: ContextKey.None,
primary: desc.primary,
secondary: desc.secondary,
win: desc.win,
linux: desc.linux,
mac: desc.mac
}, alias));
}
示例4: constructor
class ExecCommandPasteAction extends ExecCommandAction {
constructor() {
super('paste', {
id: 'editor.action.clipboardPasteAction',
label: nls.localize('actions.clipboard.pasteLabel', "Paste"),
alias: 'Paste',
precondition: EditorContextKeys.Writable,
kbOpts: {
kbExpr: EditorContextKeys.TextFocus,
primary: KeyMod.CtrlCmd | KeyCode.KEY_V,
win: { primary: KeyMod.CtrlCmd | KeyCode.KEY_V, secondary: [KeyMod.Shift | KeyCode.Insert] }
},
menuOpts: {
group: CLIPBOARD_CONTEXT_MENU_GROUP,
order: 3
}
});
}
}
if (browser.supportsExecCommand('cut')) {
CommonEditorRegistry.registerEditorAction(new ExecCommandCutAction());
}
if (browser.supportsExecCommand('copy')) {
CommonEditorRegistry.registerEditorAction(new ExecCommandCopyAction());
}
if (browser.supportsExecCommand('paste')) {
CommonEditorRegistry.registerEditorAction(new ExecCommandPasteAction());
}
示例5: conditionalEditorAction
function conditionalEditorAction(testCommand: string) {
if (!browser.supportsExecCommand(testCommand)) {
return () => { };
}
return editorAction;
}