Skip to content

Commit 24bd952

Browse files
authored
Merge pull request #1888 from h-east/move-help-tag-E1182
Move help tag E1182
2 parents f534fd5 + 802cba8 commit 24bd952

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

doc/eval.jax

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*eval.txt* For Vim バージョン 9.1. Last change: 2024 Nov 02
1+
*eval.txt* For Vim バージョン 9.1. Last change: 2024 Dec 23
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -775,7 +775,7 @@ Blobの一部は、角括弧内のコロンで区切られた最初と最後の
775775
776776
777777
Blobの変更 ~
778-
*blob-modification* *E1182* *E1184*
778+
*blob-modification* *E1184*
779779
Blobの特定のバイトを変更するには、 |:let| を使用する: >
780780
:let blob[4] = 0x44
781781

doc/vim9.jax

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*vim9.txt* For Vim バージョン 9.1. Last change: 2024 May 31
1+
*vim9.txt* For Vim バージョン 9.1. Last change: 2024 Dec 23
22

33
VIMリファレンスマニュアル by Bram Moolenaar
44

@@ -198,7 +198,7 @@ Vim9 関数 ~
198198
やエラーが `:try` ブロック内で捕捉された場合でない限り) 。また与えられた「範
199199
囲」も受け取らず、"dict" 属性を持つ関数になることもできません。そして常にク
200200
ロージャとなれます。
201-
*vim9-no-dict-function*
201+
*vim9-no-dict-function* *E1182*
202202
「辞書関数」の代わりに Vim9 クラス (|Vim9-class|) を使用できます。辞書を明示的
203203
に渡すこともできます: >
204204
def DictFunc(self: dict<any>, arg: string)

en/eval.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*eval.txt* For Vim version 9.1. Last change: 2024 Nov 02
1+
*eval.txt* For Vim version 9.1. Last change: 2024 Dec 23
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -797,7 +797,7 @@ length minus one is used: >
797797
798798
799799
Blob modification ~
800-
*blob-modification* *E1182* *E1184*
800+
*blob-modification* *E1184*
801801
To change a specific byte of a blob use |:let| this way: >
802802
:let blob[4] = 0x44
803803

en/vim9.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*vim9.txt* For Vim version 9.1. Last change: 2024 May 31
1+
*vim9.txt* For Vim version 9.1. Last change: 2024 Dec 23
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -193,7 +193,7 @@ created yet. In this case you can call `execute()` to invoke it at runtime. >
193193
"closure". A `:def` function always aborts on an error (unless `:silent!` was
194194
used for the command or the error was caught a `:try` block), does not get a
195195
range passed, cannot be a "dict" function, and can always be a closure.
196-
*vim9-no-dict-function*
196+
*vim9-no-dict-function* *E1182*
197197
You can use a Vim9 Class (|Vim9-class|) instead of a "dict function".
198198
You can also pass the dictionary explicitly: >
199199
def DictFunc(self: dict<any>, arg: string)

0 commit comments

Comments
 (0)