1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-10 13:04:12 +01:00

Add go=r to toggle the scrollbar

This commit is contained in:
Kris Maglione
2008-12-04 15:58:19 -05:00
parent eb11ec2b06
commit b8d32c8e3d
6 changed files with 78 additions and 38 deletions

View File

@@ -18,6 +18,7 @@
* IMPORTANT: renamed Startup and Quit autocmd events to VimperatorEnter and
VimperatorLeave respectively
* add 'guioptions'=r to toggle the scrollbar.
* remove spaces and newlines when open urls starting with http:// or similar
before :o http://linux .com would search for http://linux and for .com, now
it just opens linux.com. Also handy when pasting broken urls with p or P.

View File

@@ -33,8 +33,13 @@ const config = { //{{{
/*** optional options, there are checked for existance and a fallback provided ***/
features: ["bookmarks", "hints", "history", "marks", "quickmarks", "session", "tabs", "windows"],
defaults: { guioptions: "" },
guioptions: { m: ["toolbar-menubar"], T: ["nav-bar"], b: ["PersonalToolbar"] },
defaults: { guioptions: "r" },
guioptions: {
m: ["MenuBar", ["toolbar-menubar"]],
T: ["Toolbar", ["nav-bar"]],
b: ["Bookmark bar", ["PersonalToolbar"]]
},
get visualbellWindow() getBrowser().mPanelContainer,
styleableChrome: "chrome://browser/content/browser.xul",