onivim/oni

Keybinding Mechanism isn't Robust

Open

#1 240 ouverte le 6 janv. 2018

Voir sur GitHub
 (7 commentaires) (0 réactions) (0 assignés)TypeScript (336 forks)batch import
bughelp wanted

Métriques du dépôt

Stars
 (11 389 stars)
Métriques de merge PR
 (Aucune PR mergée en 30 j)

Description

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.

Guide contributeur