mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-01-06 09:14:12 +01:00
Make :undo a bit saner. Add TODO about config.name checks.
This commit is contained in:
@@ -929,8 +929,6 @@ function Events() //{{{
|
||||
{
|
||||
liberator.threadYield(1, true);
|
||||
|
||||
noremap = !!noremap;
|
||||
|
||||
for (var i = 0; i < keys.length; i++)
|
||||
{
|
||||
let charCode = keys.charCodeAt(i);
|
||||
@@ -983,7 +981,7 @@ function Events() //{{{
|
||||
|
||||
let evt = doc.createEvent("KeyEvents");
|
||||
evt.initKeyEvent("keypress", true, true, view, ctrl, alt, shift, meta, keyCode, charCode);
|
||||
evt.noremap = noremap;
|
||||
evt.noremap = !!noremap;
|
||||
evt.isMacro = true;
|
||||
if (string)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user