Skip to content

Commit 4d62904

Browse files
committed
Merge remote-tracking branch 'vim/master'
2 parents 66a14a2 + dea5611 commit 4d62904

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+2461
-455
lines changed

runtime/compiler/scdoc.vim

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
" scdoc compiler for Vim
2+
" Compiler: scdoc
3+
" Maintainer: Greg Anders <[email protected]>
4+
" Last Updated: 2019-10-24
5+
6+
if exists('current_compiler')
7+
finish
8+
endif
9+
let current_compiler = 'scdoc'
10+
11+
if exists(':CompilerSet') != 2
12+
command -nargs=* CompilerSet setlocal <args>
13+
endif
14+
15+
CompilerSet makeprg=scdoc\ <\ %\ 2>&1
16+
CompilerSet errorformat=Error\ at\ %l:%c:\ %m,%-G%.%#

runtime/doc/autocmd.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*autocmd.txt* For Vim version 8.2. Last change: 2021 Jul 27
1+
*autocmd.txt* For Vim version 8.2. Last change: 2021 Aug 01
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -76,7 +76,7 @@ and in a `:def` function) then {cmd} will be executed as in Vim9
7676
script. Thus this depends on where the autocmd is defined, not where it is
7777
triggered.
7878

79-
{cmd} can use a block, like with `:command`, see |:command-repl|. Example: >
79+
{cmd} can be a block, like with `:command`, see |:command-repl|. Example: >
8080
au BufReadPost *.xml {
8181
setlocal matchpairs+=<:>
8282
/<start

runtime/doc/channel.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@ ch_evalraw({handle}, {string} [, {options}]) *ch_evalraw()*
536536
GetChannel()->ch_evalraw(rawstring)
537537
538538
ch_getbufnr({handle}, {what}) *ch_getbufnr()*
539-
Get the buffer number that {handle} is using for {what}.
539+
Get the buffer number that {handle} is using for String {what}.
540540
{handle} can be a Channel or a Job that has a Channel.
541541
{what} can be "err" for stderr, "out" for stdout or empty for
542542
socket output.
@@ -586,8 +586,8 @@ ch_info({handle}) *ch_info()*
586586
587587
588588
ch_log({msg} [, {handle}]) *ch_log()*
589-
Write {msg} in the channel log file, if it was opened with
590-
|ch_logfile()|.
589+
Write String {msg} in the channel log file, if it was opened
590+
with |ch_logfile()|.
591591
When {handle} is passed the channel number is used for the
592592
message.
593593
{handle} can be a Channel or a Job that has a Channel. The
@@ -625,7 +625,7 @@ ch_open({address} [, {options}]) *ch_open()*
625625
Open a channel to {address}. See |channel|.
626626
Returns a Channel. Use |ch_status()| to check for failure.
627627

628-
{address} has the form "hostname:port", e.g.,
628+
{address} is a String and has the form "hostname:port", e.g.,
629629
"localhost:8765".
630630

631631
When using an IPv6 address, enclose it within square brackets.

runtime/doc/cmdline.txt

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*cmdline.txt* For Vim version 8.2. Last change: 2021 May 30
1+
*cmdline.txt* For Vim version 8.2. Last change: 2021 Aug 06
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -170,7 +170,12 @@ CTRL-R {register} *c_CTRL-R* *c_<C-R>*
170170
too.
171171
When the result is a Float it's automatically
172172
converted to a String.
173-
See |registers| about registers.
173+
Note that when you only want to move the
174+
cursor and not insert anything, you must make
175+
sure the expression evaluates to an empty
176+
string. E.g.: >
177+
<C-R><C-R>=setcmdpos(2)[-1]<CR>
178+
< See |registers| about registers.
174179
Implementation detail: When using the |expression| register
175180
and invoking setcmdpos(), this sets the position before
176181
inserting the resulting string. Use CTRL-R CTRL-R to set the

0 commit comments

Comments
 (0)