-
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 54844857f...69fb5afb3 (9): > patch 9.0.2018: complete_info() returns wrong index > patch 9.0.2017: linebreak applies for leading whitespace > patch 9.0.2016: Vim9: assignment operators don't work for class vars > patch 9.0.2015: Vim9: does not handle islocked() from a method correctly > patch 9.0.2013: confusing ifdefs in if_<lang>.c > patch 9.0.2013: Unicode tables outdated > patch 9.0.2012: Vim9: error message can be more accurate > patch 9.0.2011: INI files not detected > patch 9.0.2010: [security] use-after-free from buf_contents_changed() https://github.com/vim/vim-appimage/actions/runs/6489771335
- Loading branch information
1 parent
73fe720
commit fcefeb7
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule vim
updated
31 files
+1 −1 | runtime/filetype.vim | |
+5 −0 | src/buffer.c | |
+9 −1 | src/charset.c | |
+23 −1 | src/drawline.c | |
+4 −4 | src/errors.h | |
+67 −20 | src/eval.c | |
+109 −1 | src/evalfunc.c | |
+6 −6 | src/if_lua.c | |
+12 −12 | src/if_mzsch.c | |
+7 −7 | src/if_perl.xs | |
+11 −11 | src/if_python.c | |
+37 −35 | src/if_python3.c | |
+7 −7 | src/if_ruby.c | |
+10 −10 | src/if_tcl.c | |
+39 −30 | src/insexpand.c | |
+5 −3 | src/mbyte.c | |
+2 −2 | src/proto/vim9class.pro | |
+1 −0 | src/proto/vim9execute.pro | |
+4 −1 | src/structs.h | |
+ − | src/testdir/crash/editing_arg_idx_POC_1 | |
+9 −0 | src/testdir/test_crash.vim | |
+1 −1 | src/testdir/test_filetype.vim | |
+38 −0 | src/testdir/test_ins_complete.vim | |
+2 −2 | src/testdir/test_listdict.vim | |
+15 −0 | src/testdir/test_listlbr.vim | |
+1 −1 | src/testdir/test_vim9_assign.vim | |
+288 −2 | src/testdir/test_vim9_class.vim | |
+18 −0 | src/version.c | |
+2 −2 | src/vim9class.c | |
+18 −2 | src/vim9compile.c | |
+40 −6 | src/vim9execute.c |