1
- *eval.txt* For Vim version 9.1. Last change: 2025 Jul 13
1
+ *eval.txt* For Vim version 9.1. Last change: 2025 Jul 20
2
2
3
3
4
4
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -3722,7 +3722,7 @@ text...
3722
3722
improve script readability.
3723
3723
3724
3724
*:ec* *:echo*
3725
- :ec[ho] {expr1} .. Echoes each {expr1} , with a space in between. The
3725
+ :ec[ho] {expr1} ... Echoes each {expr1} , with a space in between. The
3726
3726
first {expr1} starts on a new line.
3727
3727
Also see | :comment | .
3728
3728
Use "\n" to start a new line. Use "\r" to move the
@@ -3742,7 +3742,7 @@ text...
3742
3742
:new | redraw | echo "there is a new window"
3743
3743
<
3744
3744
*:echon*
3745
- :echon {expr1} .. Echoes each {expr1} , without anything added. Also see
3745
+ :echon {expr1} ... Echoes each {expr1} , without anything added. Also see
3746
3746
| :comment | .
3747
3747
Uses the highlighting set by the `:echohl ` command.
3748
3748
Cannot be followed by a comment.
@@ -3773,7 +3773,7 @@ text...
3773
3773
otherwise all following echo's will be highlighted.
3774
3774
3775
3775
*:echom* *:echomsg*
3776
- :echom[sg] {expr1} .. Echo the expression(s) as a true message, saving the
3776
+ :echom[sg] {expr1} ... Echo the expression(s) as a true message, saving the
3777
3777
message in the | message-history | .
3778
3778
Spaces are placed between the arguments as with the
3779
3779
`:echo ` command. But unprintable characters are
@@ -3805,7 +3805,7 @@ text...
3805
3805
with the +timer and the +popupwin features.
3806
3806
3807
3807
*:echoe* *:echoerr*
3808
- :echoe[rr] {expr1} .. Echo the expression(s) as an error message, saving the
3808
+ :echoe[rr] {expr1} ... Echo the expression(s) as an error message, saving the
3809
3809
message in the | message-history | . When used in a
3810
3810
script or function the line number will be added.
3811
3811
Spaces are placed between the arguments as with the
@@ -3818,7 +3818,7 @@ text...
3818
3818
And to get a beep: >
3819
3819
:exe "normal \<Esc>"
3820
3820
3821
- :echoc[onsole] {expr1} .. *:echoc* *:echoconsole*
3821
+ :echoc[onsole] {expr1} ... *:echoc* *:echoconsole*
3822
3822
Intended for testing: works like `:echomsg ` but when
3823
3823
running in the GUI and started from a terminal write
3824
3824
the text to stdout.
@@ -3845,7 +3845,7 @@ text...
3845
3845
3846
3846
3847
3847
*:exe* *:execute*
3848
- :exe[cute] {expr1} .. Executes the string that results from the evaluation
3848
+ :exe[cute] {expr1} ... Executes the string that results from the evaluation
3849
3849
of {expr1} as an Ex command.
3850
3850
Multiple arguments are concatenated, with a space in
3851
3851
between. To avoid the extra space use the ".."
0 commit comments