1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 15:52:29 +01:00

added stal=0 reference to guioptions help

This commit is contained in:
Martin Stubenschrott
2007-12-11 13:54:38 +00:00
parent e22b0356b7
commit 32ecd9712c
2 changed files with 3 additions and 2 deletions

View File

@@ -25,5 +25,5 @@
* Ben Klemens
* Andrew Pantyukhin
I want to say a big <b>THANK YOU</b> for all people which supported this project in this way.
I want to say a big <b>THANK YOU</b> to all people which supported this project in this way.
</pre>

View File

@@ -493,7 +493,8 @@ vimperator.Options = function () //{{{
"<li><b>m</b>: menubar</li>" +
"<li><b>T</b>: toolbar</li>" +
"<li><b>b</b>: bookmark bar</li>" +
"</ul>",
"</ul>" +
"You can also hide the tab bar with <code class='command'>:set showtabline=0</code>.",
setter: function (value) { setGuiOptions(value); },
defaultValue: "",
validator: function (value) { return !/[^mTb]/.test(value); }