如果用户在显示自定义弹出窗口时按下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
});
不幸的是,我可以返回false
或true
,结果是一样的,它总是捕获down事件,这很烦人。 如何防止这种情况?
我已经尝试了以下内容:
修改
来自@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);
答案 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);