Skip to content

Commit e0720cb

Browse files
committed
Update runtime files.
1 parent b1e04fc commit e0720cb

14 files changed

Lines changed: 385 additions & 320 deletions

File tree

runtime/doc/eval.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*eval.txt* For Vim version 8.0. Last change: 2017 Mar 21
1+
*eval.txt* For Vim version 8.0. Last change: 2017 Mar 27
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -7874,6 +7874,7 @@ test_override({name}, {val}) *test_override()*
78747874

78757875
name effect when {val} is non-zero ~
78767876
redraw disable the redrawing() function
7877+
silent_mode enable silent mode (like using |-s| after |-e|)
78777878
char_avail disable the char_avail() function
78787879
ALL clear all overrides ({val} is not used)
78797880

runtime/doc/filetype.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*filetype.txt* For Vim version 8.0. Last change: 2017 Mar 21
1+
*filetype.txt* For Vim version 8.0. Last change: 2017 Mar 28
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -353,12 +353,12 @@ define yourself. There are a few ways to avoid this:
353353
You need to define your own mapping before the plugin is loaded (before
354354
editing a file of that type). The plugin will then skip installing the
355355
default mapping.
356-
356+
*no_mail_maps*
357357
3. Disable defining mappings for a specific filetype by setting a variable,
358358
which contains the name of the filetype. For the "mail" filetype this
359359
would be: >
360360
:let no_mail_maps = 1
361-
361+
< *no_plugin_maps*
362362
4. Disable defining mappings for all filetypes by setting a variable: >
363363
:let no_plugin_maps = 1
364364
<

runtime/doc/ft_rust.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
*ft_rust.txt* Filetype plugin for Rust
22

33
==============================================================================
4-
CONTENTS *rust* *ft-rust*
4+
CONTENTS *rust*
55

66
1. Introduction |rust-intro|
77
2. Settings |rust-settings|

runtime/doc/message.txt

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*message.txt* For Vim version 8.0. Last change: 2017 Jan 02
1+
*message.txt* For Vim version 8.0. Last change: 2017 Mar 25
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -768,6 +768,13 @@ Example: >
768768
You tried to execute a command that is neither an Ex command nor
769769
a user-defined command.
770770

771+
*E943* >
772+
Command table needs to be updated, run 'make cmdidxs'
773+
774+
This can only happen when changing the source code, when adding a command in
775+
src/ex_cmds.h. The lookup table then needs to be updated, by running: >
776+
make cmdidxs
777+
771778
==============================================================================
772779
3. Messages *messages*
773780

runtime/doc/options.txt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*options.txt* For Vim version 8.0. Last change: 2017 Mar 09
1+
*options.txt* For Vim version 8.0. Last change: 2017 Mar 22
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -6489,8 +6489,7 @@ A jump table for the options with a short description can be found at |Q_op|.
64896489
Flag passed to the shell to execute "!" and ":!" commands; e.g.,
64906490
"bash.exe -c ls" or "command.com /c dir". For the MS-DOS-like
64916491
systems, the default is set according to the value of 'shell', to
6492-
reduce the need to set this option by the user. It's not used for
6493-
OS/2 (EMX figures this out itself).
6492+
reduce the need to set this option by the user.
64946493
On Unix it can have more than one flag. Each white space separated
64956494
part is passed as an argument to the shell command.
64966495
See |option-backslash| about including spaces and backslashes.

runtime/doc/os_mac.txt

Lines changed: 21 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,12 @@ NOTE: This file is a bit outdated. You might find more useful info here:
1212
http://macvim.org/
1313

1414
1. Filename Convention |mac-filename|
15-
2. .vimrc an .vim files |mac-vimfile|
16-
3. FAQ |mac-faq|
17-
4. Known Lack |mac-lack|
18-
5. Mac Bug Report |mac-bug|
19-
6. Compiling Vim |mac-compile|
15+
2. .vimrc and .vim files |mac-vimfile|
16+
3. Standard mappings |mac-standard-mappings|
17+
4. FAQ |mac-faq|
18+
5. Known Lack |mac-lack|
19+
6. Mac Bug Report |mac-bug|
20+
7. Compiling Vim |mac-compile|
2021

2122
There was a Mac port for version 3.0 of Vim. Here are the first few lines
2223
from the old file:
@@ -72,7 +73,18 @@ the |'nocompatible'| option is set, otherwise it will only handle mac format
7273
files.
7374

