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

update :set examples in help now that it uses parseArgs()

This commit is contained in:
Doug Kearns
2008-12-13 21:02:29 +11:00
parent 09ee974d23
commit b63bbcfaee
2 changed files with 8 additions and 6 deletions

View File

@@ -82,7 +82,7 @@ Enable _passthrough_ mode on *some* Google sites:
Set the filetype to mail when editing email at Gmail: Set the filetype to mail when editing email at Gmail:
:autocmd LocationChange .* :set editor=gvim -f :autocmd LocationChange .* :set editor=gvim\ -f
:autocmd LocationChange mail\.google\.com :set editor=gvim -f -c 'set ft=mail' :autocmd LocationChange mail\.google\.com :set editor="gvim -f -c 'set ft=mail'"
// vim: set syntax=asciidoc: // vim: set syntax=asciidoc:

View File

@@ -689,8 +689,8 @@ ____
Change the title of the browser window. Change the title of the browser window.
Vimperator changes the browser title from "Title of web page - Mozilla Firefox" to Vimperator changes the browser title from "Title of web page - Mozilla Firefox" to
"Title of web page - Vimperator". + "Title of web page - Vimperator". +
If you don't like that, you can restore it with: [c]:set titlestring=Mozilla If you don't like that, you can restore it with:
Firefox[c]. [c]:set titlestring=Mozilla\ Firefox[c].
____ ____
@@ -698,7 +698,9 @@ ____
||'usermode' 'um'|| boolean (default: off) ||'usermode' 'um'|| boolean (default: off)
____ ____
Show current website with a minimal style sheet to make it easily accessible. Show current website with a minimal style sheet to make it easily accessible.
Note that this is a local option for now, later it may be split into a global and :setlocal part
Note: this is a local option for now, a global value may be supported in the
future.
____ ____
@@ -752,7 +754,7 @@ ____
||'wildignore' 'wig'|| stringlist (default: "") ||'wildignore' 'wig'|| stringlist (default: "")
____ ____
List of file patterns to ignore when completing files. E.g. to ignore object List of file patterns to ignore when completing files. E.g. to ignore object
files and Vim swap files [c]:set wildignore=.*\.o,\..*\.s[a-z]\\{2}[c] files and Vim swap files [c]:set wildignore=".*\.o,\..*\.s[a-z]\\{2}"[c]
Note: Unlike Vim each pattern is a regexp rather than a glob. Note: Unlike Vim each pattern is a regexp rather than a glob.
____ ____