1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-21 04:47:58 +01:00

Fix commandline.input

This commit is contained in:
Kris Maglione
2008-12-06 19:16:18 -05:00
parent ae25ea4309
commit 2092d586d7

View File

@@ -995,6 +995,7 @@ function CommandLine() //{{{
setPrompt(prompt, extra.promptHighlight || this.HL_QUESTION);
setCommand(extra.default || "");
commandlineWidget.collapsed = false;
commandWidget.focus();
completions = Completions(commandWidget.inputField);
@@ -1383,7 +1384,8 @@ function CommandLine() //{{{
completions.context.reset();
// Needed?
//completions.reset();
history.reset();
if (history)
history.reset();
}
};
//}}}