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

Merge branch 'master' into vimperator-2.1

This commit is contained in:
Kris Maglione
2008-12-20 11:04:28 -05:00
13 changed files with 133 additions and 20 deletions

View File

@@ -267,7 +267,6 @@ function CommandLine() //{{{
substring = substring.substr(value.length);
this.removeSubstring = substring;
// highlight="Preview" won't work in the editor.
let node = util.xmlToDom(<span highlight="Preview">{substring}</span>,
document);
let start = this.caret;
@@ -1085,8 +1084,6 @@ function CommandLine() //{{{
}
else if (event.type == "input")
{
if (completions)
completions.previewClear();
this.resetCompletions();
liberator.triggerCallback("change", currentExtendedMode, command);
}
@@ -1445,7 +1442,10 @@ function CommandLine() //{{{
{
autocompleteTimer.reset();
if (completions)
completions.reset();
{
completions.wildIndex = -1;
completions.previewClear();
}
if (history)
history.reset();
}