Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将“Alt-Space”键映射添加到 codemirror,然后在按下键时执行特定功能。我无法使用 .
cm.addKeyMap
我应该在哪里编写此函数,以便可以将键映射绑定到特定函数?
您使用的确切代码是什么?
为了您的信息,您始终可以通过以下代码行将任何 keyMap 添加到编辑器实例:
var map = {"Alt-Space": function(cm){...}} editor.addKeyMap(map);
其中, editor 是 CodeMirror 实例。