1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 10:18:00 +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

@@ -874,6 +874,8 @@ liberator.CommandLine = function () //{{{
{
setCommand(command.substring(0, completionStartIndex) + compl + completionPostfix);
commandWidget.selectionStart = commandWidget.selectionEnd = completionStartIndex + compl.length;
if (longest)
liberator.triggerCallback("change", currentExtendedMode, this.getCommand());
// Start a new completion in the next iteration. Useful for commands like :source
// RFC: perhaps the command can indicate whether the completion should be restarted
@@ -1236,8 +1238,8 @@ liberator.ItemList = function (id) //{{{
let filter = liberator.completion.filterString;
if (filter)
{
b = liberator.template.highlightFilter(String(b), filter);
c = liberator.template.highlightFilter(String(c), filter);
b = liberator.template.highlightFilter(b, filter);
c = liberator.template.highlightFilter(c, filter);
}
if (typeof a == "function")