Skip to content

Commit 4af39e3

Browse files
committed
{channel,filetype,motion,quickfix,windows}.txt: Update Vim 8.2.3779
1 parent 8995db4 commit 4af39e3

File tree

5 files changed

+23
-15
lines changed

5 files changed

+23
-15
lines changed

en/channel.txt

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*channel.txt* For Vim version 8.2. Last change: 2020 Oct 17
1+
*channel.txt* For Vim version 8.2. Last change: 2021 Nov 28
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -101,7 +101,7 @@ Instead of giving a callback with every send call, it can also be specified
101101
when opening the channel: >
102102
call ch_close(channel)
103103
let channel = ch_open('localhost:8765', {'callback': "MyHandler"})
104-
call ch_sendexpr(channel, 'hello!')
104+
call ch_sendexpr(channel, 'hello channel!')
105105
106106
When trying out channels it's useful to see what is going on. You can tell
107107
Vim to write lines in log file: >
@@ -132,8 +132,9 @@ When using an IPv6 address, enclose it within square brackets. E.g.,
132132
"raw" - Use raw messages
133133
*channel-callback* *E921*
134134
"callback" A function that is called when a message is received that is
135-
not handled otherwise. It gets two arguments: the channel
136-
and the received message. Example: >
135+
not handled otherwise (e.g. a JSON message with ID zero). It
136+
gets two arguments: the channel and the received message.
137+
Example: >
137138
func Handle(channel, msg)
138139
echo 'Received: ' . a:msg
139140
endfunc

en/filetype.txt

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -139,18 +139,19 @@ can be used to overrule the filetype used for certain extensions:
139139

140140
file name variable ~
141141
*.asa g:filetype_asa |ft-aspvbs-syntax| |ft-aspperl-syntax|
142-
*.asp g:filetype_asp |ft-aspvbs-syntax| |ft-aspperl-syntax|
143142
*.asm g:asmsyntax |ft-asm-syntax|
144-
*.prg g:filetype_prg
145-
*.pl g:filetype_pl
146-
*.inc g:filetype_inc
147-
*.w g:filetype_w |ft-cweb-syntax|
143+
*.asp g:filetype_asp |ft-aspvbs-syntax| |ft-aspperl-syntax|
144+
*.fs g:filetype_fs |ft-forth-syntax|
148145
*.i g:filetype_i |ft-progress-syntax|
146+
*.inc g:filetype_inc
149147
*.m g:filetype_m |ft-mathematica-syntax|
150148
*.p g:filetype_p |ft-pascal-syntax|
149+
*.pl g:filetype_pl
151150
*.pp g:filetype_pp |ft-pascal-syntax|
151+
*.prg g:filetype_prg
152152
*.sh g:bash_is_sh |ft-sh-syntax|
153153
*.tex g:tex_flavor |ft-tex-plugin|
154+
*.w g:filetype_w |ft-cweb-syntax|
154155

155156
*filetype-ignore*
156157
To avoid that certain files are being inspected, the g:ft_ignore_pat variable

en/motion.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*motion.txt* For Vim version 8.2. Last change: 2021 Jun 13
1+
*motion.txt* For Vim version 8.2. Last change: 2021 Dec 04
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -386,6 +386,8 @@ w [count] words forward. |exclusive| motion.
386386

387387
<C-Right> or *<C-Right>* *W*
388388
W [count] WORDS forward. |exclusive| motion.
389+
If <C-Right> does not work, check out
390+
|arrow_modifiers|.
389391

390392
*e*
391393
e Forward to the end of word [count] |inclusive|.
@@ -400,6 +402,8 @@ b [count] words backward. |exclusive| motion.
400402

401403
<C-Left> or *<C-Left>* *B*
402404
B [count] WORDS backward. |exclusive| motion.
405+
If <C-Left> does not work, check out
406+
|arrow_modifiers|.
403407

404408
*ge*
405409
ge Backward to the end of word [count] |inclusive|.

en/quickfix.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*quickfix.txt* For Vim version 8.2. Last change: 2021 May 22
1+
*quickfix.txt* For Vim version 8.2. Last change: 2021 Dec 03
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -856,9 +856,9 @@ lists. They set one of the existing error lists as the current one.
856856
*:chistory* *:chi*
857857
:[count]chi[story] Show the list of error lists. The current list is
858858
marked with ">". The output looks like:
859-
error list 1 of 3; 43 errors ~
860-
> error list 2 of 3; 0 errors ~
861-
error list 3 of 3; 15 errors ~
859+
error list 1 of 3; 43 errors :make ~
860+
> error list 2 of 3; 0 errors :helpgrep tag ~
861+
error list 3 of 3; 15 errors :grep ex_help *.c ~
862862

863863
When [count] is given, then the count'th quickfix
864864
list is made the current list. Example: >

en/windows.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*windows.txt* For Vim version 8.2. Last change: 2021 Sep 09
1+
*windows.txt* For Vim version 8.2. Last change: 2021 Nov 29
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1203,6 +1203,8 @@ list of buffers. |unlisted-buffer|
12031203
the current buffer remains being edited. See |:buffer-!| for
12041204
[!]. This will also edit a buffer that is not in the buffer
12051205
list, without setting the 'buflisted' flag.
1206+
The notation with single quotes does not work here,
1207+
`:buf 12'345'` uses 12'345 as a buffer name.
12061208
Also see |+cmd|.
12071209

12081210
:[N]b[uffer][!] [+cmd] {bufname} *{bufname}*

0 commit comments

Comments
 (0)