-
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 a87462a49...9c69453f0 (13): > runtime(misc): add Italian LICENSE and (top-level) README file > patch 9.1.0880: filetype: C3 files are not recognized > runtime(doc): add helptag for :HelpToc command > git: ignore re-formatting commit v9.1.0879 for blame > patch 9.1.0879: source is not consistently formatted > Add clang-format config file > runtime(compiler): fix escaping of arguments passed to :CompilerSet > patch 9.1.0878: termdebug: cannot enable DEBUG mode > patch 9.1.0877: tests: missing test for termdebug + decimal signs > patch 9.1.0876: filetype: openCL files are not recognized > patch 9.1.0875: filetype: hyprlang detection can be improved > patch 9.1.0874: filetype: karel files are not detected > CI: join codecov array flags, instead of accessing it directly https://github.com/vim/vim-appimage/actions/runs/11924741447
- Loading branch information
1 parent
1447d5b
commit ded6732
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule vim
updated
31 files
+254 −0 | .clang-format | |
+2 −0 | .git-blame-ignore-revs | |
+3 −0 | .github/MAINTAINERS | |
+1 −1 | .github/workflows/ci.yml | |
+3 −0 | Filelist | |
+99 −0 | lang/LICENSE.itx | |
+167 −0 | lang/README.itx | |
+8 −0 | runtime/autoload/dist/ft.vim | |
+2 −2 | runtime/compiler/cppcheck.vim | |
+2 −2 | runtime/compiler/groff.vim | |
+2 −2 | runtime/compiler/mypy.vim | |
+2 −2 | runtime/compiler/pandoc.vim | |
+4 −3 | runtime/compiler/powershell.vim | |
+2 −1 | runtime/compiler/pylint.vim | |
+2 −1 | runtime/compiler/ruff.vim | |
+4 −3 | runtime/compiler/tex.vim | |
+2 −2 | runtime/doc/helphelp.txt | |
+2 −0 | runtime/doc/tags | |
+20 −1 | runtime/doc/terminal.txt | |
+18 −6 | runtime/filetype.vim | |
+16 −0 | runtime/ftplugin/karel.vim | |
+12 −0 | runtime/ftplugin/opencl.vim | |
+9 −2 | runtime/pack/dist/opt/termdebug/plugin/termdebug.vim | |
+58 −0 | runtime/syntax/hyprlang.vim | |
+112 −0 | runtime/syntax/karel.vim | |
+13 −0 | runtime/syntax/opencl.vim | |
+1,480 −1,522 | src/sign.c | |
+102 −99 | src/sound.c | |
+20 −2 | src/testdir/test_filetype.vim | |
+76 −0 | src/testdir/test_termdebug.vim | |
+14 −0 | src/version.c |