-
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.
* 8.2.2973: fix for recovery and diff mode not tested * 8.2.2972: "%bd" tries to delete popup window buffers, which fails * 8.2.2971: cannot yank a block without trailing spaces * 8.2.2970: Python configure check uses deprecated command * 8.2.2969: subtracting from number option fails when result is zero
- Loading branch information
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 @@ | ||
* [8.2.2968](https://github.com/vim/vim/commit/54656015d384a96ef814dfcf2a18e47f5ba3df14): Vim9: memory leak\n* [8.2.2967](https://github.com/vim/vim/commit/c04f2a4cd40f32120b7a94fdea7bfa62e8640041): Vim9: crash when using two levels of partials\n* [8.2.2966](https://github.com/vim/vim/commit/e3f50ad640fb30f27027f85a616280288bbc14ca): ml\_get errors after recovering a file | ||
* [8.2.2973](https://github.com/vim/vim/commit/3044324e8dccd470bd854cf7d9457232cc9c220e): fix for recovery and diff mode not tested\n* [8.2.2972](https://github.com/vim/vim/commit/7b4f76c0300f0bd9bf54ca1968fe9ae5e4dbdef4): "%bd" tries to delete popup window buffers, which fails\n* [8.2.2971](https://github.com/vim/vim/commit/544a38e44db0f25ec4fa7a2a4666cf28a2336f33): cannot yank a block without trailing spaces\n* [8.2.2970](https://github.com/vim/vim/commit/31e299c08f250b126b2c2c0ecce12ee563b70fdc): Python configure check uses deprecated command\n* [8.2.2969](https://github.com/vim/vim/commit/a42e6e0082a6d564dbfa55317d4a698ac12ae898): subtracting from number option fails when result is zero |
Submodule vim
updated
18 files
+12 −1 | runtime/doc/change.txt | |
+1 −0 | runtime/doc/index.txt | |
+4 −1 | src/auto/configure | |
+143 −123 | src/buffer.c | |
+4 −1 | src/configure.ac | |
+1 −0 | src/evalvars.c | |
+3 −0 | src/normal.c | |
+3 −0 | src/ops.c | |
+20 −6 | src/register.c | |
+3 −1 | src/structs.h | |
+118 −1 | src/testdir/test_diffmode.vim | |
+6 −0 | src/testdir/test_popupwin.vim | |
+2 −0 | src/testdir/test_prompt_buffer.vim | |
+44 −0 | src/testdir/test_recover.vim | |
+9 −0 | src/testdir/test_vimscript.vim | |
+55 −0 | src/testdir/test_visual.vim | |
+10 −0 | src/version.c | |
+4 −0 | src/vim.h |