ACE有条件地更改密钥绑定

时间:2014-06-23 12:59:02

标签: javascript command ace-editor

如果用户在显示自定义弹出窗口时按下down键,我希望从编辑器中取消此down事件并手动处理。 但是,如果弹出窗口被取消激活,则会关闭'密钥应该照常执行。

为此,我写了这个:

editor.commands.addCommand({
  name: 'nav_down.',
  bindKey: {win: 'Down', mac: 'Down'},
  exec: function(editor) {
        if(myPopupIsOpen()) {
          // Do whatever I want with the popup.
          return false;
        } else {
          // just leave the key.
          return true;
        }
  readOnly: true
});

不幸的是,我可以返回falsetrue,结果是一样的,它总是捕获down事件,这很烦人。 如何防止这种情况?

我已经尝试了以下内容:

  • 向DOM添加密钥绑定。但在那之后,互动总是发生(即我无法捕捉它)。
  • 返回false或true为suggested for common events,但这不起作用。

修改

来自@a用户的解决方案非常有效。 我没有写上面的命令,而是写道:

var HashHandler = require("ace/keyboard/hash_handler").HashHandler;
keyboardHandler = new HashHandler();
keyboardHandler.addCommand({
  name: 'nav_down.',
  bindKey: {win: 'Down', mac: 'Down'},
  exec: function(editor) {
        if(myPopupIsOpen()) {
          // Do whatever I want with the popup.
          return true; // CHANGE HERE ! true is when it capture it.
        } else {
          // just leave the key.
          return false; // CHANGE HERE ! false is when I don't capture it.
        }
  readOnly: true
});
editor.keyBinding.addKeyboardHandler(keyboardHandler);

1 个答案:

答案 0 :(得分:4)

在当前版本中,ace仅为每个键保留一个命令,因此addCommand调用将删除默认绑定。

您可以添加类似于自动完成https://github.com/ajaxorg/ace/blob/v1.1.3/lib/ace/autocomplete.js#L221

的新键盘处理程序
var HashHandler = require("ace/keyboard/hash_handler").HashHandler;
keyboardHandler = new HashHandler();
keyboardHandler.addCommand(/*add your command with return false*/)
editor.keyBinding.addKeyboardHandler(keyboardHandler);