-
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 982ef1605...d5dc58aee (9): > runtime(json5): Add new ftplugin (#13385) > patch 9.0.2053: zig filetype detection test wrong > patch 9.0.2052: win32: using deprecated wsock32 api > patch 9.0.2051: Vim9: wrong error for non-existing object var > runtime(zig): Update Zig runtime files (#13388) > Remove mention of huntr.dev since they do no longer support us > Patch 9.0.2050v2: Missing change to version.c > patch 9.0.2050: Vim9: crash with deferred function call and exception > patch 9.0.2049: Vim9: not recognizing qualified class vars for infix ops https://github.com/vim/vim-appimage/actions/runs/6581942273
- Loading branch information
1 parent
c034b64
commit 0dcd03a
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule vim
updated
25 files
+2 −0 | .github/CODEOWNERS | |
+1 −3 | .github/ISSUE_TEMPLATE/bug_report.yml | |
+1 −2 | SECURITY.md | |
+2 −3 | runtime/filetype.vim | |
+28 −0 | runtime/ftplugin/json5.vim | |
+2 −2 | runtime/ftplugin/zig.vim | |
+16 −11 | runtime/syntax/zig.vim | |
+1 −1 | src/Make_cyg_ming.mak | |
+1 −2 | src/Make_mvc.mak | |
+0 −7 | src/channel.c | |
+37 −0 | src/ex_eval.c | |
+0 −11 | src/if_perl.xs | |
+4 −0 | src/os_win32.h | |
+3 −0 | src/proto/ex_eval.pro | |
+13 −0 | src/structs.h | |
+1 −2 | src/testdir/test_filetype.vim | |
+16 −6 | src/testdir/test_user_func.vim | |
+81 −3 | src/testdir/test_vim9_class.vim | |
+17 −7 | src/testdir/test_vim9_script.vim | |
+6 −13 | src/time.c | |
+7 −12 | src/userfunc.c | |
+10 −0 | src/version.c | |
+2 −1 | src/vim9class.c | |
+7 −12 | src/vim9execute.c | |
+4 −0 | src/vim9expr.c |