1
0
forked from aniani/vim

updated for version 7.0d03

This commit is contained in:
Bram Moolenaar
2006-04-13 20:37:35 +00:00
parent 18144c8423
commit 7fc904b610
23 changed files with 656 additions and 512 deletions

View File

@@ -1,4 +1,4 @@
*pi_netrw.txt* For Vim version 7.0d. Last change: Apr 06, 2006
*pi_netrw.txt* For Vim version 7.0d. Last change: Apr 12, 2006
VIM REFERENCE MANUAL by Charles E. Campbell, Jr.
@@ -847,11 +847,10 @@ NETRW BROWSER VARIABLES *netrw-browse-var*
*g:netrw_winsize* specify initial size of new o/v windows
default: ""
*g:DrChipTopLvlMenu* This variable specifies the top level
submenu name; by default, its "DrChip.".
If you wish to change this, do so in your
.vimrc. It affects all of my plugins which
have menus.
*g:NetrwTopLvlMenu* This variable specifies the top level
menu name; by default, its "Netrw.". If
you wish to change this, do so in your
.vimrc.
INTRODUCTION TO DIRECTORY BROWSING *netrw-browse-intro*
@@ -1448,6 +1447,7 @@ which is loaded automatically at startup (assuming :set nocp).
==============================================================================
11. History *netrw-history* {{{1
v87: * bug fix -- menus were partially disappearing
v85: * bug fix -- missing an endif
* bug fix -- handles spaces in names and directories when using
ftp-based browsing

View File

@@ -2316,22 +2316,25 @@ If none of these cases pertain, then the first line of the file is examined
(ex. /bin/sh /bin/ksh /bin/bash). If the first line specifies a shelltype,
then that shelltype is used. However some files (ex. .profile) are known to
be shell files but the type is not apparent. Furthermore, on many systems
sh is symbolically linked to "bash" (linux) or "ksh" (posix).
sh is symbolically linked to "bash" (Linux, Windows+cygwin) or "ksh" (Posix).
One may specify a global default by instantiating one of the following three
variables in your <.vimrc>:
ksh: >
let is_kornshell = 1
let g:is_kornshell = 1
< posix: (using this is the same as setting is_kornshell to 1) >
let g:is_posix = 1
< bash: >
let is_bash = 1
< sh: >
let is_sh = 1
let g:is_bash = 1
< sh: (default) Borne shell >
let g:is_sh = 1
If there's no "#! ..." line, and the user hasn't availed himself/herself of a
default sh.vim syntax setting as just shown, then syntax/sh.vim will assume
the Borne shell syntax. No need to quote RFCs or market penetration
statistics in error reports, please.
statistics in error reports, please -- just select the default version of
the sh your system uses in your <.vimrc>.
If, in your <.vimrc>, you set >
let g:sh_fold_enabled= 1

View File

@@ -1,4 +1,4 @@
*tabpage.txt* For Vim version 7.0d. Last change: 2006 Apr 09
*tabpage.txt* For Vim version 7.0d. Last change: 2006 Apr 13
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -124,11 +124,12 @@ next tab page. |'tabline'|
:tabn[ext] *:tabn* *:tabnext* *gt*
gt *CTRL-<PageDown>* *<C-PageDown>*
<C-PageDown> Go to the next tab page. Wraps around from the last to the
<C-PageDown> *i_CTRL-<PageDown>* *i_<C-PageDown>*
Go to the next tab page. Wraps around from the last to the
first one.
:tabn[ext] {count}
{count}gt *CTRL-<PageUp>* *<C-PageUp>*
:tabn[ext] {count} *CTRL-<PageUp>* *<C-PageUp>*
{count}gt *i_CTRL-<PageUp>* *i_<C-PageUp>*
<C-PageUp> Go to tab page {count}. The first tab page has number one.

View File

@@ -5367,7 +5367,7 @@ g, motion.txt /*g,*
g- undo.txt /*g-*
g0 motion.txt /*g0*
g8 various.txt /*g8*
g:DrChipTopLvlMenu pi_netrw.txt /*g:DrChipTopLvlMenu*
g:NetrwTopLvlMenu pi_netrw.txt /*g:NetrwTopLvlMenu*
g:netrw_alto pi_netrw.txt /*g:netrw_alto*
g:netrw_altv pi_netrw.txt /*g:netrw_altv*
g:netrw_browse_split pi_netrw.txt /*g:netrw_browse_split*
@@ -5730,6 +5730,8 @@ i_<BS> insert.txt /*i_<BS>*
i_<C-End> insert.txt /*i_<C-End>*
i_<C-Home> insert.txt /*i_<C-Home>*
i_<C-Left> insert.txt /*i_<C-Left>*
i_<C-PageDown> tabpage.txt /*i_<C-PageDown>*
i_<C-PageUp> tabpage.txt /*i_<C-PageUp>*
i_<C-Right> insert.txt /*i_<C-Right>*
i_<CR> insert.txt /*i_<CR>*
i_<Del> insert.txt /*i_<Del>*
@@ -5757,6 +5759,8 @@ i_<S-Up> insert.txt /*i_<S-Up>*
i_<Tab> insert.txt /*i_<Tab>*
i_<Up> insert.txt /*i_<Up>*
i_BS insert.txt /*i_BS*
i_CTRL-<PageDown> tabpage.txt /*i_CTRL-<PageDown>*
i_CTRL-<PageUp> tabpage.txt /*i_CTRL-<PageUp>*
i_CTRL-@ insert.txt /*i_CTRL-@*
i_CTRL-A insert.txt /*i_CTRL-A*
i_CTRL-B-gone version5.txt /*i_CTRL-B-gone*

View File

@@ -1,4 +1,4 @@
*todo.txt* For Vim version 7.0d. Last change: 2006 Apr 12
*todo.txt* For Vim version 7.0d. Last change: 2006 Apr 13
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -32,6 +32,8 @@ be worked on, but only if you sponsor Vim development. See |sponsor|.
Do some of the 'cindent' bugs below.
Should a[:5] not give an error for a list with 4 items?
Add more tests for all new functionality in Vim 7. Especially new functions.
Win32: Describe how to do debugging. (George Reilly)
@@ -2236,21 +2238,6 @@ Insert mode:
'cindent', 'smartindent':
8 Using "+" part of 'cinoptions' where it's not expected (Alexei Alexandrov):
if (a)
{
} else
asdf;
8 Wrong indent for ":" after a method with line break in arguments:
Foo::Foo (int one,
int two)
: something(4)
{}
8 Wrong indent for ":" after a method with multiple lines:
Foo::Foo (int one, int two)
: something(4),
somethingelse(3)
{}
9 Too much indent for "lulu": (Uwe Zeisberger)
int main ()
{

View File

@@ -1,4 +1,4 @@
*version7.txt* For Vim version 7.0d. Last change: 2006 Apr 12
*version7.txt* For Vim version 7.0d. Last change: 2006 Apr 13
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -2465,5 +2465,15 @@ When 'guitablabel' is set the effect wasn't visible right away.
Fixed a few 'cindent' errors.
When completing menu names, e.g., after ":emenu", don't sort the entries but
keep them in the original order.
Fixed a crash when editing a directory in diff mode. Don't trigger
autocommands when executing the diff command.
Getting a keystroke could get stuck if 'encoding' is a multi-byte encoding and
typing a special key.
When 'foldignore' is set the folds were not updated right away.
vim:tw=78:ts=8:ft=help:norl: