onivim/oni

Keybinding Mechanism isn't Robust

Open

#1,240 创建于 2018年1月6日

在 GitHub 查看
 (7 评论) (0 反应) (0 负责人)TypeScript (11,389 star) (336 fork)batch import
bughelp wanted

描述

const activate = (oni) => {
    console.log("config activated")

    // Input 
    //
    // Add input bindings here:
    //
    oni.input.bind("<c-enter>", () => console.log("Control+Enter was pressed"))
    oni.input.bind("<c-s-r>", "language.findAllReferences")

    //
    // Or remove the default bindings here by uncommenting the below line:
    //
    // oni.input.unbind("<c-p>")
}

I input <c-enter> , there is no any output on developer console I input <c-s-r>, there is no any response.

贡献者指南

Keybinding Mechanism isn't Robust · onivim/oni#1240 | Good First Issue