A shortcuts manager made for `Rhyme`
npm install cutagerjs
Cutager ?Cutager is a shortcuts manager made for Rhyme
``sh`
yarn add cutagerjs
or
`sh`
npm install cutagerjs
`jssave
import { KeyCombo, Action, CutagerJS } from "cutagerjs";
const cutager = new CutagerJS();
cutager.addAction(new Action("save", new KeyCombo("ctrl+s", "ctrl+shift+s"), save), false); // Note is a pre declared function`
`js`
cutager.removeAction("save");
`js`
cutager.pause();
`js`
cutager.resume();
`js``
cutager.isPaused();

