monaco-editor使用AddAction / AddCommand,如何stopPrapagation?

时间:2018-03-30 08:01:25

标签: stoppropagation monaco-editor

description:输入Ctrl / Cmd + enter执行运行功能。

editor.addAction({
      id: 'runStep',
      label: 'run',
      keybindings: [monaco.KeyMod.CtrlCmd | monaco.KeyCode.Enter],
      contextMenuGroupId: 'navigation',
      contextMenuOrder: 1.5,
      run: function(editor){ /*do something*/},});

但是,如何停止传播?

run函数的参数是editor,而不是keyboardEvent对象;

0 个答案:

没有答案