1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-06 13:24:13 +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

@@ -179,8 +179,8 @@ function init()
Vimperator.prototype.qm = new QM;
// Vimperator.prototype.commandline = new CommandLine;
Vimperator.prototype.search = new Search;
Vimperator.prototype.previewwindow = new InformationList("vimperator-preview-window", { incremental_fill: false, max_items: 10 });
Vimperator.prototype.bufferwindow = new InformationList("vimperator-buffer-window", { incremental_fill: false, max_items: 10 });
Vimperator.prototype.previewwindow = new InformationList("vimperator-previewwindow", { incremental_fill: false, max_items: 10 });
Vimperator.prototype.bufferwindow = new InformationList("vimperator-bufferwindow", { incremental_fill: false, max_items: 10 });
Vimperator.prototype.statusline = new StatusLine();
Vimperator.prototype.tabs = new Tabs();
@@ -190,7 +190,7 @@ function init()
//vimperator.registerCallback("complete", vimperator.modes.EX, function(str) { return moo();; } );
//status_line = document.getElementById("vim-statusbar");
command_line = document.getElementById("vim-commandbar");
command_line = document.getElementById("vimperator-commandline");
// Setup our main status handler - from browser.js
// this function reacts to status bar and url changes which are sent from the mozilla core