Skip to content
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
8 changes: 4 additions & 4 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 Nov 09
*eval.txt* For Vim バージョン 9.1. Last change: 2025 Dec 01


VIM リファレンスマニュアル by Bram Moolenaar
Expand Down Expand Up @@ -2312,8 +2312,8 @@ v:echospace |hit-enter-prompt| を引き起こす前の最後の画面行の `:e
'cmdheight' で確認する必要がある。

*v:errmsg* *errmsg-variable*
v:errmsg 最後に表示されたエラーメッセージ。この変数は代入することが許
されている。例: >
v:errmsg 最後に発生したエラーメッセージ (必ずしも表示されるとは限らな
い)。この変数は設定可能である。例: >
:let errmsg = ""
:next
:if (errmsg != "")
Expand Down Expand Up @@ -3587,7 +3587,7 @@ text...

*:cat* *:catch*
*E603* *E604* *E605* *E654* *E1033*
:cat[ch] /{pattern}/ {pattern}にマッチする例外が発生し、より前の `:catch`
:cat[ch] [/{pattern}/] {pattern}にマッチする例外が発生し、より前の `:catch`
で捕捉されなかった場合、この `:catch` と同じ `:try` に
属する次の `:catch`, `:finally`, `:endtry` までの後続
のコマンドが実行される。そのような例外が発生しなかった
Expand Down
8 changes: 4 additions & 4 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 Nov 09
*eval.txt* For Vim version 9.1. Last change: 2025 Dec 01


VIM REFERENCE MANUAL by Bram Moolenaar
Expand Down Expand Up @@ -2381,8 +2381,8 @@ v:echospace Number of screen cells that can be used for an `:echo` message
available above the last line.

*v:errmsg* *errmsg-variable*
v:errmsg Last given error message. It's allowed to set this variable.
Example: >
v:errmsg Last error message that occurred (not neccessarily displayed).
It's allowed to set this variable. Example: >
:let v:errmsg = ""
:silent! next
:if v:errmsg != ""
Expand Down Expand Up @@ -3698,7 +3698,7 @@ text...

*:cat* *:catch*
*E603* *E604* *E605* *E654* *E1033*
:cat[ch] /{pattern}/ The following commands until the next `:catch`,
:cat[ch] [/{pattern}/] The following commands until the next `:catch`,
`:finally`, or `:endtry` that belongs to the same
`:try` as the `:catch` are executed when an exception
matching {pattern} is being thrown and has not yet
Expand Down