-
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 aa64ba158...78c5a5abc (6): > patch 9.0.1922: LSP server request message is misinterpreted as a response message > patch 9.0.1921: not possible to use the jumplist like a stack > patch 9.0.1920: Vim9: cannot write public var in nested object > patch 9.0.1919: Wrong curswant when clicking on empty line or with vsplits > patch 9.0.1918: No filetype detection for Authzed filetypes > patch 9.0.1917: undefined behaviour with python function pointer https://github.com/vim/vim-appimage/actions/runs/6255731803
- Loading branch information
1 parent
50d12a7
commit 927aad1
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule vim
updated
23 files
+39 −0 | runtime/doc/motion.txt | |
+10 −0 | runtime/doc/options.txt | |
+1 −0 | runtime/doc/quickref.txt | |
+3 −0 | runtime/doc/tags | |
+3 −0 | runtime/filetype.vim | |
+10 −3 | src/channel.c | |
+3 −0 | src/eval.c | |
+37 −16 | src/if_py_both.h | |
+1 −1 | src/if_python.c | |
+1 −1 | src/if_python3.c | |
+22 −3 | src/mark.c | |
+4 −4 | src/mouse.c | |
+3 −0 | src/option.h | |
+3 −0 | src/optiondefs.h | |
+14 −0 | src/optionstr.c | |
+1 −0 | src/proto/optionstr.pro | |
+1 −0 | src/testdir/gen_opt_test.vim | |
+1 −0 | src/testdir/test_filetype.vim | |
+64 −0 | src/testdir/test_jumplist.vim | |
+33 −0 | src/testdir/test_normal.vim | |
+55 −0 | src/testdir/test_vim9_class.vim | |
+13 −10 | src/testdir/test_virtualedit.vim | |
+12 −0 | src/version.c |