1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 07:27:58 +01:00

Dont use autocomplete during macro/:cmd playback; dont show the completion list on setCompletions if wim-=auto

This commit is contained in:
Kris Maglione
2008-10-08 18:19:11 +00:00
parent e22bd873ff
commit 605cf4bbc3
3 changed files with 26 additions and 20 deletions

View File

@@ -40,8 +40,14 @@ liberator.util = { //{{{
this.latest = 0;
/* minInterval is the time between the completion of the command and the next firing. */
this.doneAt = Date.now() + minInterval;
callback(this.arg);
this.doneAt = Date.now() + minInterval;
try
{
callback(this.arg);
}
finally
{
this.doneAt = Date.now() + minInterval;
}
}
this.tell = function (arg)
{