当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript mousetrap.bindGlobal函数代码示例

本文整理汇总了TypeScript中mousetrap.bindGlobal函数的典型用法代码示例。如果您正苦于以下问题:TypeScript bindGlobal函数的具体用法?TypeScript bindGlobal怎么用?TypeScript bindGlobal使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了bindGlobal函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: createKeyBinding

   function createKeyBinding(name, description, preventDefault, pressAction) {
      var keyBinding = parseKeyBinding(name);      
//      var editor = ace.edit("editor");
//       
//      console.log(keyBinding.editor);
//      editor.commands.addCommand({
//           name : name,
//           bindKey : {
//               win : keyBinding.editor,
//               mac : keyBinding.editor
//           },
//           exec : function(editor) {
//              if(pressAction) { 
//                 pressAction();
//              }
//           }
//      });
      keyBindings[keyBinding.editor] = Common.escapeHtml(description);
      FileEditor.addEditorKeyBinding(keyBinding, pressAction);
      Mousetrap.bindGlobal(keyBinding.global, function(e) {
         if(pressAction) {
            pressAction();
         }
         return !preventDefault;
      });
   }
开发者ID:snapscript,项目名称:snap-develop,代码行数:26,代码来源:keys.ts

示例2: function

 commandRegistry.forEach(c=> {
     if (c.config.context == CommandContext.Global
         && c.config.keyboardShortcut) {
         Mousetrap.bindGlobal(c.config.keyboardShortcut, function() {
             c.emit({});
             return !!c.config.allowDefault;
         });
     }
 });
开发者ID:cmsdesigner,项目名称:alm,代码行数:9,代码来源:commands.ts

示例3: createKeyUpBinding

   function createKeyUpBinding(name, preventDefault, pressAction) {
      var keyBinding = parseKeyBinding(name);      

      Mousetrap.bindGlobal(keyBinding.global, function(e) {
         if(pressAction) {
            pressAction();
         }
         return !preventDefault;
      }, 'keyup');
   }
开发者ID:snapscript,项目名称:snap-develop,代码行数:10,代码来源:keys.ts

示例4: register

export function register() {

    commandRegistry.forEach(c=> {
        if (c.config.context == CommandContext.Global
            && c.config.keyboardShortcut) {
            Mousetrap.bindGlobal(c.config.keyboardShortcut, function() {
                c.emit({});
                return !!c.config.allowDefault;
            });
        }
    });

    // Commands with multiple key bindings
    // enable at some point
    Mousetrap.bindGlobal('mod+h', function() { // atom,sublime,c9
        findAndReplace.emit({});
        return false;
    });
}
开发者ID:Zoxive,项目名称:alm,代码行数:19,代码来源:commands.ts


注:本文中的mousetrap.bindGlobal函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。