0
0
mirror of https://github.com/vim/vim.git synced 2025-10-01 04:54:07 -04:00

Update runtime files

This commit is contained in:
Bram Moolenaar
2019-11-13 23:04:29 +01:00
parent afe45b68a6
commit 574ee7bc12
24 changed files with 7748 additions and 6658 deletions

View File

@@ -1,4 +1,4 @@
*intro.txt* For Vim version 8.1. Last change: 2019 Aug 16
*intro.txt* For Vim version 8.1. Last change: 2019 Nov 11
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -234,7 +234,7 @@ Vim would never have become what it is now, without the help of these people!
Sung-Hyun Nam Work on multi-byte versions
Vince Negri Win32 GUI and generic console enhancements
Steve Oualline Author of the first Vim book |frombook|
Dominique Pelle valgrind reports and many fixes
Dominique Pelle Valgrind reports and many fixes
A.Politz Many bug reports and some fixes
George V. Reilly Win32 port, Win32 GUI start-off
Stephen Riehm bug collector

View File

@@ -1,4 +1,4 @@
*pi_netrw.txt* For Vim version 8.1. Last change: 2019 Nov 07
*pi_netrw.txt* For Vim version 8.1. Last change: 2019 Nov 10
------------------------------------------------
NETRW REFERENCE MANUAL by Charles E. Campbell
@@ -3512,7 +3512,7 @@ Example: Clear netrw's marked file list via a mapping on gu >
- Click "Add..."
- Set External Editor (adjust path as needed, include
the quotes and !.! at the end):
"c:\Program Files\Vim\vim70\gvim.exe" !.!
"c:\Program Files\Vim\vim881\gvim.exe" !.!
- Check that the filetype in the box below is
{asterisk}.{asterisk} (all files), or whatever types
you want (cec: change {asterisk} to * ; I had to
@@ -3762,8 +3762,8 @@ by obtaining a copy of the latest (often developmental) netrw at:
The <netrw.vim> script is typically installed on systems as something like:
>
/usr/local/share/vim/vim7x/plugin/netrwPlugin.vim
/usr/local/share/vim/vim7x/autoload/netrw.vim
/usr/local/share/vim/vim8x/plugin/netrwPlugin.vim
/usr/local/share/vim/vim8x/autoload/netrw.vim
(see output of :echo &rtp)
<
which is loaded automatically at startup (assuming :set nocp). If you

View File

@@ -1,4 +1,4 @@
*popup.txt* For Vim version 8.1. Last change: 2019 Nov 09
*popup.txt* For Vim version 8.1. Last change: 2019 Nov 11
VIM REFERENCE MANUAL by Bram Moolenaar

View File

@@ -1,4 +1,4 @@
*sign.txt* For Vim version 8.1. Last change: 2019 Sep 06
*sign.txt* For Vim version 8.1. Last change: 2019 Nov 12
VIM REFERENCE MANUAL by Gordon Prieur
@@ -48,8 +48,8 @@ When signs are defined for a file, Vim will automatically add a column of two
characters to display them in. When the last sign is unplaced the column
disappears again. This behavior can be changed with the 'signcolumn' option.
The color of the column is set with the SignColumn group |hl-SignColumn|.
Example to set the color: >
The color of the column is set with the SignColumn highlight group
|hl-SignColumn|. Example to set the color: >
:highlight SignColumn guibg=darkgrey
<
@@ -71,6 +71,8 @@ placed in the named group. The sign identifier is unique within a group. The
sign group allows Vim plugins to use unique signs without interfering with
other plugins using signs.
The group name "popupmenu" is used by popup windows where 'cursorline' is set.
*sign-priority*
Each placed sign is assigned a priority value. When multiple signs are placed
on the same line, the attributes of the sign with the highest priority is used

View File

@@ -1,4 +1,4 @@
*textprop.txt* For Vim version 8.1. Last change: 2019 Nov 09
*textprop.txt* For Vim version 8.1. Last change: 2019 Nov 12
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -48,8 +48,8 @@ Property Types ~
A text property normally has the name of a property type, which defines
how to highlight the text. The property type can have these entries:
"highlight" name of the highlight group to use
"combine" when TRUE the text property highlighting is combined
with any syntax highlighting; when omitted or FALSE the
"combine" when omitted or TRUE the text property highlighting is
combined with any syntax highlighting; when FALSE the
text property highlighting replaces the syntax
highlighting
"priority" when properties overlap, the one with the highest

View File

@@ -1,4 +1,4 @@
*todo.txt* For Vim version 8.1. Last change: 2019 Nov 10
*todo.txt* For Vim version 8.1. Last change: 2019 Nov 13
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -38,6 +38,12 @@ browser use: https://github.com/vim/vim/issues/1234
*known-bugs*
-------------------- Known bugs and current work -----------------------
Add a function to fetch the mouse_lnum and mouse_col values? Can be used in a
mapping. Remove setting v:mouse_lnum etc. from the popup filter, the values
are wrong.
Problem with cursor in wrong position: #5214
Don't use javascriptreact but javascript.jsx? #4830
Although there is a good argument against using ".jsx".

View File

@@ -1,4 +1,4 @@
*vi_diff.txt* For Vim version 8.1. Last change: 2019 Oct 12
*vi_diff.txt* For Vim version 8.1. Last change: 2019 Nov 12
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1323,6 +1323,11 @@ Set the $VIM_POSIX environment variable to have 'cpoptions' include the POSIX
flags when Vim starts up. This makes Vim run as POSIX as it can. That's
a bit different from being Vi compatible.
You can find the Posix specification for Vi here:
https://pubs.opengroup.org/onlinepubs/9699919799/utilities/vi.html
And the related Ex specification:
https://pubs.opengroup.org/onlinepubs/9699919799/utilities/ex.html
This is where Vim does not behave as POSIX specifies and why:
*posix-screen-size*