iceddev / iggins

Irken plugin for listening for key combinations

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add Ctrl + Shift + S to Predicates

spatializes opened this issue · comments

Need Ctrl-Shift-S in predicates.

Something like this:

CTRL_SHIFT_S: function({ ctrlKey, metaKey, keyCode, shiftKey }){
        return ((ctrlKey === true || metaKey === true) && shiftKey === true && keyCode === 83);
}