From cbf54ec2a5aaa1a00ff89e26bab44a30d09d4631 Mon Sep 17 00:00:00 2001 From: Sean Dewar Date: Sun, 13 Aug 2023 13:25:10 +0100 Subject: [PATCH] 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 --- LICENSE.txt | 4 ++-- runtime/autoload/ccomplete.lua | 7 ++++--- runtime/autoload/gzip.vim | 5 +++-- runtime/autoload/paste.vim | 5 +++-- runtime/colors/default.vim | 5 +++-- runtime/compiler/README.txt | 2 +- runtime/compiler/msvc.vim | 5 +++-- runtime/delmenu.vim | 5 +++-- runtime/doc/intro.txt | 9 ++++++--- runtime/doc/uganda.txt | 4 ++-- runtime/ftoff.vim | 5 +++-- runtime/ftplugin.vim | 5 +++-- runtime/ftplugin/aap.vim | 5 +++-- runtime/ftplugin/btm.vim | 5 +++-- runtime/ftplugin/c.vim | 5 +++-- runtime/ftplugin/cpp.vim | 5 +++-- runtime/ftplugin/diff.vim | 5 +++-- runtime/ftplugin/mail.vim | 5 +++-- runtime/ftplugin/make.vim | 5 +++-- runtime/ftplugin/objc.vim | 5 +++-- runtime/ftplugin/vim.vim | 5 +++-- runtime/ftplugin/zimbu.vim | 5 +++-- runtime/ftplugof.vim | 5 +++-- runtime/indent.vim | 5 +++-- runtime/indent/README.txt | 6 +++--- runtime/indent/aap.vim | 5 +++-- runtime/indent/c.vim | 5 +++-- runtime/indent/cpp.vim | 5 +++-- runtime/indent/cuda.vim | 5 +++-- runtime/indent/python.vim | 7 ++++--- runtime/indent/vim.vim | 5 +++-- runtime/indent/xhtml.vim | 5 +++-- runtime/indent/zimbu.vim | 5 +++-- runtime/indoff.vim | 5 +++-- runtime/macros/less.vim | 5 +++-- runtime/makemenu.vim | 5 +++-- runtime/menu.vim | 5 +++-- runtime/mswin.vim | 5 +++-- runtime/optwin.vim | 5 +++-- runtime/plugin/gzip.vim | 5 +++-- runtime/plugin/matchparen.vim | 5 +++-- runtime/synmenu.vim | 5 +++-- 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 +++-- src/nvim/po/da.po | 2 +- src/nvim/po/eo.po | 2 +- src/nvim/po/fr.po | 2 +- 62 files changed, 183 insertions(+), 126 deletions(-) diff --git a/LICENSE.txt b/LICENSE.txt index 45a4a34c56..dfba86698f 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -233,8 +233,8 @@ II) It is allowed to distribute a modified (or extended) version of Vim, maintainer will do with your changes and under what license they will be distributed is negotiable. If there has been no negotiation then this license, or a later version, also applies to your changes. - The current maintainer is Bram Moolenaar . If this - changes it will be announced in appropriate places (most likely + The current maintainers are listed here: https://github.com/orgs/vim/people. + If this changes it will be announced in appropriate places (most likely vim.sf.net, www.vim.org and/or comp.editors). When it is completely impossible to contact the maintainer, the obligation to send him your changes ceases. Once the maintainer has confirmed that he has diff --git a/runtime/autoload/ccomplete.lua b/runtime/autoload/ccomplete.lua index f4a3eabd9a..ce85e84f7a 100644 --- a/runtime/autoload/ccomplete.lua +++ b/runtime/autoload/ccomplete.lua @@ -24,10 +24,11 @@ local SearchMembers = nil -- vim9script -- # Vim completion script --- # Language: C --- # Maintainer: Bram Moolenaar +-- # Language: C +-- # Maintainer: The Vim Project +-- # Last Change: 2023 Aug 10 -- # Rewritten in Vim9 script by github user lacygoill --- # Last Change: 2022 Jan 31 +-- # Former Maintainer: Bram Moolenaar prepended = '' grepCache = vim.empty_dict() diff --git a/runtime/autoload/gzip.vim b/runtime/autoload/gzip.vim index e4adec0947..95dd906794 100644 --- a/runtime/autoload/gzip.vim +++ b/runtime/autoload/gzip.vim @@ -1,6 +1,7 @@ " Vim autoload file for editing compressed files. -" Maintainer: Bram Moolenaar -" Last Change: 2016 Sep 28 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " These functions are used by the gzip plugin. diff --git a/runtime/autoload/paste.vim b/runtime/autoload/paste.vim index 2d787e7a1d..1ba336c2b3 100644 --- a/runtime/autoload/paste.vim +++ b/runtime/autoload/paste.vim @@ -1,6 +1,7 @@ " Vim support file to help with paste mappings and menus -" Maintainer: Bram Moolenaar -" Last Change: 2019 Jan 27 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " Define the string to use for items that are present both in Edit, Popup and " Toolbar menu. Also used in mswin.vim and macmap.vim. diff --git a/runtime/colors/default.vim b/runtime/colors/default.vim index 70311571db..d2960fa78b 100644 --- a/runtime/colors/default.vim +++ b/runtime/colors/default.vim @@ -1,6 +1,7 @@ " Vim color file -" Maintainer: Bram Moolenaar -" Last Change: 2001 Jul 23 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " This is the default color scheme. It doesn't define the Normal " highlighting, it uses whatever the colors used to be. diff --git a/runtime/compiler/README.txt b/runtime/compiler/README.txt index 3f0b97b83e..dccf4a9762 100644 --- a/runtime/compiler/README.txt +++ b/runtime/compiler/README.txt @@ -8,4 +8,4 @@ If you want to write your own compiler plugin, have a look at the other files for how to do it, the format is simple. If you think a compiler plugin you have written is useful for others, please -send it to Bram@vim.org. +send it to the vim-dev mailing list: diff --git a/runtime/compiler/msvc.vim b/runtime/compiler/msvc.vim index efe36c4da2..0d5660c103 100644 --- a/runtime/compiler/msvc.vim +++ b/runtime/compiler/msvc.vim @@ -1,7 +1,8 @@ " Vim compiler file " Compiler: Microsoft Visual C -" Maintainer: Bram Moolenaar -" Last Change: 2014 Sep 20 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar if exists("current_compiler") finish diff --git a/runtime/delmenu.vim b/runtime/delmenu.vim index ef663c73b4..b614851d89 100644 --- a/runtime/delmenu.vim +++ b/runtime/delmenu.vim @@ -1,8 +1,9 @@ " This Vim script deletes all the menus, so that they can be redefined. " Warning: This also deletes all menus defined by the user! " -" Maintainer: Bram Moolenaar -" Last Change: 2019 Dec 10 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar aunmenu * tlunmenu * diff --git a/runtime/doc/intro.txt b/runtime/doc/intro.txt index afb67373fd..a39d07e3f2 100644 --- a/runtime/doc/intro.txt +++ b/runtime/doc/intro.txt @@ -88,9 +88,9 @@ Nvim development is funded separately from Vim: https://neovim.io/#sponsor ============================================================================== -Credits *credits* +Credits *credits* -Most of Vim was written by Bram Moolenaar . +Most of Vim was written by Bram Moolenaar |Bram-Moolenaar| Parts of the documentation come from several Vi manuals, written by: W.N. Joy @@ -194,7 +194,7 @@ Elvis Another Vi clone, made by Steve Kirkendall. Very compact but isn't Vim Nvim is based on Vim. https://www.vim.org/ ============================================================================== -Bram Moolenaar *Bram* *brammool* +Bram Moolenaar *Bram* *Moolenaar* *Bram-Moolenaar* *brammool* Nvim is a fork of the Vim ("Vi IMproved") text editor, which was originally developed by Bram Moolenaar. Searching his name within the source code of @@ -203,6 +203,9 @@ On August 3, 2023, he passed away at the age of 62. If Vim or Nvim have been of use to you in your life, please read |Uganda| and consider honoring his memory however you may see fit. +Obituary Articles: https://github.com/vim/vim/discussions/12742 +Say Farewell: https://github.com/vim/vim/discussions/12737 + ============================================================================== Notation *notation* diff --git a/runtime/doc/uganda.txt b/runtime/doc/uganda.txt index fc38f5b73c..42e275c230 100644 --- a/runtime/doc/uganda.txt +++ b/runtime/doc/uganda.txt @@ -46,8 +46,8 @@ II) It is allowed to distribute a modified (or extended) version of Vim, maintainer will do with your changes and under what license they will be distributed is negotiable. If there has been no negotiation then this license, or a later version, also applies to your changes. - The current maintainer is Bram Moolenaar . If this - changes it will be announced in appropriate places (most likely + The current maintainers are listed here: https://github.com/orgs/vim/people. + If this changes it will be announced in appropriate places (most likely vim.sf.net, www.vim.org and/or comp.editors). When it is completely impossible to contact the maintainer, the obligation to send him your changes ceases. Once the maintainer has confirmed that he has diff --git a/runtime/ftoff.vim b/runtime/ftoff.vim index 377c6ef829..a33b0962d0 100644 --- a/runtime/ftoff.vim +++ b/runtime/ftoff.vim @@ -1,7 +1,8 @@ " Vim support file to switch off detection of file types " -" Maintainer: Bram Moolenaar -" Last change: 2001 Jun 11 +" Maintainer: The Vim Project +" Last change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar if exists("did_load_filetypes") unlet did_load_filetypes diff --git a/runtime/ftplugin.vim b/runtime/ftplugin.vim index 7b55134a4b..2c56241398 100644 --- a/runtime/ftplugin.vim +++ b/runtime/ftplugin.vim @@ -1,7 +1,8 @@ " Vim support file to switch on loading plugins for file types " -" Maintainer: Bram Moolenaar -" Last change: 2006 Apr 30 +" Maintainer: The Vim Project +" Last change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar if exists("did_load_ftplugin") finish diff --git a/runtime/ftplugin/aap.vim b/runtime/ftplugin/aap.vim index b5065e5157..df839c99ae 100644 --- a/runtime/ftplugin/aap.vim +++ b/runtime/ftplugin/aap.vim @@ -1,7 +1,8 @@ " Vim filetype plugin file " Language: Aap recipe -" Maintainer: Bram Moolenaar -" Last Change: 2021 Nov 14 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " Only do this when not done yet for this buffer if exists("b:did_ftplugin") diff --git a/runtime/ftplugin/btm.vim b/runtime/ftplugin/btm.vim index d3dc5b75f5..1c2c68599d 100644 --- a/runtime/ftplugin/btm.vim +++ b/runtime/ftplugin/btm.vim @@ -1,7 +1,8 @@ " Vim filetype plugin file " Language: BTM -" Maintainer: Bram Moolenaar -" Last Change: 2004 Jul 06 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " Only do this when not done yet for this buffer if exists("b:did_ftplugin") diff --git a/runtime/ftplugin/c.vim b/runtime/ftplugin/c.vim index cfaf26f66c..83fb9ead68 100644 --- a/runtime/ftplugin/c.vim +++ b/runtime/ftplugin/c.vim @@ -1,7 +1,8 @@ " Vim filetype plugin file " Language: C -" Maintainer: Bram Moolenaar -" Last Change: 2022 Apr 08 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " Only do this when not done yet for this buffer if exists("b:did_ftplugin") diff --git a/runtime/ftplugin/cpp.vim b/runtime/ftplugin/cpp.vim index 58c4e4b24a..cb425aa8e7 100644 --- a/runtime/ftplugin/cpp.vim +++ b/runtime/ftplugin/cpp.vim @@ -1,7 +1,8 @@ " Vim filetype plugin file " Language: C++ -" Maintainer: Bram Moolenaar -" Last Change: 2020 Jul 26 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " Only do this when not done yet for this buffer if exists("b:did_ftplugin") diff --git a/runtime/ftplugin/diff.vim b/runtime/ftplugin/diff.vim index bf37d464c0..f2a0820be9 100644 --- a/runtime/ftplugin/diff.vim +++ b/runtime/ftplugin/diff.vim @@ -1,7 +1,8 @@ " Vim filetype plugin file " Language: Diff -" Maintainer: Bram Moolenaar -" Last Change: 2021 Nov 14 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " Only do this when not done yet for this buffer if exists("b:did_ftplugin") diff --git a/runtime/ftplugin/mail.vim b/runtime/ftplugin/mail.vim index f12022305f..3cef84f528 100644 --- a/runtime/ftplugin/mail.vim +++ b/runtime/ftplugin/mail.vim @@ -1,7 +1,8 @@ " Vim filetype plugin file " Language: Mail -" Maintainer: Bram Moolenaar -" Last Change: 2021 Oct 23 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " Only do this when not done yet for this buffer if exists("b:did_ftplugin") diff --git a/runtime/ftplugin/make.vim b/runtime/ftplugin/make.vim index 168bc38eb3..7227bb3739 100644 --- a/runtime/ftplugin/make.vim +++ b/runtime/ftplugin/make.vim @@ -1,7 +1,8 @@ " Vim filetype plugin file " Language: Make -" Maintainer: Bram Moolenaar -" Last Change: 2020 Oct 16 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " Only do this when not done yet for this buffer if exists("b:did_ftplugin") diff --git a/runtime/ftplugin/objc.vim b/runtime/ftplugin/objc.vim index e41beb5dad..d129b33c1c 100644 --- a/runtime/ftplugin/objc.vim +++ b/runtime/ftplugin/objc.vim @@ -1,7 +1,8 @@ " Vim filetype plugin file " Language: Objective C -" Maintainer: Bram Moolenaar -" Last Change: 2003 Jan 15 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " Only do this when not done yet for this buffer if exists("b:did_ftplugin") diff --git a/runtime/ftplugin/vim.vim b/runtime/ftplugin/vim.vim index a2cbc28971..3b10c95c80 100644 --- a/runtime/ftplugin/vim.vim +++ b/runtime/ftplugin/vim.vim @@ -1,7 +1,8 @@ " Vim filetype plugin " Language: Vim -" Maintainer: Bram Moolenaar -" Last Change: 2023 Feb 07 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " Only do this when not done yet for this buffer if exists("b:did_ftplugin") diff --git a/runtime/ftplugin/zimbu.vim b/runtime/ftplugin/zimbu.vim index cbe2f55572..94d6be758d 100644 --- a/runtime/ftplugin/zimbu.vim +++ b/runtime/ftplugin/zimbu.vim @@ -1,7 +1,8 @@ " Vim filetype plugin file " Language: Zimbu -" Maintainer: Bram Moolenaar -" Last Change: 2022 Sep 07 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " Only do this when not done yet for this buffer if exists("b:did_ftplugin") diff --git a/runtime/ftplugof.vim b/runtime/ftplugof.vim index 7828ff2c15..593786a860 100644 --- a/runtime/ftplugof.vim +++ b/runtime/ftplugof.vim @@ -1,7 +1,8 @@ " Vim support file to switch off loading plugins for file types " -" Maintainer: Bram Moolenaar -" Last Change: 2011 Oct 20 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar if exists("did_load_ftplugin") unlet did_load_ftplugin diff --git a/runtime/indent.vim b/runtime/indent.vim index e4ddc09401..3f38ff28b6 100644 --- a/runtime/indent.vim +++ b/runtime/indent.vim @@ -1,7 +1,8 @@ " Vim support file to switch on loading indent files for file types " -" Maintainer: Bram Moolenaar -" Last Change: 2008 Feb 22 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar if exists("did_indent_on") finish diff --git a/runtime/indent/README.txt b/runtime/indent/README.txt index 649870636e..8628ecccb7 100644 --- a/runtime/indent/README.txt +++ b/runtime/indent/README.txt @@ -6,9 +6,9 @@ at ":help indent-expression". Looking at the existing files should give you inspiration. If you make a new indent 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 stick to the rules below. +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 stick to the rules below. 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/indent/aap.vim b/runtime/indent/aap.vim index 35828b4c1a..23c104985e 100644 --- a/runtime/indent/aap.vim +++ b/runtime/indent/aap.vim @@ -1,7 +1,8 @@ " Vim indent file " Language: Aap recipe -" Maintainer: Bram Moolenaar -" Last Change: 2005 Jun 24 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " Only load this indent file when no other was loaded. if exists("b:did_indent") diff --git a/runtime/indent/c.vim b/runtime/indent/c.vim index e224382f63..7f285e1b98 100644 --- a/runtime/indent/c.vim +++ b/runtime/indent/c.vim @@ -1,7 +1,8 @@ " Vim indent file " Language: C -" Maintainer: Bram Moolenaar -" Last Change: 2005 Mar 27 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " Only load this indent file when no other was loaded. if exists("b:did_indent") diff --git a/runtime/indent/cpp.vim b/runtime/indent/cpp.vim index ffa37d7208..bb4dfd185e 100644 --- a/runtime/indent/cpp.vim +++ b/runtime/indent/cpp.vim @@ -1,7 +1,8 @@ " Vim indent file " Language: C++ -" Maintainer: Bram Moolenaar -" Last Change: 2008 Nov 29 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " Only load this indent file when no other was loaded. if exists("b:did_indent") diff --git a/runtime/indent/cuda.vim b/runtime/indent/cuda.vim index 68ee9cec0c..5980ddda44 100644 --- a/runtime/indent/cuda.vim +++ b/runtime/indent/cuda.vim @@ -1,7 +1,8 @@ " Vim indent file " Language: CUDA -" Maintainer: Bram Moolenaar -" Last Change: 2008 Nov 29 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " Only load this indent file when no other was loaded. if exists("b:did_indent") diff --git a/runtime/indent/python.vim b/runtime/indent/python.vim index 8c3d0b0670..42ab4f3778 100644 --- a/runtime/indent/python.vim +++ b/runtime/indent/python.vim @@ -1,8 +1,9 @@ " Vim indent file -" Language: Python -" Maintainer: Bram Moolenaar +" Language: Python +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " Original Author: David Bustos -" Last Change: 2021 Sep 26 " Only load this indent file when no other was loaded. if exists("b:did_indent") diff --git a/runtime/indent/vim.vim b/runtime/indent/vim.vim index 3beb70d255..b2fb57f51f 100644 --- a/runtime/indent/vim.vim +++ b/runtime/indent/vim.vim @@ -1,7 +1,8 @@ " Vim indent file " Language: Vim script -" Maintainer: Bram Moolenaar -" Last Change: 2022 Jun 24 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " Only load this indent file when no other was loaded. if exists("b:did_indent") diff --git a/runtime/indent/xhtml.vim b/runtime/indent/xhtml.vim index 2197b7901c..e5c9cc307f 100644 --- a/runtime/indent/xhtml.vim +++ b/runtime/indent/xhtml.vim @@ -1,7 +1,8 @@ " Vim indent file " Language: XHTML -" Maintainer: Bram Moolenaar (for now) -" Last Change: 2005 Jun 24 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " Only load this indent file when no other was loaded. if exists("b:did_indent") diff --git a/runtime/indent/zimbu.vim b/runtime/indent/zimbu.vim index 0e6e2ab1d1..08369e42e5 100644 --- a/runtime/indent/zimbu.vim +++ b/runtime/indent/zimbu.vim @@ -1,7 +1,8 @@ " Vim indent file " Language: Zimbu -" Maintainer: Bram Moolenaar -" Last Change: 2021 Sep 26 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " Only load this indent file when no other was loaded. if exists("b:did_indent") diff --git a/runtime/indoff.vim b/runtime/indoff.vim index 0d930352bb..57d5e5400e 100644 --- a/runtime/indoff.vim +++ b/runtime/indoff.vim @@ -1,7 +1,8 @@ " Vim support file to switch off loading indent files for file types " -" Maintainer: Bram Moolenaar -" Last Change: 2001 Jun 11 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar if exists("did_indent_on") unlet did_indent_on diff --git a/runtime/macros/less.vim b/runtime/macros/less.vim index a4f96f340e..c99c636e59 100644 --- a/runtime/macros/less.vim +++ b/runtime/macros/less.vim @@ -1,6 +1,7 @@ " Vim script to work like "less" -" Maintainer: Bram Moolenaar -" Last Change: 2020 Dec 17 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " Avoid loading this file twice, allow the user to define his own script. if exists("loaded_less") diff --git a/runtime/makemenu.vim b/runtime/makemenu.vim index 6173d8b691..8da7c0b68c 100644 --- a/runtime/makemenu.vim +++ b/runtime/makemenu.vim @@ -1,6 +1,7 @@ " Script to define the syntax menu in synmenu.vim -" Maintainer: Bram Moolenaar -" Last Change: 2019 Dec 07 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " This is used by "make menu" in the src directory. edit :p:h/synmenu.vim diff --git a/runtime/menu.vim b/runtime/menu.vim index d6f22b314c..20a2611aa5 100644 --- a/runtime/menu.vim +++ b/runtime/menu.vim @@ -1,8 +1,9 @@ " Vim support file to define the default menus " You can also use this as a start for your own set of menus. " -" Maintainer: Bram Moolenaar -" Last Change: 2023 May 03 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " Note that ":an" (short for ":anoremenu") is often used to make a menu work " in all modes and avoid side effects from mappings defined by the user. diff --git a/runtime/mswin.vim b/runtime/mswin.vim index 482b720c53..815667ead9 100644 --- a/runtime/mswin.vim +++ b/runtime/mswin.vim @@ -1,7 +1,8 @@ " Set options and add mapping such that Vim behaves a lot like MS-Windows " -" Maintainer: Bram Moolenaar -" Last Change: 2018 Dec 07 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " Bail out if this isn't wanted. if exists("g:skip_loading_mswin") && g:skip_loading_mswin diff --git a/runtime/optwin.vim b/runtime/optwin.vim index b7b9c61123..647859e359 100644 --- a/runtime/optwin.vim +++ b/runtime/optwin.vim @@ -1,7 +1,8 @@ " These commands create the option window. " -" Maintainer: Bram Moolenaar -" Last Change: 2022 Dec 16 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " If there already is an option window, jump to that one. let buf = bufnr('option-window') diff --git a/runtime/plugin/gzip.vim b/runtime/plugin/gzip.vim index 7214488579..c02bd99567 100644 --- a/runtime/plugin/gzip.vim +++ b/runtime/plugin/gzip.vim @@ -1,6 +1,7 @@ " Vim plugin for editing compressed files. -" Maintainer: Bram Moolenaar -" Last Change: 2016 Oct 30 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " Exit quickly when: " - this plugin was already loaded diff --git a/runtime/plugin/matchparen.vim b/runtime/plugin/matchparen.vim index e19b283228..b33ecd557c 100644 --- a/runtime/plugin/matchparen.vim +++ b/runtime/plugin/matchparen.vim @@ -1,6 +1,7 @@ " Vim plugin for showing matching parens -" Maintainer: Bram Moolenaar -" Last Change: 2022 Dec 01 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " Exit quickly when: " - this plugin was already loaded (or disabled) diff --git a/runtime/synmenu.vim b/runtime/synmenu.vim index a664e7689d..8a8c6a2b90 100644 --- a/runtime/synmenu.vim +++ b/runtime/synmenu.vim @@ -1,8 +1,9 @@ " Vim support file to define the syntax selection menu " This file is normally sourced from menu.vim. " -" Maintainer: Bram Moolenaar -" Last Change: 2022 Oct 04 +" Maintainer: The Vim Project +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar " Define the SetSyn function, used for the Syntax menu entries. " Set 'filetype' and also 'syntax' if it is manually selected. 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") diff --git a/src/nvim/po/da.po b/src/nvim/po/da.po index c55918abc9..0345d3e243 100644 --- a/src/nvim/po/da.po +++ b/src/nvim/po/da.po @@ -3787,7 +3787,7 @@ msgstr "linje %4ld:" msgid "E354: Invalid register name: '%s'" msgstr "E354: Ugyldigt registernavn: '%s'" -msgid "Messages maintainer: Bram Moolenaar " +msgid "Messages maintainer: The Vim Project" msgstr "Oversætter: scootergrisen" msgid "Interrupt: " diff --git a/src/nvim/po/eo.po b/src/nvim/po/eo.po index aaa39d6041..f619c4c408 100644 --- a/src/nvim/po/eo.po +++ b/src/nvim/po/eo.po @@ -3657,7 +3657,7 @@ msgstr "linio %4ld:" msgid "E354: Invalid register name: '%s'" msgstr "E354: Nevalida nomo de reĝistro: '%s'" -msgid "Messages maintainer: Bram Moolenaar " +msgid "Messages maintainer: The Vim Project" msgstr "Flegado de mesaĝoj: Dominique PELLÉ " msgid "Interrupt: " diff --git a/src/nvim/po/fr.po b/src/nvim/po/fr.po index f4fce68ac5..d9058326d5 100644 --- a/src/nvim/po/fr.po +++ b/src/nvim/po/fr.po @@ -3375,7 +3375,7 @@ msgid "E354: Invalid register name: '%s'" msgstr "E354: Nom de registre invalide : '%s'" # DB - todo : mettre jour ? -msgid "Messages maintainer: Bram Moolenaar " +msgid "Messages maintainer: The Vim Project" msgstr "Maintenance des messages : Dominique Pell " msgid "Interrupt: "