-
Notifications
You must be signed in to change notification settings - Fork 243
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 9.1.1024: blob2str/str2blob() do not support list of strings * runtime(doc): fix typo in usr_02.txt * 9.1.1023: Coverity complains about dereferencing NULL pointer * 9.1.1022: linematch option value not completed * 9.1.1021: string might be used without a trailing NUL * 9.1.1020: no way to get current selected item in a async context
- Loading branch information
1 parent
332e172
commit 1bfa00d
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
* [9.1.1019](https://github.com/vim/vim/commit/3058087f6f04be788118e94e942e0f0c9fca25f0): filetype: fd ignore files are not recognized\n* [9.1.1018](https://github.com/vim/vim/commit/01f6509fb2de1627cc4ec2c109cd0aa2e3346d50): v9.1.0743 causes regression with diff mode\n* [runtime(doc): fix base64 encode/decode examples](https://github.com/vim/vim/commit/6472e583656aced8045fc852282708a684d77cfa)\n* [9.1.1017](https://github.com/vim/vim/commit/9904cbca4132f7376246a1a31305eb53e9530023): Vim9: Patch 9.1.1013 causes a few problems | ||
* [9.1.1024](https://github.com/vim/vim/commit/a11b23c4d52aa704a95067085741a4d66146f92b): blob2str/str2blob() do not support list of strings\n* [runtime(doc): fix typo in usr\_02.txt](https://github.com/vim/vim/commit/a234a46651ef174549792bd64d4bef64a32072bb)\n* [9.1.1023](https://github.com/vim/vim/commit/a9f77be9223f8b886d89f7fac778d363586beb85): Coverity complains about dereferencing NULL pointer\n* [9.1.1022](https://github.com/vim/vim/commit/9162e636b31dcac57876cbdec15a683cedd9760e): linematch option value not completed\n* [9.1.1021](https://github.com/vim/vim/commit/70dfc374ec72634a0a61aea8344178779675d516): string might be used without a trailing NUL\n* [9.1.1020](https://github.com/vim/vim/commit/037b028a2219d09bc97be04b300b2c0490c4268d): no way to get current selected item in a async context |
Submodule vim
updated
15 files
+37 −26 | runtime/doc/builtin.txt | |
+1 −4 | runtime/doc/todo.txt | |
+3 −3 | runtime/doc/usr_02.txt | |
+3 −3 | runtime/doc/usr_41.txt | |
+3 −3 | runtime/doc/version9.txt | |
+5 −2 | src/diff.c | |
+4 −1 | src/drawscreen.c | |
+2 −1 | src/evalfunc.c | |
+36 −22 | src/insexpand.c | |
+1 −1 | src/optionstr.c | |
+146 −54 | src/strings.c | |
+39 −25 | src/testdir/test_functions.vim | |
+30 −0 | src/testdir/test_ins_complete.vim | |
+4 −0 | src/testdir/test_options.vim | |
+10 −0 | src/version.c |