forked from vim/vim-appimage
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* vim aca8f55...34f00dd (11): > patch 9.1.0282: Finding highlighting attributes is inefficient > patch 9.1.0281: CI: fails Test_compiler_completion > runtime(cuda): Update cuda keywords, remove uncommonly used enumeration constants > patch 9.1.0280: several issues with 'smoothscroll' support > patch 9.1.0279: filetype: roc files are not recognized > patch 9.1.0278: filetype: zathurarc files not recognized > patch 9.1.0277: Cannot highlight the Command-line > patch 9.1.0276: No pandoc syntax support > patch 9.1.0275: filetype: R history files are not recognized < patch 9.1.0274: MS-Windows: a few compiler warnings < patch 9.1.0273: filetype: keymap files are not recognized https://github.com/kstr0k/vim-appimage/actions/runs/8618753374
- Loading branch information
1 parent
9b3f54d
commit deb8740
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule vim
updated
28 files
+58 −0 | runtime/compiler/pandoc.vim | |
+4 −1 | runtime/doc/filetype.txt | |
+93 −1 | runtime/doc/syntax.txt | |
+2 −0 | runtime/doc/tags | |
+5 −1 | runtime/doc/version9.txt | |
+15 −2 | runtime/filetype.vim | |
+14 −0 | runtime/ftplugin/roc.vim | |
+22 −0 | runtime/ftplugin/zathurarc.vim | |
+15 −27 | runtime/syntax/cuda.vim | |
+709 −0 | runtime/syntax/pandoc.vim | |
+37 −0 | runtime/syntax/zathurarc.vim | |
+185 −110 | src/highlight.c | |
+31 −12 | src/message.c | |
+2 −0 | src/misc1.c | |
+169 −117 | src/move.c | |
+0 −59 | src/normal.c | |
+1 −1 | src/optiondefs.h | |
+1 −0 | src/proto/move.pro | |
+0 −1 | src/proto/normal.pro | |
+1 −1 | src/testdir/dumps/Test_smooth_long_6.dump | |
+1 −1 | src/testdir/dumps/Test_smooth_long_7.dump | |
+2 −2 | src/testdir/test_compiler.vim | |
+15 −0 | src/testdir/test_diffmode.vim | |
+4 −1 | src/testdir/test_filetype.vim | |
+9 −0 | src/testdir/test_highlight.vim | |
+26 −12 | src/testdir/test_scroll_opt.vim | |
+16 −0 | src/version.c | |
+2 −1 | src/vim.h |