Skip to content

Commit dae8d21

Browse files
committed
Updated runtime files
1 parent 3f2a5d8 commit dae8d21

File tree

14 files changed

+44
-75
lines changed

14 files changed

+44
-75
lines changed

runtime/doc/eval.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2700,7 +2700,7 @@ ch_close({channel}) *ch_close()*
27002700
ch_evalexpr({channel}, {expr} [, {options}]) *ch_evalexpr()*
27012701
Send {expr} over {channel}. The {expr} is encoded
27022702
according to the type of channel. The function cannot be used
2703-
with a raw channel. See |channel-use|. *E912*
2703+
with a raw channel. See |channel-use|.
27042704
*E917*
27052705
{options} must be a Dictionary. It must not have a "callback"
27062706
entry.
@@ -2804,7 +2804,7 @@ ch_readraw({channel} [, {options}]) *ch_readraw()*
28042804
ch_sendexpr({channel}, {expr} [, {options}]) *ch_sendexpr()*
28052805
Send {expr} over {channel}. The {expr} is encoded
28062806
according to the type of channel. The function cannot be used
2807-
with a raw channel. See |channel-use|. *E912*
2807+
with a raw channel. See |channel-use|. *E912*
28082808

28092809
{options} must be a Dictionary. The "callback" item is a
28102810
Funcref or the name of a function it is invoked when the

runtime/doc/help.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*help.txt* For Vim version 7.4. Last change: 2016 Feb 22
1+
*help.txt* For Vim version 7.4. Last change: 2016 Feb 27
22

33
VIM - main help file
44
k
@@ -164,7 +164,6 @@ Interfaces ~
164164
|if_mzsch.txt| MzScheme interface
165165
|if_perl.txt| Perl interface
166166
|if_pyth.txt| Python interface
167-
|if_sniff.txt| SNiFF+ interface
168167
|if_tcl.txt| Tcl interface
169168
|if_ole.txt| OLE automation interface for Win32
170169
|if_ruby.txt| Ruby interface

runtime/doc/index.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*index.txt* For Vim version 7.4. Last change: 2016 Feb 24
1+
*index.txt* For Vim version 7.4. Last change: 2016 Feb 27
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1499,7 +1499,6 @@ tag command action ~
14991499
|:smile| :smi[le] make the user happy
15001500
|:snext| :sn[ext] split window and go to next file in the
15011501
argument list
1502-
|:sniff| :sni[ff] send request to sniff
15031502
|:snomagic| :sno[magic] :substitute with 'nomagic'
15041503
|:snoremap| :snor[emap] like ":noremap" but for Select mode
15051504
|:snoremenu| :snoreme[nu] like ":noremenu" but for Select mode

runtime/doc/message.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*message.txt* For Vim version 7.4. Last change: 2013 Feb 23
1+
*message.txt* For Vim version 7.4. Last change: 2016 Feb 27
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -476,8 +476,6 @@ in memory, you can reduce that with these options:
476476
helps for a change that affects all lines.
477477
- 'undoreload' Set to zero to disable.
478478

479-
Also see |msdos-limitations|.
480-
481479
*E339* >
482480
Pattern too long
483481

runtime/doc/os_390.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*os_390.txt* For Vim version 7.4. Last change: 2010 May 30
1+
*os_390.txt* For Vim version 7.4. Last change: 2016 Feb 27
22

33

44
VIM REFERENCE MANUAL by Ralf Schandl
@@ -108,7 +108,6 @@ Never tested:
108108
- Langmap (|'langmap'|)
109109
- Python support (|Python|)
110110
- Right-to-left mode (|'rightleft'|)
111-
- SNiFF+ interface (|sniff|)
112111
- TCL interface (|tcl|)
113112
...
114113

runtime/doc/repeat.txt

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*repeat.txt* For Vim version 7.4. Last change: 2016 Feb 24
1+
*repeat.txt* For Vim version 7.4. Last change: 2016 Feb 26
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -221,6 +221,10 @@ For writing a Vim script, see chapter 41 of the user manual |usr_41.txt|.
221221
'runtimepath'. And the directory found is added to
222222
'runtimepath'.
223223

