-
Notifications
You must be signed in to change notification settings - Fork 242
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 9.0.0250: slightly inconsistent error messages * 9.0.0249: no test for what 9.0.0234 fixes * 9.0.0248: duplicate code in finding a script in the execution stack * 9.0.0247: cannot add padding to virtual text without highlight
- 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 @@ | ||
* [9.0.0246](https://github.com/vim/vim/commit/adce965162dd89bf29ee0e5baf53652e7515762c): using freed memory when 'tagfunc' deletes the buffer\n* [9.0.0245](https://github.com/vim/vim/commit/471c0fa3eed4f6207d1cb7636970547bfd2eee26): mechanism to prevent recursive screen updating is incomplete\n* [9.0.0244](https://github.com/vim/vim/commit/f768c3d19c518822d89dec4cc3947ddeea249316): cannot easily get the list of sourced scripts\n* [9.0.0243](https://github.com/vim/vim/commit/e89aeed43e6eca1bda5379cf9b437bce3bc56628): text properties "below" sort differently on MS-Windows | ||
* [9.0.0250](https://github.com/vim/vim/commit/dde77a7c4d72622284dc5fb72557bde42c314fa6): slightly inconsistent error messages\n* [9.0.0249](https://github.com/vim/vim/commit/3a7ad904d27d904e57f7a22eb33872a587ae6673): no test for what 9.0.0234 fixes\n* [9.0.0248](https://github.com/vim/vim/commit/a247142ae45308087b25f91c8af48399c8ac2943): duplicate code in finding a script in the execution stack\n* [9.0.0247](https://github.com/vim/vim/commit/f396ce83eebf6c61596184231d39ce4d41eeac04): cannot add padding to virtual text without highlight |
Submodule vim
updated
17 files
+12 −4 | runtime/doc/textprop.txt | |
+48 −45 | src/charset.c | |
+146 −132 | src/drawline.c | |
+5 −1 | src/errors.h | |
+1 −0 | src/proto/drawline.pro | |
+1 −0 | src/proto/textprop.pro | |
+7 −18 | src/scriptfile.c | |
+2 −1 | src/structs.h | |
+3 −3 | src/testdir/dumps/Test_prop_right_align_twice_2.dump | |
+8 −0 | src/testdir/dumps/Test_prop_text_with_padding_1.dump | |
+8 −0 | src/testdir/dumps/Test_prop_text_with_padding_2.dump | |
+8 −0 | src/testdir/dumps/Test_prop_text_with_padding_3.dump | |
+2 −2 | src/testdir/dumps/Test_prop_with_text_after_wraps_1.dump | |
+7 −0 | src/testdir/test_cmdwin.vim | |
+50 −0 | src/testdir/test_textprop.vim | |
+108 −2 | src/textprop.c | |
+8 −0 | src/version.c |