diff --git a/content/help.js b/content/help.js
index 89b0e16e..bc0cc989 100644
--- a/content/help.js
+++ b/content/help.js
@@ -206,7 +206,7 @@ vimperator.help = function(section, easter) //{{{
var fulldoc = '\n' +
'\n' +
- '\n
\nVimperator help\n' +
+ '\n\nVimperator Help\n' +
// XXX: stylesheet broken here? Have to add it in the vimperator.xul file
'\n' +
'\n\n\n' +
diff --git a/content/ui.js b/content/ui.js
index f916c03e..f0b7e378 100644
--- a/content/ui.js
+++ b/content/ui.js
@@ -1081,6 +1081,17 @@ function StatusLine() //{{{
if (!url || typeof url != "string")
url = vimperator.buffer.URL;
+ // make it even more vim-like
+ if (url == "about:blank")
+ {
+ var title = vimperator.buffer.title;
+
+ if (title == "Vimperator Help")
+ url = "[Help]";
+ else if (!title)
+ url = "[No Name]";
+ }
+
url_widget.value = url;
};