Accepting request 1167771 from editors
- update to 9.1.0330 - refreshed vim-7.3-filetype_ftl.patch * v9.1.0327 contains an unrelated change * String interpolation fails for Dict type * CI fails with t_?? test * No support for using $XDG_CONFIG_HOME * filetype: some requirements files are not recognized * filetype: CMakeCache.txt files not recognized * Update base-syntax, fix nested function folding * filetype: some json files are not recognized * include new compiler, use it for '*.custom.yaml' files * filetype: cabal config files may not be recognized * don't set compiler, update a comment for vimdoc compiler * filetype: some mail tools not recognized * Garbled output on serial terminals with XON/XOFF flow control * Recognise non-ASCII identifiers * Wrong cursor position after using setcellwidths() * Using heredoc in string not tested with :execute * use explicit version tags for macos runners * filetype: translate shell config files are not recognized * filetype: matplotlibrc files are not recognized * Update base-syntax, add legacy header folding * filetype: some sh and confini files not recognized * filetype: a few more dosini files are not recognized * Line continuation is not detected for 'set' command * Vim9: Can define a class in a function * fix highlighting import string followed by some comment * Crash when using heredoc with comment in command block * heredocs are not supported for :commands * filetype: Some config files are not recognized OBS-URL: https://build.opensuse.org/request/show/1167771 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/vim?expand=0&rev=366
This commit is contained in:
commit
cdc8f564f7
@ -1,19 +1,22 @@
|
|||||||
Index: vim-8.2.2411/runtime/filetype.vim
|
Index: vim-9.1.0330/runtime/filetype.vim
|
||||||
===================================================================
|
===================================================================
|
||||||
--- vim-8.2.2411.orig/runtime/filetype.vim
|
--- vim-9.1.0330.orig/runtime/filetype.vim
|
||||||
+++ vim-8.2.2411/runtime/filetype.vim
|
+++ vim-9.1.0330/runtime/filetype.vim
|
||||||
@@ -2312,3 +2312,7 @@ endfunc
|
@@ -2313,6 +2313,10 @@ au BufNewFile,BufRead *.stp setf stp
|
||||||
" Restore 'cpoptions'
|
" Standard ML
|
||||||
let &cpo = s:cpo_save
|
au BufNewFile,BufRead *.sml setf sml
|
||||||
unlet s:cpo_save
|
|
||||||
+
|
|
||||||
+" FreeMarker templates
|
+" FreeMarker templates
|
||||||
+au BufNewFile,BufRead *.ftl setf ftl
|
+au BufNewFile,BufRead *.ftl setf ftl
|
||||||
+
|
+
|
||||||
Index: vim-8.2.2411/runtime/syntax/ftl.vim
|
+
|
||||||
|
" Sratus VOS command macro
|
||||||
|
au BufNewFile,BufRead *.cm setf voscm
|
||||||
|
|
||||||
|
Index: vim-9.1.0330/runtime/syntax/ftl.vim
|
||||||
===================================================================
|
===================================================================
|
||||||
--- /dev/null
|
--- /dev/null
|
||||||
+++ vim-8.2.2411/runtime/syntax/ftl.vim
|
+++ vim-9.1.0330/runtime/syntax/ftl.vim
|
||||||
@@ -0,0 +1,36 @@
|
@@ -0,0 +1,36 @@
|
||||||
+" Vim syntax file
|
+" Vim syntax file
|
||||||
+" Language: FreeMarker Template Language (FTL)
|
+" Language: FreeMarker Template Language (FTL)
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:7d64b332e31f849a5cc49016231f51fb14ffc43f40d65727b86eb7b79eb960fa
|
|
||||||
size 17832927
|
|
BIN
vim-9.1.0330.tar.gz
(Stored with Git LFS)
Normal file
BIN
vim-9.1.0330.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
54
vim.changes
54
vim.changes
@ -1,3 +1,57 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Apr 15 08:47:30 UTC 2024 - Ondřej Súkup <mimi.vx@gmail.com>
|
||||||
|
|
||||||
|
- update to 9.1.0330
|
||||||
|
- refreshed vim-7.3-filetype_ftl.patch
|
||||||
|
* v9.1.0327 contains an unrelated change
|
||||||
|
* String interpolation fails for Dict type
|
||||||
|
* CI fails with t_?? test
|
||||||
|
* No support for using $XDG_CONFIG_HOME
|
||||||
|
* filetype: some requirements files are not recognized
|
||||||
|
* filetype: CMakeCache.txt files not recognized
|
||||||
|
* Update base-syntax, fix nested function folding
|
||||||
|
* filetype: some json files are not recognized
|
||||||
|
* include new compiler, use it for '*.custom.yaml' files
|
||||||
|
* filetype: cabal config files may not be recognized
|
||||||
|
* don't set compiler, update a comment for vimdoc compiler
|
||||||
|
* filetype: some mail tools not recognized
|
||||||
|
* Garbled output on serial terminals with XON/XOFF flow control
|
||||||
|
* Recognise non-ASCII identifiers
|
||||||
|
* Wrong cursor position after using setcellwidths()
|
||||||
|
* Using heredoc in string not tested with :execute
|
||||||
|
* use explicit version tags for macos runners
|
||||||
|
* filetype: translate shell config files are not recognized
|
||||||
|
* filetype: matplotlibrc files are not recognized
|
||||||
|
* Update base-syntax, add legacy header folding
|
||||||
|
* filetype: some sh and confini files not recognized
|
||||||
|
* filetype: a few more dosini files are not recognized
|
||||||
|
* Line continuation is not detected for 'set' command
|
||||||
|
* Vim9: Can define a class in a function
|
||||||
|
* fix highlighting import string followed by some comment
|
||||||
|
* Crash when using heredoc with comment in command block
|
||||||
|
* heredocs are not supported for :commands
|
||||||
|
* filetype: Some config files are not recognized
|
||||||
|
* Filler lines not checked properly in get_scroll_overlap()
|
||||||
|
* include ftplugin support
|
||||||
|
* add include to ftplugin
|
||||||
|
* mention :argded for :argedit
|
||||||
|
* crash when 'textwidth' > MAX_INT
|
||||||
|
* typo in intro.txt
|
||||||
|
* Overlong translation files may cause repo to become "dirty"
|
||||||
|
* configure: msgfmt hardcoded
|
||||||
|
* add vimdoc
|
||||||
|
* clarify behaviour or :argadd and :argedit
|
||||||
|
* filetype: texdoc config files is not recognized
|
||||||
|
* filetype: x11vnc config file is not recognized
|
||||||
|
* filetype: some history files are not recognized
|
||||||
|
* add Matchit support
|
||||||
|
* filetype: cgdb config file is not recognized
|
||||||
|
* add basic indent support
|
||||||
|
* add matchit support
|
||||||
|
* filetype: some protocol buffer files not recognized
|
||||||
|
* filetype: blueprint files are not recognized
|
||||||
|
* Improve Vim9 and legacy-script comment highlighting
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Apr 10 18:44:04 UTC 2024 - Ondřej Súkup <mimi.vx@gmail.com>
|
Wed Apr 10 18:44:04 UTC 2024 - Ondřej Súkup <mimi.vx@gmail.com>
|
||||||
|
|
||||||
|
2
vim.spec
2
vim.spec
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
%define pkg_version 9.1
|
%define pkg_version 9.1
|
||||||
%define patchlevel 0301
|
%define patchlevel 0330
|
||||||
%define patchlevel_compact %{patchlevel}
|
%define patchlevel_compact %{patchlevel}
|
||||||
%define VIM_SUBDIR vim91
|
%define VIM_SUBDIR vim91
|
||||||
%define site_runtimepath %{_datadir}/vim/site
|
%define site_runtimepath %{_datadir}/vim/site
|
||||||
|
Loading…
Reference in New Issue
Block a user