Sequence is a little library to help make handling keystroke sequences easier.
All you need to do to make a Sequence is to make a new Sequence
with an array of keys (based on event.key), and a callback function.
Here's a little example of G then I, which Linear uses to take you to your inbox:
new Sequence(["g", "i"], event => {
// Code goes here
})
You can easily kill a Sequence by calling it's kill()
method.
This library was made by Aetinx for Latapals.