diff --git a/NEWS b/NEWS
index 8f11c2c8..33d81b34 100644
--- a/NEWS
+++ b/NEWS
@@ -2,7 +2,7 @@
2007-xx-xx:
* version 0.6
* THIS VERSION ONLY WORKS WITH FIREFOX 3.0
- * added new 'laststatus' option
+ * added new 'laststatus' option and removed "s" value from 'guioptions'
* Tab-completion improvements for :javascript and :open
* IMPORTANT: changed semantics of :echo and :echoerr: Strings must be quoted with " or ' now,
but you can do things like :echo 3+2 or :echo window.document now
diff --git a/content/options.js b/content/options.js
index 53670fda..f68bc7fd 100644
--- a/content/options.js
+++ b/content/options.js
@@ -382,11 +382,13 @@ function Options() //{{{
addOption(new Option(["complete", "cpt"], "charlist",
{
short_help: "Items which are completed at the :[tab]open prompt",
- help: "Available items:
" +
+ help: "Available items:
" +
+ "" +
"- s: Search engines and keyword URLs
" +
"- f: Local files
" +
"- b: Bookmarks
" +
- "- h: History
" +
+ "- h: History
" +
+ "
" +
"The order is important, so :set complete=bs would list bookmarks first, and then any available quick searches.
" +
"Add 'sort' to the 'wildoptions' option if you want all entries sorted.",
default_value: "sfbh",
@@ -426,14 +428,15 @@ function Options() //{{{
addOption(new Option(["guioptions", "go"], "charlist",
{
short_help: "Show or hide the menu, toolbar and scrollbars",
- help: "Supported characters:
" +
+ help: "Supported characters:
" +
+ "" +
"- m: menubar
" +
"- T: toolbar
" +
"- b: bookmark bar
" +
- "- s: statusbar
",
+ "
",
setter: function(value) { Options.setPref("guioptions", value); setGuiOptions(value); },
- default_value: "s",
- validator: function (value) { if (/[^mTbs]/.test(value)) return false; else return true; }
+ default_value: "",
+ validator: function (value) { if (/[^mTb]/.test(value)) return false; else return true; }
}
));
addOption(new Option(["hintchars", "hc"], "charlist",
@@ -493,10 +496,12 @@ function Options() //{{{
{
short_help: "Show the status line",
help: "Determines when the last window will have a status line. " +
- "Possible values:
" +
+ "Possible values:
" +
+ "" +
"- 0: never
" +
"- 1: only if there are multiple windows
" +
- "- 2: always
" +
+ "- 2: always
" +
+ "
" +
"NOTE: laststatus=1 not implemented yet.",
default_value: 2,
setter: function(value) { Options.setPref("laststatus", value); setStatusLine(value); },
@@ -528,11 +533,13 @@ function Options() //{{{
{
short_help: "Where to show requested popup windows",
help: "Define where to show requested popup windows. Does not apply to windows which are opened by middle clicking a link, they always open in a new tab. " +
- "Possible values:
" +
+ "Possible values:
" +
+ "" +
"- 0: Force to open in the current tab (NOTE: this can stop some web sites from working correctly!)
" +
"- 1: Always open in a new tab
" +
"- 2: Open in a new window if it has a specific requested size (default in Firefox)
"+
- "- 3: Always open in a new window
" +
+ "- 3: Always open in a new window
" +
+ "
" +
"NOTE: This option does not change the popup blocker of Firefox in any way.",
default_value: 1,
setter: function(value) { Options.setPref("popups", value); setPopups(value); },
@@ -577,10 +584,12 @@ function Options() //{{{
{
short_help: "Show the destination of the link under the cursor in the status bar",
help: "Also links which are focused by keyboard commands like <Tab> are shown. " +
- "Possible values:
" +
+ "Possible values:
" +
+ "" +
"- 0: Don't show link destination
" +
"- 1: Show the link in the status line
" +
- "- 2: Show the link in the command line
",
+ "- 2: Show the link in the command line
" +
+ "
",
default_value: 1,
validator: function (value) { if (value >= 0 && value <= 2) return true; else return false; }
}
@@ -588,10 +597,12 @@ function Options() //{{{
addOption(new Option(["showtabline", "stal"], "number",
{
short_help: "Control when to show the tab bar of opened web pages",
- help: "Possible values:
" +
+ help: "Possible values:
" +
+ "" +
"- 0: Never show tab bar
" +
"- 1: Show tab bar only if more than one tab is open
" +
- "- 2: Always show tab bar
" +
+ "- 2: Always show tab bar
" +
+ "
" +
"NOTE: showtabline=1 not implemented yet and buggy with showtabline=0",
setter: function(value) { Options.setPref("showtabline", value); setShowTabline(value); },
default_value: 2,