From d24a86fd85a84c7a3409f18da7dc1f76a7d4cb9d Mon Sep 17 00:00:00 2001 From: h-east Date: Tue, 2 Dec 2025 21:44:27 +0900 Subject: [PATCH] Update eval.{txt,jax} --- doc/eval.jax | 8 ++++---- en/eval.txt | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/eval.jax b/doc/eval.jax index 9e31a4381..33af69767 100644 --- a/doc/eval.jax +++ b/doc/eval.jax @@ -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 @@ -2312,8 +2312,8 @@ v:echospace |hit-enter-prompt| を引き起こす前の最後の画面行の `:e 'cmdheight' で確認する必要がある。 *v:errmsg* *errmsg-variable* -v:errmsg 最後に表示されたエラーメッセージ。この変数は代入することが許 - されている。例: > +v:errmsg 最後に発生したエラーメッセージ (必ずしも表示されるとは限らな + い)。この変数は設定可能である。例: > :let errmsg = "" :next :if (errmsg != "") @@ -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` までの後続 のコマンドが実行される。そのような例外が発生しなかった diff --git a/en/eval.txt b/en/eval.txt index 8121ad2fe..4f1b0b42f 100644 --- a/en/eval.txt +++ b/en/eval.txt @@ -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 @@ -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 != "" @@ -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