7475
==============================================================================
75-
3. Mac FAQ *mac-faq*
76+
3. Standard mappings *mac-standard-mappings*
77+
78+
The following mappings are available for cut/copy/paste from/to clipboard.
79+
80+
key Normal Visual Insert Description ~
81+
Command-v "*P "-d"*P <C-R>* paste text *<D-v>*
82+
Command-c "*y copy Visual text *<D-c>*
83+
Command-x "*d cut Visual text *<D-x>*
84+
Backspace "*d cut Visual text
85+
86+
==============================================================================
87+
4. Mac FAQ *mac-faq*
7688

7789
On the internet: http://macvim.org/OSX/index.php#FAQ
7890

@@ -95,13 +107,13 @@ A: The following trick works with most shells. Put it in your vimrc file.
95107
let $PATH = matchstr(s:path, 'VIMPATH\zs.\{-}\ze\n')
96108
97109
==============================================================================
98-
4. Mac Lack *mac-lack*
110+
5. Mac Lack *mac-lack*
99111

100112
In a terminal CTRL-^ needs to be entered as Shift-Control-6. CTRL-@ as
101113
Shift-Control-2.
102114

103115
==============================================================================
104-
5. Mac Bug Report *mac-bug*
116+
6. Mac Bug Report *mac-bug*
105117

106118
When reporting any Mac specific bug or feature change, please use the vim-mac
107119
maillist |vim-mac|. However, you need to be subscribed. An alternative is to
@@ -110,7 +122,7 @@ send a message to the current MacVim maintainers:
110122
111123

112124
==============================================================================
113-
6. Compiling Vim *mac-compile*
125+
7. Compiling Vim *mac-compile*
114126

115127
See the file "src/INSTALLmac.txt" that comes with the source files.
116128

runtime/doc/os_win32.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*os_win32.txt* For Vim version 8.0. Last change: 2016 Oct 12
1+
*os_win32.txt* For Vim version 8.0. Last change: 2017 Mar 21
22

33

44
VIM REFERENCE MANUAL by George Reilly

