-
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 3f168ec8a...85ff0c191 (13): > patch 9.0.1984: CI: Test_open_delay*() fails on FreeBSD 14 > patch 9.0.1983: scrolling inactive window not possible with cursorbind > runtime(netrw): error when trying to :bd unloaded buffer > patch 9.0.1982: vim9: clean up from v9.0.1955 > patch 9.0.1981: not being able to scroll up in diff mode > patch 9.0.1980: win32: issues with stable python ABI > patch 9.0.1979: Cirrus CI disabled > patch 9.0.1978: No filetype detection for just files > patch 9.0.1977: Vim9: object members can change type > translation(it): update translation of xxd manpage > runtime(doc): update xxd manpage and mention $NO_COLOR env > runtime(doc): fix two typos in `vim9.txt` and `options.txt` (#13258) > runtime(doc): remove E1507 help tag, which is no longer used (#13254) https://github.com/vim/vim-appimage/actions/runs/6413224262
- Loading branch information
1 parent
6ebc240
commit b3fc0d2
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule vim
updated
36 files
+23 −23 | .cirrus.yml | |
+2 −2 | runtime/autoload/netrw.vim | |
+2 −2 | runtime/doc/editing.txt | |
+1 −1 | runtime/doc/options.txt | |
+0 −1 | runtime/doc/tags | |
+1 −1 | runtime/doc/vim9.txt | |
+15 −10 | runtime/doc/xxd-it.1 | |
+15 −10 | runtime/doc/xxd-it.UTF-8.1 | |
+6 −1 | runtime/doc/xxd.1 | |
+22 −21 | runtime/doc/xxd.man | |
+3 −0 | runtime/filetype.vim | |
+7 −2 | src/Make_cyg_ming.mak | |
+8 −5 | src/Make_mvc.mak | |
+1 −1 | src/errors.h | |
+115 −34 | src/eval.c | |
+1 −25 | src/evalvars.c | |
+1 −2 | src/globals.h | |
+17 −5 | src/if_python3.c | |
+9 −0 | src/move.c | |
+67 −3 | src/os_win32.c | |
+1 −0 | src/proto/os_win32.pro | |
+1 −0 | src/proto/vim9class.pro | |
+13 −2 | src/structs.h | |
+4 −0 | src/testdir/test_channel.vim | |
+36 −0 | src/testdir/test_diffmode.vim | |
+1 −0 | src/testdir/test_filetype.vim | |
+69 −15 | src/testdir/test_scroll_opt.vim | |
+466 −21 | src/testdir/test_vim9_class.vim | |
+16 −0 | src/version.c | |
+3 −2 | src/vim9.h | |
+62 −10 | src/vim9class.c | |
+31 −12 | src/vim9cmds.c | |
+12 −1 | src/vim9compile.c | |
+10 −9 | src/vim9execute.c | |
+4 −2 | src/vim9expr.c | |
+16 −4 | src/vim9instr.c |