-
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 076faac53...63833bb02 (9): > runtime(json5): add basic indent support (#14298) > patch 9.1.0211: page-wise scrolling does not support smooth-scrolling > patch 9.1.0210: Motif: leaking memory when mui_mch_dialog() fails > patch 9.1.0209: leaking memory in exe_newdict() on error > patch 9.1.0208: winfixbuf does not allow to re-edit current buffer > patch 9.1.0207: No autocommand when writing session file > runtime(java): Update java[CR]_JavaLang type lists (#14297) > Update README.md (#14302) > patch 9.1.0206: unused display_text_first boolean var in win_line() https://github.com/vim/vim-appimage/actions/runs/8444927105
- Loading branch information
1 parent
755a2f2
commit 0f4c7b8
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule vim
updated
22 files
+1 −1 | README.md | |
+7 −1 | runtime/doc/autocmd.txt | |
+3 −3 | runtime/doc/options.txt | |
+1 −0 | runtime/doc/tags | |
+4 −1 | runtime/doc/version9.txt | |
+11 −0 | runtime/indent/json5.vim | |
+4 −2 | runtime/syntax/java.vim | |
+1 −0 | src/autocmd.c | |
+1 −7 | src/drawline.c | |
+38 −1 | src/ex_docmd.c | |
+3 −0 | src/gui_motif.c | |
+29 −348 | src/move.c | |
+2 −0 | src/session.c | |
+56 −0 | src/testdir/test_autocmd.vim | |
+22 −18 | src/testdir/test_diffmode.vim | |
+20 −20 | src/testdir/test_edit.vim | |
+20 −12 | src/testdir/test_normal.vim | |
+23 −1 | src/testdir/test_scroll_opt.vim | |
+140 −0 | src/testdir/test_winfixbuf.vim | |
+12 −0 | src/version.c | |
+1 −0 | src/vim.h | |
+3 −0 | src/vim9execute.c |