Skip to content

Update eval.{txt,jax} #2178

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions doc/eval.jax
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*eval.txt* For Vim バージョン 9.1. Last change: 2025 Jul 13
*eval.txt* For Vim バージョン 9.1. Last change: 2025 Jul 20


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

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

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

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

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

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

*:exe* *:execute*
:exe[cute] {expr1} .. {expr1}の評価結果の文字列をExコマンドとして実行する。
:exe[cute] {expr1} ... {expr1}の評価結果の文字列をExコマンドとして実行する。
複数の引数は連結され、間にスペースが挿入される。余計な
スペースを入れたくない場合は ".." オペレータを使って文
字列を連結すること。
Expand Down
14 changes: 7 additions & 7 deletions en/eval.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*eval.txt* For Vim version 9.1. Last change: 2025 Jul 13
*eval.txt* For Vim version 9.1. Last change: 2025 Jul 20


VIM REFERENCE MANUAL by Bram Moolenaar
Expand Down Expand Up @@ -3722,7 +3722,7 @@ text...
improve script readability.

*:ec* *:echo*
:ec[ho] {expr1} .. Echoes each {expr1}, with a space in between. The
:ec[ho] {expr1} ... Echoes each {expr1}, with a space in between. The
first {expr1} starts on a new line.
Also see |:comment|.
Use "\n" to start a new line. Use "\r" to move the
Expand All @@ -3742,7 +3742,7 @@ text...
:new | redraw | echo "there is a new window"
<
*:echon*
:echon {expr1} .. Echoes each {expr1}, without anything added. Also see
:echon {expr1} ... Echoes each {expr1}, without anything added. Also see
|:comment|.
Uses the highlighting set by the `:echohl` command.
Cannot be followed by a comment.
Expand Down Expand Up @@ -3773,7 +3773,7 @@ text...
otherwise all following echo's will be highlighted.

*:echom* *:echomsg*
:echom[sg] {expr1} .. Echo the expression(s) as a true message, saving the
:echom[sg] {expr1} ... Echo the expression(s) as a true message, saving the
message in the |message-history|.
Spaces are placed between the arguments as with the
`:echo` command. But unprintable characters are
Expand Down Expand Up @@ -3805,7 +3805,7 @@ text...
with the +timer and the +popupwin features.

*:echoe* *:echoerr*
:echoe[rr] {expr1} .. Echo the expression(s) as an error message, saving the
:echoe[rr] {expr1} ... Echo the expression(s) as an error message, saving the
message in the |message-history|. When used in a
script or function the line number will be added.
Spaces are placed between the arguments as with the
Expand All @@ -3818,7 +3818,7 @@ text...
And to get a beep: >
:exe "normal \<Esc>"
:echoc[onsole] {expr1} .. *:echoc* *:echoconsole*
:echoc[onsole] {expr1} ... *:echoc* *:echoconsole*
Intended for testing: works like `:echomsg` but when
running in the GUI and started from a terminal write
the text to stdout.
Expand All @@ -3845,7 +3845,7 @@ text...


*:exe* *:execute*
:exe[cute] {expr1} .. Executes the string that results from the evaluation
:exe[cute] {expr1} ... Executes the string that results from the evaluation
of {expr1} as an Ex command.
Multiple arguments are concatenated, with a space in
between. To avoid the extra space use the ".."
Expand Down