224+
If you have a directory under 'packpath' that doesn't
225+
actually have a plugin file, just create an empty one.
226+
This will still add the directory to 'runtimepath'.
227+
224228
Note that {name} is the directory name, not the name
225229
of the .vim file. If the "{name}/plugin" directory
226230
contains more than one file they are all sourced.
@@ -564,7 +568,7 @@ Additionally, these commands can be used:
564568
About the additional commands in debug mode:
565569
- There is no command-line completion for them, you get the completion for the
566570
normal Ex commands only.
567-
- You can shorten them, up to a single character, unless more then one command
571+
- You can shorten them, up to a single character, unless more than one command
568572
starts with the same letter. "f" stands for "finish", use "fr" for "frame".
569573
- Hitting <CR> will repeat the previous one. When doing another command, this
570574
is reset (because it's not clear what you want to repeat).

runtime/doc/starting.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*starting.txt* For Vim version 7.4. Last change: 2016 Feb 21
1+
*starting.txt* For Vim version 7.4. Last change: 2016 Feb 27
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -414,9 +414,10 @@ a slash. Thus "-R" means recovery and "-/R" readonly.
414414
not needed, because Vim will be able to find out what type
415415
of terminal you are using. (See |terminal-info|.) {not in Vi}
416416

417+
*--not-a-term*
417418
--not-a-term Tells Vim that the user knows that the input and/or output is
418419
not connected to a terminal. This will avoid the warning and
419-
the two second delay that would happen.
420+
the two second delay that would happen. {not in Vi}
420421

421422
*-d*
422423
-d Start in diff mode, like |vimdiff|.
@@ -1152,7 +1153,7 @@ There are several ways to exit Vim:
11521153
- Use `:cquit`. Also when there are changes.
11531154

11541155
When using `:cquit` or when there was an error message Vim exits with exit
1155-
code 1. Errors can be avoide by using `:silent!`.
1156+
code 1. Errors can be avoided by using `:silent!`.
11561157

11571158
==============================================================================
11581159
8. Saving settings *save-settings*

runtime/doc/syntax.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*syntax.txt* For Vim version 7.4. Last change: 2016 Feb 24
1+
*syntax.txt* For Vim version 7.4. Last change: 2016 Feb 25
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -2890,7 +2890,7 @@ You may wish to embed languages into sh. I'll give an example courtesy of
28902890
Lorance Stinson on how to do this with awk as an example. Put the following
28912891
file into $HOME/.vim/after/syntax/sh/awkembed.vim: >
28922892
2893-
" AWK Embedding: {{{1
2893+
" AWK Embedding:
28942894
" ==============
28952895
" Shamelessly ripped from aspperl.vim by Aaron Hope.
28962896
if exists("b:current_syntax")

runtime/doc/tags

Lines changed: 5 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1272,7 +1272,6 @@ $VIM_POSIX vi_diff.txt /*$VIM_POSIX*
12721272
+scrollbind various.txt /*+scrollbind*
12731273
+signs various.txt /*+signs*
12741274
+smartindent various.txt /*+smartindent*
1275-
+sniff various.txt /*+sniff*
12761275
+startuptime various.txt /*+startuptime*
12771276
+statusline various.txt /*+statusline*
12781277
+sun_workshop various.txt /*+sun_workshop*
@@ -1323,6 +1322,7 @@ $VIM_POSIX vi_diff.txt /*$VIM_POSIX*
13231322
--literal starting.txt /*--literal*
13241323
--nofork starting.txt /*--nofork*
13251324
--noplugin starting.txt /*--noplugin*
1325+
--not-a-term starting.txt /*--not-a-term*
13261326
--remote remote.txt /*--remote*
13271327
--remote-expr remote.txt /*--remote-expr*
13281328
--remote-send remote.txt /*--remote-send*
@@ -2860,8 +2860,6 @@ $VIM_POSIX vi_diff.txt /*$VIM_POSIX*
28602860
:smile index.txt /*:smile*
28612861
:sn windows.txt /*:sn*
28622862
:snext windows.txt /*:snext*
2863-
:sni if_sniff.txt /*:sni*
2864-
:sniff if_sniff.txt /*:sniff*
28652863
:sno change.txt /*:sno*
28662864
:snomagic change.txt /*:snomagic*
28672865
:snor map.txt /*:snor*
@@ -3568,7 +3566,6 @@ D change.txt /*D*
35683566
DOS os_dos.txt /*DOS*
35693567
DOS-format editing.txt /*DOS-format*
35703568
DOS-format-write editing.txt /*DOS-format-write*
3571-
DPMI os_msdos.txt /*DPMI*
35723569
Dictionaries eval.txt /*Dictionaries*
35733570
Dictionary eval.txt /*Dictionary*
35743571
Dictionary-function eval.txt /*Dictionary-function*
@@ -3761,12 +3758,7 @@ E270 if_ruby.txt /*E270*
37613758
E271 if_ruby.txt /*E271*
37623759
E272 if_ruby.txt /*E272*
37633760
E273 if_ruby.txt /*E273*
3764-
E274 if_sniff.txt /*E274*
3765-
E275 if_sniff.txt /*E275*
3766-
E276 if_sniff.txt /*E276*
37673761
E277 remote.txt /*E277*
3768-
E278 if_sniff.txt /*E278*
3769-
E279 if_sniff.txt /*E279*
37703762
E28 syntax.txt /*E28*
37713763
E280 if_tcl.txt /*E280*
37723764
E281 if_tcl.txt /*E281*
@@ -3949,11 +3941,6 @@ E447 editing.txt /*E447*
39493941
E448 various.txt /*E448*
39503942
E449 eval.txt /*E449*
39513943
E45 message.txt /*E45*
3952-
E450 os_msdos.txt /*E450*
3953-
E451 os_msdos.txt /*E451*
3954-
E452 os_msdos.txt /*E452*
3955-
E453 os_msdos.txt /*E453*
3956-
E454 os_msdos.txt /*E454*
39573944
E455 print.txt /*E455*
39583945
E456 print.txt /*E456*
39593946
E457 print.txt /*E457*
@@ -4451,8 +4438,8 @@ E911 eval.txt /*E911*
44514438
E912 eval.txt /*E912*
44524439
E913 eval.txt /*E913*
44534440
E914 eval.txt /*E914*
4454-
E915 channel.txt /*E915*
44554441
E916 eval.txt /*E916*
4442+
E917 eval.txt /*E917*
44564443
E92 message.txt /*E92*
44574444
E93 windows.txt /*E93*
44584445
E94 windows.txt /*E94*
@@ -5176,6 +5163,9 @@ cc change.txt /*cc*
51765163
ceil() eval.txt /*ceil()*
51775164
ch.vim syntax.txt /*ch.vim*
51785165
ch_close() eval.txt /*ch_close()*
5166+
ch_evalexpr() eval.txt /*ch_evalexpr()*
5167+
ch_evalraw() eval.txt /*ch_evalraw()*
5168+
ch_getbufnr() eval.txt /*ch_getbufnr()*
51795169
ch_getjob() eval.txt /*ch_getjob()*
51805170
ch_log() eval.txt /*ch_log()*
51815171
ch_logfile() eval.txt /*ch_logfile()*
@@ -5611,8 +5601,6 @@ dos-locations os_dos.txt /*dos-locations*
56115601
dos-shell os_dos.txt /*dos-shell*
56125602
dos-standard-mappings os_dos.txt /*dos-standard-mappings*
56135603
dos-temp-files os_dos.txt /*dos-temp-files*
5614-
dos16 os_msdos.txt /*dos16*
5615-
dos32 os_msdos.txt /*dos32*
56165604
dosbatch.vim syntax.txt /*dosbatch.vim*
56175605
double-click term.txt /*double-click*
56185606
download intro.txt /*download*
@@ -7115,7 +7103,6 @@ message.txt message.txt /*message.txt*
71157103
messages message.txt /*messages*
71167104
meta intro.txt /*meta*
71177105
min() eval.txt /*min()*
7118-
minimal-features os_msdos.txt /*minimal-features*
71197106
missing-options vi_diff.txt /*missing-options*
71207107
mkdir() eval.txt /*mkdir()*
71217108
mlang.txt mlang.txt /*mlang.txt*
@@ -7146,18 +7133,7 @@ mouse_win-variable eval.txt /*mouse_win-variable*
71467133
movement intro.txt /*movement*
71477134
ms-dos os_msdos.txt /*ms-dos*
71487135
msdos os_msdos.txt /*msdos*
7149-
msdos-arrows os_msdos.txt /*msdos-arrows*
7150-
msdos-clipboard-limits os_msdos.txt /*msdos-clipboard-limits*
7151-
msdos-compiling os_msdos.txt /*msdos-compiling*
7152-
msdos-copy-paste os_msdos.txt /*msdos-copy-paste*
7153-
msdos-fname-extensions os_msdos.txt /*msdos-fname-extensions*
7154-
msdos-limitations os_msdos.txt /*msdos-limitations*
7155-
msdos-linked-files os_msdos.txt /*msdos-linked-files*
7156-
msdos-longfname os_msdos.txt /*msdos-longfname*
71577136
msdos-mode gui_w32.txt /*msdos-mode*
7158-
msdos-problems os_msdos.txt /*msdos-problems*
7159-
msdos-termcap os_msdos.txt /*msdos-termcap*
7160-
msdos-versions os_msdos.txt /*msdos-versions*
71617137
msql.vim syntax.txt /*msql.vim*
71627138
mswin.vim gui_w32.txt /*mswin.vim*
71637139
multi-byte mbyte.txt /*multi-byte*
@@ -8044,10 +8020,6 @@ slice eval.txt /*slice*
80448020
slow-fast-terminal term.txt /*slow-fast-terminal*
80458021
slow-start starting.txt /*slow-start*
80468022
slow-terminal term.txt /*slow-terminal*
8047-
sniff if_sniff.txt /*sniff*
8048-
sniff-commands if_sniff.txt /*sniff-commands*
8049-
sniff-compiling if_sniff.txt /*sniff-compiling*
8050-
sniff-intro if_sniff.txt /*sniff-intro*
80518023
socket-interface channel.txt /*socket-interface*
80528024
sort() eval.txt /*sort()*
80538025
sorting change.txt /*sorting*

runtime/doc/todo.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*todo.txt* For Vim version 7.4. Last change: 2016 Feb 24
1+
*todo.txt* For Vim version 7.4. Last change: 2016 Feb 27
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -35,10 +35,6 @@ not be repeated below, unless there is extra information.
3535
-------------------- Known bugs and current work -----------------------
3636

3737
+channel:
38-
- don't free channel if there are callbacks.
39-
netbeans channel leaks?
40-
- job_stop() on MS-Windows: "term" should probably do the same as "kill".
41-
- Make JSON encode and decode NaN and Infinity.
4238
- A callback on ch_sendraw() should be put at the end of the list of callback
4339
handlers. When a message arrives invoke the first one and remove it.
4440
- implement TODO items in ":help channel":
@@ -72,11 +68,14 @@ not be repeated below, unless there is extra information.
7268
- Add a test where ["eval","getline(123)"] gets a line with special
7369
characters (NUL, 0x80, etc.). Check that it isn't garbled.
7470
- make sure errors lead to a useful error msg. ["ex","foobar"]
75-
- json: implement UTF-16 surrogate pair.
7671
- For connection to server, a "keep open" flag would be useful. Retry
7772
connecting in the main loop with zero timeout.
7873

79-
Remove the sniff interface? Looks like it's dead.
74+
For Win32 isinf() should be inline. (ZyX)
75+
76+
Add ":packadd"? Like :loadplugin but only adds the dir to 'runtimepath'.
77+
78+
emoji patch from Yasuhiro Matsumoto.
8079

8180
More plugin support:
8281
- Have a way to install a callback from the main loop. Called every second or
@@ -169,6 +168,9 @@ Feb 9)
169168
Patch to put undo options together in undo window.
170169
(Gary Johnson, 2016 Jan 28)
171170

171+
Patch to have better check for {action} argument of setqflist().
172+
Nikolai Pavlov, Feb 25, #661. Can be even more strict.
173+
172174
Patch for clearing history. (Yegappan Lakshmanan, 2016 Jan 31, second message
173175
has tests)
174176

@@ -1563,8 +1565,6 @@ still delete them. Also convert all buffer file names?
15631565

15641566
Update src/testdir/main.aap.
15651567

1566-
"vim -c 'sniff connect'" hangs Vim. (Dominique Pelle, 2008 Dec 7)
1567-
15681568
Something wrong with session that has "cd" commands and "badd", in such a way
15691569
that Vim doesn't find the edited file in the buffer list, causing the
15701570
ATTENTION message? (Tony Mechelynck, 2008 Dec 1)

0 commit comments

Comments
 (0)