runtime/doc/tags

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3277,6 +3277,9 @@ $VIM_POSIX vi_diff.txt /*$VIM_POSIX*
32773277
<Char> map.txt /*<Char>*
32783278
<CursorHold> autocmd.txt /*<CursorHold>*
32793279
<D- intro.txt /*<D-*
3280+
<D-c> os_mac.txt /*<D-c>*
3281+
<D-v> os_mac.txt /*<D-v>*
3282+
<D-x> os_mac.txt /*<D-x>*
32803283
<Del> change.txt /*<Del>*
32813284
<Down> motion.txt /*<Down>*
32823285
<Drop> change.txt /*<Drop>*
@@ -4514,6 +4517,7 @@ E94 windows.txt /*E94*
45144517
E940 eval.txt /*E940*
45154518
E941 eval.txt /*E941*
45164519
E942 eval.txt /*E942*
4520+
E943 message.txt /*E943*
45174521
E95 message.txt /*E95*
45184522
E96 diff.txt /*E96*
45194523
E97 diff.txt /*E97*
@@ -6139,7 +6143,6 @@ ft-rst-syntax syntax.txt /*ft-rst-syntax*
61396143
ft-ruby-omni insert.txt /*ft-ruby-omni*
61406144
ft-ruby-syntax syntax.txt /*ft-ruby-syntax*
61416145
ft-rust filetype.txt /*ft-rust*
6142-
ft-rust ft_rust.txt /*ft-rust*
61436146
ft-scheme-syntax syntax.txt /*ft-scheme-syntax*
61446147
ft-sdl-syntax syntax.txt /*ft-sdl-syntax*
61456148
ft-sed-syntax syntax.txt /*ft-sed-syntax*
@@ -7179,6 +7182,7 @@ mac-compile os_mac.txt /*mac-compile*
71797182
mac-faq os_mac.txt /*mac-faq*
71807183
mac-filename os_mac.txt /*mac-filename*
71817184
mac-lack os_mac.txt /*mac-lack*
7185+
mac-standard-mappings os_mac.txt /*mac-standard-mappings*
71827186
mac-vimfile os_mac.txt /*mac-vimfile*
71837187
macintosh os_mac.txt /*macintosh*
71847188
macro map.txt /*macro*
@@ -7689,6 +7693,8 @@ nice todo.txt /*nice*
76897693
no-eval-feature eval.txt /*no-eval-feature*
76907694
no-type-checking eval.txt /*no-type-checking*
76917695
no_buffers_menu gui.txt /*no_buffers_menu*
7696+
no_mail_maps filetype.txt /*no_mail_maps*
7697+
no_plugin_maps filetype.txt /*no_plugin_maps*
76927698
non-greedy pattern.txt /*non-greedy*
76937699
non-zero-arg eval.txt /*non-zero-arg*
76947700
none-variable eval.txt /*none-variable*

runtime/doc/todo.txt

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*todo.txt* For Vim version 8.0. Last change: 2017 Mar 21
1+
*todo.txt* For Vim version 8.0. Last change: 2017 Mar 29
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -110,8 +110,8 @@ manager. Problem with Motif?
110110

111111
Memory leak in test97? The string is actually freed. Weird.
112112

113-
Patch to make "start" work better: Use ShellExecute in !start (Katsuya Hino,
114-
#1570)
113+
Patch for deleting the quickfix lists and a test for it. (Yegappan, 2017 Mar
114+
21)
115115

116116
Add a toolbar in the terminal. Can be global, above all windows, or specific
117117
for one window.
@@ -122,6 +122,8 @@ Use tb_set(winid, [{'text': 'stop', 'cb': callback, 'hi': 'Green'}])
122122
json_encode(): should convert to utf-8. (Nikolai Pavlov, 2016 Jan 23)
123123
What if there is an invalid character?
124124

125+
Patch for broken foldtext. (Christian 2017 Mar 22, #1567, 2nd one)
126+
125127
Json string with trailing \u should be an error. (Lcd)
126128

127129
On MS-Windows with 'clipboard' set to "unnamed" this doesn't work to double
@@ -148,6 +150,9 @@ Another example in #1309
148150
Patch to change all use of &sw to shiftwidth(). (Tyru, 2017 Feb 19)
149151
Wait until maintainers integrate it.
150152

153+
Patch to change mb_char2len() to utf_char2len(c) when known to use UTF.
154+
(Dominique, 2017 Mar 21, #1582)
155+
151156
Completion for user-defined commands does not work if a few characters were
152157
already typed. (Dominique, 2017 Jan 26)
153158

@@ -157,6 +162,9 @@ when writing viminfo (and the delete was the most recent action). #1339
157162
Suggestion to improve pt-br spell checking. (Marcelo D Montu, 2016 Dec 15,
158163
#1330)
159164

165+
Patch to Modernize GtkForm Implmentation. (Kazuki Kuriyama, 2017 Mar 26)
166+
Any objections?
167+
160168
Error in test_startup_utf8 on Solaris. (Danek Duvall, 2016 Aug 17)
161169

162170
Completion for :!cmd shows each match twice. #1435
@@ -341,14 +349,6 @@ Jul 25, #948)
341349
Patch to fix wrong encoding of error message on Cygwin/MSYS terminal.
342350
(Ken Takata, 2016 Oct 4)
343351

344-
Patch to introduce 'cmdencoding'. (Ken Takata, Aug 18?)
345-
Better help Aug 19.
346-
Problem: applies to too many commands, such as :cbuffer.
347-
Updated patch with three options, 2016 Sep 8.
348-
Win32: When running ":make" and 'encoding' differs from the system locale,
349-
the output should be converted. Esp. when 'encoding' is "utf-8". (Yongwei
350-
Wu) Should we use 'termencoding' for this?
351-
352352
Patch to add 'systemencoding', convert between 'encoding' and this for file
353353
names, shell commands and the like. (Kikuchan, 2010 Oct 14)
354354
Assume the system converts between the actual encoding of the filesystem to
@@ -421,7 +421,7 @@ When doing "vi buf.md" a BufNew autocommand for *.md is not triggered.
421421
Because of using the initial buffer? (Dun Peal, 2016 May 12)
422422

423423
Patch to add the :bvimgrep command. (Christian Brabandt, 2014 Nov 12)
424-
Updated 2016 Jun 10, #858
424+
Updated 2016 Jun 10, #858 Update 2017 Mar 28: use <buffer>
425425

426426
Add redrawtabline command. (Naruhiko Nishino, 2016 Jun 11)
427427

runtime/doc/usr_41.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*usr_41.txt* For Vim version 8.0. Last change: 2017 Mar 18
1+
*usr_41.txt* For Vim version 8.0. Last change: 2017 Mar 28
22

33
VIM USER MANUAL - by Bram Moolenaar
44

@@ -2277,8 +2277,8 @@ plugin for the mail filetype: >
22772277
endif
22782278
22792279
Two global variables are used:
2280-
no_plugin_maps disables mappings for all filetype plugins
2281-
no_mail_maps disables mappings for a specific filetype
2280+
|no_plugin_maps| disables mappings for all filetype plugins
2281+
|no_mail_maps| disables mappings for the "mail" filetype
22822282

22832283

22842284
USER COMMANDS

0 commit comments

Comments
 (0)