Skip to content

Instantly share code, notes, and snippets.

@mooz
Created October 11, 2009 08:03
Show Gist options
  • Save mooz/207539 to your computer and use it in GitHub Desktop.
Save mooz/207539 to your computer and use it in GitHub Desktop.
key.setEditKey("M-l",
function (ev, arg) {
let elem = ev.originalTarget;
elem.style.imeMode = {
active : "inactive",
inactive : "active"
}[elem.style.imeMode] || "active";
elem.blur();
elem.focus();
}, "Toggle IME", true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment