]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(doc): move help tag E1182
authorh-east <h.east.727@gmail.com>
Mon, 23 Dec 2024 09:11:25 +0000 (10:11 +0100)
committerChristian Brabandt <cb@256bit.org>
Mon, 23 Dec 2024 09:11:25 +0000 (10:11 +0100)
closes: #16279

Signed-off-by: h-east <h.east.727@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/doc/eval.txt
runtime/doc/tags
runtime/doc/vim9.txt

index 6b264750428afc2e29756edff80ff8f191837009..af5b3a954432e1b454e620cc0235319884d9601e 100644 (file)
@@ -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
 
index 56004e9c63483e758eb59be9c89dcdbef0983ad4..0f5bb0ee914b779beabdb57fa36600b763c8f036 100644 (file)
@@ -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*
index 68e5d997ff91c93c8fc4052beb3f2b2cd8a27a07..a978ea36930fafa462a36ed97ae684c283c68e7f 100644 (file)
@@ -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<any>, arg: string)