1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-01 04:45:45 +01:00

Add search keyword-history completion (try typing a keyword), better JS completion, better errors in :so, check "preload" before preloading history/bookmarks, Object/Function highlighting, some other bug fixes.

This commit is contained in:
Kris Maglione
2008-10-08 02:56:11 +00:00
parent 02c1d2fbdf
commit 10376ecb77
12 changed files with 168 additions and 90 deletions

View File

@@ -537,7 +537,7 @@ liberator.Events = function () //{{{
function waitForPageLoaded()
{
liberator.dump("start waiting in loaded state: " + liberator.buffer.loaded);
liberator.threadyield(true); // clear queue
liberator.threadYield(true); // clear queue
if (liberator.buffer.loaded == 1)
return true;
@@ -546,7 +546,7 @@ liberator.Events = function () //{{{
var then = new Date().getTime();
for (let now = then; now - then < ms; now = new Date().getTime())
{
liberator.threadyield();
liberator.threadYield();
if ((now - then) % 1000 < 10)
liberator.dump("waited: " + (now - then) + " ms");