-*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
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
-*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
"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)