Hi all, I needed to define some shortcuts in an application and was left unhappy with the current existing library, so I more or less ported my own JS keybinding library to ClojureScript:
https://github.com/piranha/keybind It's quite simple to use and should be enough for most purposes (if it's not, tell me what's wrong :)): (require '[keybind :as key])(key/bind! "ctrl-c" ::my-trigger #(js/console.log "Sequence fired properly")) -- Note that posts from new members are moderated - please be patient with your first post. --- You received this message because you are subscribed to the Google Groups "ClojureScript" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/clojurescript.
