當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript browser.supportsExecCommand函數代碼示例

本文整理匯總了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
	});
}
開發者ID:1Hgm,項目名稱:vscode,代碼行數:26,代碼來源:clipboard.ts

示例2: conditionalCopyWithSyntaxHighlighting

function conditionalCopyWithSyntaxHighlighting() {
	if (browser.isEdgeOrIE || !browser.supportsExecCommand('copy')) {
		return () => { };
	}

	return editorAction;
}
開發者ID:m-khosravi,項目名稱:vscode,代碼行數:7,代碼來源:clipboard.ts

示例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));
}
開發者ID:JackWangCUMT,項目名稱:vscode,代碼行數:15,代碼來源:clipboard.ts

示例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());
}
開發者ID:bobmagicii,項目名稱:vscode,代碼行數:30,代碼來源:clipboard.ts

示例5: conditionalEditorAction

function conditionalEditorAction(testCommand: string) {
	if (!browser.supportsExecCommand(testCommand)) {
		return () => { };
	}
	return editorAction;
}
開發者ID:StateFarmIns,項目名稱:vscode,代碼行數:6,代碼來源:clipboard.ts


注:本文中的vs/base/browser/browser.supportsExecCommand函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。