combokeys icon indicating copy to clipboard operation
combokeys copied to clipboard

use regexp or smart shortcuts to filter key event streams

Open dey-dey opened this issue 11 years ago • 2 comments

so something i was trying to do but didn't really get how was to filter events for alphanumeric keys. i can contribute to this, maybe there's a way to add custom filters easily to this plugin? lemme know!

dey-dey avatar Dec 07 '14 17:12 dey-dey

So, you want to add a binding that uses a regexp for the key, or a filter function?

mightyiam avatar Dec 10 '14 13:12 mightyiam

Something like

combokeys.bind(
    function (character, e) {
        if (
            // filter code
        ) {
            return true;
        },
        function () {
            // callback
        }
)

mightyiam avatar Dec 10 '14 13:12 mightyiam