diff options
author | Doug Kearns <dougkearns@gmail.com> | 2008-12-13 21:02:29 +1100 |
---|---|---|
committer | Doug Kearns <dougkearns@gmail.com> | 2008-12-14 13:34:38 +1100 |
commit | b63bbcfaee5aacfa3a5836c8496566872627415d (patch) | |
tree | 8213819a2d5bc87a8f0b5f72e845bc7958e455d9 /vimperator/locale/en-US | |
parent | 09ee974d239a0b1b3c00e97806bc80c2fced8ea0 (diff) | |
download | pentadactyl-b63bbcfaee5aacfa3a5836c8496566872627415d.tar.gz |
update :set examples in help now that it uses parseArgs()
Diffstat (limited to 'vimperator/locale/en-US')
-rw-r--r-- | vimperator/locale/en-US/autocommands.txt | 4 | ||||
-rw-r--r-- | vimperator/locale/en-US/options.txt | 10 |
2 files changed, 8 insertions, 6 deletions
diff --git a/vimperator/locale/en-US/autocommands.txt b/vimperator/locale/en-US/autocommands.txt index 9c43ae10..3fa2b43f 100644 --- a/vimperator/locale/en-US/autocommands.txt +++ b/vimperator/locale/en-US/autocommands.txt @@ -82,7 +82,7 @@ Enable _passthrough_ mode on *some* Google sites: Set the filetype to mail when editing email at Gmail: - :autocmd LocationChange .* :set editor=gvim -f - :autocmd LocationChange mail\.google\.com :set editor=gvim -f -c 'set ft=mail' + :autocmd LocationChange .* :set editor=gvim\ -f + :autocmd LocationChange mail\.google\.com :set editor="gvim -f -c 'set ft=mail'" // vim: set syntax=asciidoc: diff --git a/vimperator/locale/en-US/options.txt b/vimperator/locale/en-US/options.txt index 76649aef..0e40b6c5 100644 --- a/vimperator/locale/en-US/options.txt +++ b/vimperator/locale/en-US/options.txt @@ -689,8 +689,8 @@ ____ Change the title of the browser window. Vimperator changes the browser title from "Title of web page - Mozilla Firefox" to "Title of web page - Vimperator". + -If you don't like that, you can restore it with: [c]:set titlestring=Mozilla -Firefox[c]. +If you don't like that, you can restore it with: +[c]:set titlestring=Mozilla\ Firefox[c]. ____ @@ -698,7 +698,9 @@ ____ ||'usermode' 'um'|| boolean (default: off) ____ 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: "") ____ 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. ____ |