From cbf54ec2a5aaa1a00ff89e26bab44a30d09d4631 Mon Sep 17 00:00:00 2001 From: Sean Dewar Date: Sun, 13 Aug 2023 13:25:10 +0100 Subject: vim-patch:e978b4534a5e (#24697) Farewell to Bram and dedicate upcoming Vim 9.1 to him (vim/vim#12749) https://github.com/vim/vim/commit/e978b4534a5e10471108259118c0ef791106fd92 Also update the header for the following files that were converted to Vim9 script upstream: - autoload/ccomplete.lua (vim9jitted) - ftplugin.vim - ftplugof.vim - indent.vim - indent/vim.vim - makemenu.vim This also updates the "Last Change" dates, even if some changes (due to rewrites to Vim9 script) were not ported. There's still a few other places where Bram is still mentioned as a maintainer in the files we and Vim have: - ftplugin/bash.vim - indent/bash.vim - indent/html.vim - indent/mail.vim - macros/accents.vim - macros/editexisting.vim - syntax/bash.vim - syntax/shared/typescriptcommon.vim - syntax/tar.vim - syntax/typescript.vim - syntax/typescriptreact.vim - syntax/zimbu.vim Maybe future patches will address that. Also exclude changes to .po files that didn't apply automatically (the `:messages` maintainer string isn't used in Nvim anyway). Co-authored-by: Christian Brabandt --- runtime/syntax/README.txt | 7 ++++--- runtime/syntax/aap.vim | 5 +++-- runtime/syntax/c.vim | 5 +++-- runtime/syntax/colortest.vim | 5 +++-- runtime/syntax/conf.vim | 5 +++-- runtime/syntax/ctrlh.vim | 5 +++-- runtime/syntax/diff.vim | 7 ++++--- runtime/syntax/help.vim | 5 +++-- runtime/syntax/manual.vim | 5 +++-- runtime/syntax/model.vim | 5 +++-- runtime/syntax/nosyntax.vim | 5 +++-- runtime/syntax/qf.vim | 5 +++-- runtime/syntax/synload.vim | 5 +++-- runtime/syntax/syntax.vim | 5 +++-- runtime/syntax/template.vim | 5 +++-- runtime/syntax/vgrindefs.vim | 5 +++-- runtime/syntax/viminfo.vim | 5 +++-- 17 files changed, 53 insertions(+), 36 deletions(-) (limited to 'runtime/syntax') diff --git a/runtime/syntax/README.txt b/runtime/syntax/README.txt index d6a86e5ca9..8eee0ea20a 100644 --- a/runtime/syntax/README.txt +++ b/runtime/syntax/README.txt @@ -28,9 +28,10 @@ whitespace.vim View Tabs and Spaces. If you want to write a syntax file, read the docs at ":help usr_44.txt". If you make a new syntax file which would be useful for others, please send it -to Bram@vim.org. Include instructions for detecting the file type for this -language, by file name extension or by checking a few lines in the file. -And please write the file in a portable way, see ":help 44.12". +to the vim-dev mailing list . Include instructions for +detecting the file type for this language, by file name extension or by +checking a few lines in the file. And please write the file in a portable way, +see ":help 44.12". If you have remarks about an existing file, send them to the maintainer of that file. Only when you get no response send a message to Bram@vim.org. diff --git a/runtime/syntax/aap.vim b/runtime/syntax/aap.vim index 8399a4d224..87cedab30f 100644 --- a/runtime/syntax/aap.vim +++ b/runtime/syntax/aap.vim @@ -1,7 +1,8 @@ " Vim syntax file " Language: A-A-P recipe -" Maintainer: Bram Moolenaar -" Last Change: 2004 Jun 13 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " Quit when a syntax file was already loaded if exists("b:current_syntax") diff --git a/runtime/syntax/c.vim b/runtime/syntax/c.vim index 04b132d3ff..5ed8fdc847 100644 --- a/runtime/syntax/c.vim +++ b/runtime/syntax/c.vim @@ -1,7 +1,8 @@ " Vim syntax file " Language: C -" Maintainer: Bram Moolenaar -" Last Change: 2023 Mar 08 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " Quit when a (custom) syntax file was already loaded if exists("b:current_syntax") diff --git a/runtime/syntax/colortest.vim b/runtime/syntax/colortest.vim index 58de7aaf13..1dd860c1d3 100644 --- a/runtime/syntax/colortest.vim +++ b/runtime/syntax/colortest.vim @@ -1,7 +1,8 @@ " Vim script for testing colors -" Maintainer: Bram Moolenaar +" Maintainer: The Vim Project " Contributors: Rafael Garcia-Suarez, Charles Campbell -" Last Change: 2008 Jun 04 +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " edit this file, then do ":source %", and check if the colors match diff --git a/runtime/syntax/conf.vim b/runtime/syntax/conf.vim index 6a78ef8c6e..15a1fffab3 100644 --- a/runtime/syntax/conf.vim +++ b/runtime/syntax/conf.vim @@ -1,7 +1,8 @@ " Vim syntax file " Language: generic configure file -" Maintainer: Bram Moolenaar -" Last Change: 2021 May 01 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " Quit when a (custom) syntax file was already loaded if exists("b:current_syntax") diff --git a/runtime/syntax/ctrlh.vim b/runtime/syntax/ctrlh.vim index b4bf3477e6..b34f335785 100644 --- a/runtime/syntax/ctrlh.vim +++ b/runtime/syntax/ctrlh.vim @@ -1,7 +1,8 @@ " Vim syntax file " Language: CTRL-H (e.g., ASCII manpages) -" Maintainer: Bram Moolenaar -" Last Change: 2005 Jun 20 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " Existing syntax is kept, this file can be used as an addition diff --git a/runtime/syntax/diff.vim b/runtime/syntax/diff.vim index 408556ac13..4cadf5dae8 100644 --- a/runtime/syntax/diff.vim +++ b/runtime/syntax/diff.vim @@ -1,8 +1,9 @@ " Vim syntax file " Language: Diff (context or unified) -" Maintainer: Bram Moolenaar -" Translations by Jakson Alves de Aquino. -" Last Change: 2020 Dec 30 +" Maintainer: The Vim Project +" Translations by Jakson Alves de Aquino. +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " Quit when a (custom) syntax file was already loaded if exists("b:current_syntax") diff --git a/runtime/syntax/help.vim b/runtime/syntax/help.vim index 8b469d7242..f1e650b2fb 100644 --- a/runtime/syntax/help.vim +++ b/runtime/syntax/help.vim @@ -1,7 +1,8 @@ " Vim syntax file " Language: Vim help file -" Maintainer: Bram Moolenaar (Bram@vim.org) -" Last Change: 2022 Nov 13 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " Quit when a (custom) syntax file was already loaded if exists("b:current_syntax") diff --git a/runtime/syntax/manual.vim b/runtime/syntax/manual.vim index c0e53fa7b4..8388336f25 100644 --- a/runtime/syntax/manual.vim +++ b/runtime/syntax/manual.vim @@ -1,6 +1,7 @@ " Vim syntax support file -" Maintainer: Bram Moolenaar -" Last Change: 2016 Feb 01 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " This file is used for ":syntax manual". " It installs the Syntax autocommands, but no the FileType autocommands. diff --git a/runtime/syntax/model.vim b/runtime/syntax/model.vim index 5f3b7f8721..ea661eb5b5 100644 --- a/runtime/syntax/model.vim +++ b/runtime/syntax/model.vim @@ -1,7 +1,8 @@ " Vim syntax file " Language: Model -" Maintainer: Bram Moolenaar -" Last Change: 2005 Jun 20 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " very basic things only (based on the vgrindefs file). " If you use this language, please improve it, and send me the patches! diff --git a/runtime/syntax/nosyntax.vim b/runtime/syntax/nosyntax.vim index 0ab3412373..a761d712b7 100644 --- a/runtime/syntax/nosyntax.vim +++ b/runtime/syntax/nosyntax.vim @@ -1,6 +1,7 @@ " Vim syntax support file -" Maintainer: Bram Moolenaar -" Last Change: 2006 Apr 16 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " This file is used for ":syntax off". " It removes the autocommands and stops highlighting for all buffers. diff --git a/runtime/syntax/qf.vim b/runtime/syntax/qf.vim index 5c987a97b6..6f2ea6a92e 100644 --- a/runtime/syntax/qf.vim +++ b/runtime/syntax/qf.vim @@ -1,7 +1,8 @@ " Vim syntax file " Language: Quickfix window -" Maintainer: Bram Moolenaar -" Last change: 2001 Jan 15 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " Quit when a syntax file was already loaded if exists("b:current_syntax") diff --git a/runtime/syntax/synload.vim b/runtime/syntax/synload.vim index 80685a5213..3182c590b7 100644 --- a/runtime/syntax/synload.vim +++ b/runtime/syntax/synload.vim @@ -1,6 +1,7 @@ " Vim syntax support file -" Maintainer: Bram Moolenaar -" Last Change: 2022 Apr 12 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " This file sets up for syntax highlighting. " It is loaded from "syntax.vim" and "manual.vim". diff --git a/runtime/syntax/syntax.vim b/runtime/syntax/syntax.vim index 5ec99c7e05..887da05bfe 100644 --- a/runtime/syntax/syntax.vim +++ b/runtime/syntax/syntax.vim @@ -1,6 +1,7 @@ " Vim syntax support file -" Maintainer: Bram Moolenaar -" Last Change: 2022 Apr 12 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " This file is used for ":syntax on". " It installs the autocommands and starts highlighting for all buffers. diff --git a/runtime/syntax/template.vim b/runtime/syntax/template.vim index 5bf580fc11..a59b7b0af9 100644 --- a/runtime/syntax/template.vim +++ b/runtime/syntax/template.vim @@ -1,7 +1,8 @@ " Vim syntax file " Language: Generic template -" Maintainer: Bram Moolenaar -" Last Change: 2019 May 06 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " Quit when a (custom) syntax file was already loaded if exists("b:current_syntax") diff --git a/runtime/syntax/vgrindefs.vim b/runtime/syntax/vgrindefs.vim index 3de31b1437..a194c108cb 100644 --- a/runtime/syntax/vgrindefs.vim +++ b/runtime/syntax/vgrindefs.vim @@ -1,7 +1,8 @@ " Vim syntax file " Language: Vgrindefs -" Maintainer: Bram Moolenaar -" Last Change: 2005 Jun 20 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " The Vgrindefs file is used to specify a language for vgrind diff --git a/runtime/syntax/viminfo.vim b/runtime/syntax/viminfo.vim index 667e1bab2a..06c59766d7 100644 --- a/runtime/syntax/viminfo.vim +++ b/runtime/syntax/viminfo.vim @@ -1,7 +1,8 @@ " Vim syntax file " Language: Vim .viminfo file -" Maintainer: Bram Moolenaar -" Last Change: 2016 Jun 05 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " Quit when a (custom) syntax file was already loaded if exists("b:current_syntax") -- cgit