On Tue, Apr 19, 2022 at 10:07 PM John Marriott
wrote:
>
> After this patch, mingw (gcc 11.2.0) throws this warning:
>
> gcc -c -I. -Iproto -DWIN32 -DWINVER=0x0603 -D_WIN32_WINNT=0x0603
> -DHAVE_PATHDEF -DFEAT_NORMAL -DHAVE_STDINT_H -D__USE_MINGW_ANSI_STDIO
> -pipe -march=native -Wall -O3 -fomit-f
Bram,
I stopped squirming and will cowboy up as the maintainer. If someone who is
more in-tune with the vim API wants to take over, I will stand aside.
You said "send me the updated version of the file". You can retrieve it
from:
https://github.com/lee-lindley/vim_plsql_syntax/blob/main/syntax
After this patch, mingw (gcc 11.2.0) throws this warning:
gcc -c -I. -Iproto -DWIN32 -DWINVER=0x0603 -D_WIN32_WINNT=0x0603
-DHAVE_PATHDEF -DFEAT_NORMAL -DHAVE_STDINT_H -D__USE_MINGW_ANSI_STDIO
-pipe -march=native -Wall -O3 -fomit-frame-pointer -freg-struct-return
-fpie -fPIE -DFEAT_GUI_MSWIN -
Patch 8.2.4793
Problem:Recognizing Maxima filetype even though it might be another.
Solution: Remove *.mc and *.dem patterns from Maxima files
Files: runtime/filetype.vim, src/testdir/test_filetype.vim
*** ../vim-8.2.4792/runtime/filetype.vim2022-04-19 15:29:53.609940094
+01
Patch 8.2.4792
Problem:Indent operator creates an undo entry for every line.
Solution: Create one undo entry for all lines. (closes #10227)
Files: src/indent.c, src/testdir/test_indent.vim
*** ../vim-8.2.4791/src/indent.c2022-02-21 19:36:08.143004133 +
--- src/indent.c
Patch 8.2.4791
Problem:Autocmd events triggered in different order when reusing an empty
buffer.
Solution: Call buff_freeall() earlier. (Charlie Groves, closes #10198)
Files: src/buffer.c, src/testdir/test_autocmd.vim
*** ../vim-8.2.4790/src/buffer.c2022-04-10 17:
Patch 8.2.4790
Problem:Lilypond filetype not recognized.
Solution: Add patterns for lilypond. (Doug Kearns)
Files: runtime/filetype.vim, src/testdir/test_filetype.vim
*** ../vim-8.2.4789/runtime/filetype.vim2022-04-18 14:32:39.654029925
+0100
--- runtime/filetype.vim
Patch 8.2.4789
Problem:The cursor may be in the in wrong place when using :redraw while
editing the cmdline.
Solution: When editing the command line let :redraw update the command line
too. (closes #10210)
Files: src/ex_docmd.c, src/testdir/test_cmdline.vim,
Patch 8.2.4788
Problem:Large payload for LSP message not tested.
Solution: Add a test with a large LSP payload. (Yegappan Lakshmanan,
closes #10223)
Files: src/channel.c, src/testdir/test_channel.vim,
src/testdir/test_channel_lsp.py
*** ../vim-8.2.4787/src/cha