-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* vim cc7597c1e...cb204e688 (6): > patch 9.1.0258: half-page scrolling broke backward compatibility > patch 9.1.0257: Vim9: :call may not find imported class members > patch 9.1.0256: Finding autocmd events is inefficient > patch 9.1.0255: Vim9: no indication of script nr in stack trace of classes > patch 9.1.0254: [security]: Heap buffer overflow when calling complete_add() in 'cfu' > patch 9.1.0253: filetype: typespec files are not recognized https://github.com/vim/vim-appimage/actions/runs/8531500704
- Loading branch information
1 parent
fa2d726
commit b0a114f
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule vim
updated
24 files
+3 −0 | runtime/filetype.vim | |
+239 −159 | src/autocmd.c | |
+1 −2 | src/change.c | |
+91 −21 | src/eval.c | |
+2 −0 | src/insexpand.c | |
+42 −0 | src/misc2.c | |
+112 −50 | src/move.c | |
+13 −3 | src/normal.c | |
+4 −0 | src/proto/misc2.pro | |
+2 −0 | src/proto/normal.pro | |
+3 −0 | src/scriptfile.c | |
+15 −0 | src/structs.h | |
+7 −7 | src/testdir/dumps/Test_cursorline_redraw_2.dump | |
+5 −5 | src/testdir/dumps/Test_display_visual_block_scroll.dump | |
+6 −2 | src/testdir/test_codestyle.vim | |
+1 −2 | src/testdir/test_diffmode.vim | |
+4 −4 | src/testdir/test_edit.vim | |
+1 −0 | src/testdir/test_filetype.vim | |
+22 −0 | src/testdir/test_ins_complete.vim | |
+6 −10 | src/testdir/test_normal.vim | |
+58 −12 | src/testdir/test_scroll_opt.vim | |
+40 −1 | src/testdir/test_vim9_class.vim | |
+14 −0 | src/testdir/test_vim9_import.vim | |
+12 −0 | src/version.c |