1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-24 20:15:46 +01:00

many help fixes

moved echo() -> vimperator.echo() and removed old XUL entries.
This commit is contained in:
Martin Stubenschrott
2007-05-22 09:13:32 +00:00
parent c023c78a35
commit 85e4265848
7 changed files with 70 additions and 105 deletions

View File

@@ -56,7 +56,7 @@ function CommandLine ()
const UNINITIALIZED = -2; // notifies us, if we need to start history/tab-completion from the beginning
const HISTORY_SIZE = 500;
var completionlist = new InformationList("vim-completion", { min_items: 2, max_items: 10 });
var completionlist = new InformationList("vimperator-completion", { min_items: 2, max_items: 10 });
var completions = new Array();
var history = new Array();
@@ -72,9 +72,9 @@ function CommandLine ()
var completion_index = UNINITIALIZED;
// The prompt for the current command, for example : or /. Can be blank
var prompt_widget = document.getElementById('new-vim-commandbar-prompt');
var prompt_widget = document.getElementById('vimperator-commandline-prompt');
// The command bar which contains the current command
var command_widget = document.getElementById('new-vim-commandbar');
var command_widget = document.getElementById('vimperator-commandline-command');
// load the history
var hist = get_pref("commandline_history", "");