Skip to content

Commit 5b44297

Browse files
authored
Merge pull request #2178 from h-east/update-eval
Update eval.{txt,jax}
2 parents 7af4e0e + f0cf749 commit 5b44297

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

doc/eval.jax

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*eval.txt* For Vim バージョン 9.1. Last change: 2025 Jul 13
1+
*eval.txt* For Vim バージョン 9.1. Last change: 2025 Jul 20
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -3610,7 +3610,7 @@ text...
36103610
`:throw` は短縮できない。
36113611

36123612
*:ec* *:echo*
3613-
:ec[ho] {expr1} .. 各{expr1}をスペースで区切って表示する。最初の{expr1}
3613+
:ec[ho] {expr1} ...{expr1}をスペースで区切って表示する。最初の{expr1}
36143614
表示は、常に新しい行から始まる。
36153615
|:comment|も参照。
36163616
改行が必要な場合 "\n" を使用する。カーソルを第1桁に
@@ -3632,7 +3632,7 @@ text...
36323632
<
36333633

36343634
*:echon*
3635-
:echon {expr1} .. 改行を付けずに、{expr1}を表示する。|:comment|も参照。
3635+
:echon {expr1} ... 改行を付けずに、{expr1}を表示する。|:comment|も参照。
36363636
色強調を行うにはコマンド `:echohl` を使用する。
36373637
コメント文を同じ行に続けることはできない。
36383638
例: >
@@ -3662,7 +3662,7 @@ text...
36623662
れてしまう。
36633663

36643664
*:echom* *:echomsg*
3665-
:echom[sg] {expr1} .. 式を本当のメッセージとして表示し、そのメッセージをメッ
3665+
:echom[sg] {expr1} ... 式を本当のメッセージとして表示し、そのメッセージをメッ
36663666
セージ履歴|message-history|に保存する。
36673667
`:echo` コマンド同様に、引数の間にスペースが挿入され
36683668
る。しかし印字不可能な文字は解釈されずに表示される。
@@ -3692,7 +3692,7 @@ text...
36923692
付きでコンパイルされた時に利用できる。
36933693

36943694
*:echoe* *:echoerr*
3695-
:echoe[rr] {expr1} .. 式をエラーメッセージとして表示し、そのメッセージを
3695+
:echoe[rr] {expr1} ... 式をエラーメッセージとして表示し、そのメッセージを
36963696
メッセージ履歴|message-history|に保存する。スクリプト
36973697
や関数の中で使用されたときは行番号が付け加えられる。
36983698
`:echomsg` コマンドと同様に引数の間にスペースが挿入さ
@@ -3706,7 +3706,7 @@ text...
37063706
:exe "normal \<Esc>"
37073707
<
37083708

3709-
:echoc[onsole] {expr1} .. *:echoc* *:echoconsole*
3709+
:echoc[onsole] {expr1} ... *:echoc* *:echoconsole*
37103710
テスト用である: `:echomsg` のように動作するが、GUI で
37113711
実行中で端末から起動した場合、標準出力にテキストを書き
37123712
出す。
@@ -3729,7 +3729,7 @@ text...
37293729
"|" と他のコマンドを後ろに置けない。
37303730

37313731
*:exe* *:execute*
3732-
:exe[cute] {expr1} .. {expr1}の評価結果の文字列をExコマンドとして実行する。
3732+
:exe[cute] {expr1} ... {expr1}の評価結果の文字列をExコマンドとして実行する。
37333733
複数の引数は連結され、間にスペースが挿入される。余計な
37343734
スペースを入れたくない場合は ".." オペレータを使って文
37353735
字列を連結すること。

en/eval.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -3722,7 +3722,7 @@ text...
37223722
improve script readability.
37233723

37243724
*: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
37263726
first {expr1} starts on a new line.
37273727
Also see |:comment|.
37283728
Use "\n" to start a new line. Use "\r" to move the
@@ -3742,7 +3742,7 @@ text...
37423742
:new | redraw | echo "there is a new window"
37433743
<
37443744
*:echon*
3745-
:echon {expr1} .. Echoes each {expr1}, without anything added. Also see
3745+
:echon {expr1} ... Echoes each {expr1}, without anything added. Also see
37463746
|:comment|.
37473747
Uses the highlighting set by the `:echohl` command.
37483748
Cannot be followed by a comment.
@@ -3773,7 +3773,7 @@ text...
37733773
otherwise all following echo's will be highlighted.
37743774

37753775
*: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
37773777
message in the |message-history|.
37783778
Spaces are placed between the arguments as with the
37793779
`:echo` command. But unprintable characters are
@@ -3805,7 +3805,7 @@ text...
38053805
with the +timer and the +popupwin features.
38063806

38073807
*: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
38093809
message in the |message-history|. When used in a
38103810
script or function the line number will be added.
38113811
Spaces are placed between the arguments as with the
@@ -3818,7 +3818,7 @@ text...
38183818
And to get a beep: >
38193819
:exe "normal \<Esc>"
38203820
3821-
:echoc[onsole] {expr1} .. *:echoc* *:echoconsole*
3821+
:echoc[onsole] {expr1} ... *:echoc* *:echoconsole*
38223822
Intended for testing: works like `:echomsg` but when
38233823
running in the GUI and started from a terminal write
38243824
the text to stdout.
@@ -3845,7 +3845,7 @@ text...
38453845

38463846

38473847
*: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
38493849
of {expr1} as an Ex command.
38503850
Multiple arguments are concatenated, with a space in
38513851
between. To avoid the extra space use the ".."

0 commit comments

Comments
 (0)