From: h-east Date: Mon, 23 Dec 2024 09:11:25 +0000 (+0100) Subject: runtime(doc): move help tag E1182 X-Git-Tag: v9.1.0955~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=08be9ddc8568918714e0e70347bd109c26b73db0;p=thirdparty%2Fvim.git runtime(doc): move help tag E1182 closes: #16279 Signed-off-by: h-east Signed-off-by: Christian Brabandt --- diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index 6b26475042..af5b3a9544 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/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/runtime/doc/tags b/runtime/doc/tags index 56004e9c63..0f5bb0ee91 100644 --- a/runtime/doc/tags +++ b/runtime/doc/tags @@ -4292,7 +4292,7 @@ E1179 options.txt /*E1179* E118 eval.txt /*E118* E1180 vim9.txt /*E1180* E1181 vim9.txt /*E1181* -E1182 eval.txt /*E1182* +E1182 vim9.txt /*E1182* E1183 eval.txt /*E1183* E1184 eval.txt /*E1184* E1185 various.txt /*E1185* diff --git a/runtime/doc/vim9.txt b/runtime/doc/vim9.txt index 68e5d997ff..a978ea3693 100644 --- a/runtime/doc/vim9.txt +++ b/runtime/doc/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)