From 802cba8a9cbac7a7aa8c9a036a4e06da1430d320 Mon Sep 17 00:00:00 2001 From: h-east Date: Tue, 24 Dec 2024 02:57:34 +0900 Subject: [PATCH] Move help tag E1182 --- doc/eval.jax | 4 ++-- doc/vim9.jax | 4 ++-- en/eval.txt | 4 ++-- en/vim9.txt | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/eval.jax b/doc/eval.jax index f2573116c..e134f56fd 100644 --- a/doc/eval.jax +++ b/doc/eval.jax @@ -1,4 +1,4 @@ -*eval.txt* For Vim バージョン 9.1. Last change: 2024 Nov 02 +*eval.txt* For Vim バージョン 9.1. Last change: 2024 Dec 23 VIMリファレンスマニュアル by Bram Moolenaar @@ -775,7 +775,7 @@ Blobの一部は、角括弧内のコロンで区切られた最初と最後の Blobの変更 ~ - *blob-modification* *E1182* *E1184* + *blob-modification* *E1184* Blobの特定のバイトを変更するには、 |:let| を使用する: > :let blob[4] = 0x44 diff --git a/doc/vim9.jax b/doc/vim9.jax index b9ca53707..83953e6b1 100644 --- a/doc/vim9.jax +++ b/doc/vim9.jax @@ -1,4 +1,4 @@ -*vim9.txt* For Vim バージョン 9.1. Last change: 2024 May 31 +*vim9.txt* For Vim バージョン 9.1. Last change: 2024 Dec 23 VIMリファレンスマニュアル by Bram Moolenaar @@ -198,7 +198,7 @@ Vim9 関数 ~ やエラーが `:try` ブロック内で捕捉された場合でない限り) 。また与えられた「範 囲」も受け取らず、"dict" 属性を持つ関数になることもできません。そして常にク ロージャとなれます。 - *vim9-no-dict-function* + *vim9-no-dict-function* *E1182* 「辞書関数」の代わりに Vim9 クラス (|Vim9-class|) を使用できます。辞書を明示的 に渡すこともできます: > def DictFunc(self: dict, arg: string) diff --git a/en/eval.txt b/en/eval.txt index 6b2647504..af5b3a954 100644 --- a/en/eval.txt +++ b/en/eval.txt @@ -1,4 +1,4 @@ -*eval.txt* For Vim version 9.1. Last change: 2024 Nov 02 +*eval.txt* For Vim version 9.1. Last change: 2024 Dec 23 VIM REFERENCE MANUAL by Bram Moolenaar @@ -797,7 +797,7 @@ length minus one is used: > Blob modification ~ - *blob-modification* *E1182* *E1184* + *blob-modification* *E1184* To change a specific byte of a blob use |:let| this way: > :let blob[4] = 0x44 diff --git a/en/vim9.txt b/en/vim9.txt index 68e5d997f..a978ea369 100644 --- a/en/vim9.txt +++ b/en/vim9.txt @@ -1,4 +1,4 @@ -*vim9.txt* For Vim version 9.1. Last change: 2024 May 31 +*vim9.txt* For Vim version 9.1. Last change: 2024 Dec 23 VIM REFERENCE MANUAL by Bram Moolenaar @@ -193,7 +193,7 @@ created yet. In this case you can call `execute()` to invoke it at runtime. > "closure". A `:def` function always aborts on an error (unless `:silent!` was used for the command or the error was caught a `:try` block), does not get a range passed, cannot be a "dict" function, and can always be a closure. - *vim9-no-dict-function* + *vim9-no-dict-function* *E1182* You can use a Vim9 Class (|Vim9-class|) instead of a "dict function". You can also pass the dictionary explicitly: > def DictFunc(self: dict, arg: string)