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:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user