-
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 5ccac75d9...715a58fda (5): > patch 9.1.0845: vimtutor shell script can be improved > patch 9.1.0844: if_python: no way to pass local vars to python > patch 9.1.0843: too many strlen() calls in undo.c > runtime(doc): update default value for fillchars option > runtime(compiler): fix typo in cppcheck compiler plugin https://github.com/vim/vim-appimage/actions/runs/11714637158
- Loading branch information
1 parent
28bd3ee
commit 9f95a7b
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule vim
updated
22 files
+3 −5 | runtime/compiler/cppcheck.vim | |
+15 −7 | runtime/doc/builtin.txt | |
+9 −1 | runtime/doc/if_pyth.txt | |
+2 −2 | runtime/doc/options.txt | |
+2 −1 | runtime/doc/version9.txt | |
+44 −8 | src/evalfunc.c | |
+6 −5 | src/if_py_both.h | |
+7 −3 | src/if_python.c | |
+11 −3 | src/if_python3.c | |
+1 −1 | src/proto/if_python.pro | |
+1 −1 | src/proto/if_python3.pro | |
+2 −0 | src/structs.h | |
+2 −0 | src/testdir/Make_all.mak | |
+43 −0 | src/testdir/test_python2.vim | |
+46 −0 | src/testdir/test_python3.vim | |
+43 −0 | src/testdir/test_pyx2.vim | |
+42 −0 | src/testdir/test_pyx3.vim | |
+15 −5 | src/testdir/test_undo.vim | |
+17 −0 | src/testdir/test_vim9_python3.vim | |
+36 −29 | src/undo.c | |
+6 −0 | src/version.c | |
+105 −89 | src/vimtutor |