summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorChristian Brabandt <cb@256bit.org>2023-08-13 10:33:05 +0200
committerGitHub <noreply@github.com>2023-08-13 10:33:05 +0200
commite978b4534a5e10471108259118c0ef791106fd92 (patch)
tree82a192a401346465b719becfc3bae139f9b6624e /runtime
parent9c30f4389944810cf88154d25dfd9ea5737c19e6 (diff)
Farewell to Bram and dedicate upcoming Vim 9.1 to him (#12749)
* Dedicate upcoming Vim 9.1 to Bram Also replace in a few more places Brams email address and mention new maintainers. * Remove Bram from any Maintainer role * runtime: Align Header * it's mailing list not mailinglist
Diffstat (limited to 'runtime')
-rw-r--r--runtime/autoload/ccomplete.vim7
-rw-r--r--runtime/autoload/dist/ft.vim5
-rw-r--r--runtime/autoload/dist/script.vim5
-rw-r--r--runtime/autoload/gzip.vim5
-rw-r--r--runtime/autoload/paste.vim5
-rw-r--r--runtime/autoload/spellfile.vim5
-rw-r--r--runtime/bugreport.vim5
-rw-r--r--runtime/colors/default.vim5
-rw-r--r--runtime/compiler/README.txt2
-rw-r--r--runtime/compiler/msvc.vim5
-rw-r--r--runtime/defaults.vim5
-rw-r--r--runtime/delmenu.vim5
-rw-r--r--runtime/doc/intro.txt13
-rw-r--r--runtime/doc/tags5
-rw-r--r--runtime/doc/uganda.txt4
-rw-r--r--runtime/doc/version9.txt13
-rw-r--r--runtime/evim.vim5
-rw-r--r--runtime/filetype.vim5
-rw-r--r--runtime/ftoff.vim5
-rw-r--r--runtime/ftplugin.vim5
-rw-r--r--runtime/ftplugin/aap.vim5
-rw-r--r--runtime/ftplugin/btm.vim5
-rw-r--r--runtime/ftplugin/c.vim5
-rw-r--r--runtime/ftplugin/cpp.vim5
-rw-r--r--runtime/ftplugin/diff.vim5
-rw-r--r--runtime/ftplugin/mail.vim5
-rw-r--r--runtime/ftplugin/make.vim5
-rw-r--r--runtime/ftplugin/objc.vim5
-rw-r--r--runtime/ftplugin/vim.vim5
-rw-r--r--runtime/ftplugin/zimbu.vim5
-rw-r--r--runtime/ftplugof.vim5
-rw-r--r--runtime/gvimrc_example.vim5
-rw-r--r--runtime/indent.vim5
-rw-r--r--runtime/indent/README.txt6
-rw-r--r--runtime/indent/aap.vim5
-rw-r--r--runtime/indent/c.vim5
-rw-r--r--runtime/indent/cpp.vim5
-rw-r--r--runtime/indent/cuda.vim5
-rw-r--r--runtime/indent/python.vim7
-rw-r--r--runtime/indent/vim.vim5
-rw-r--r--runtime/indent/xhtml.vim5
-rw-r--r--runtime/indent/zimbu.vim5
-rw-r--r--runtime/indoff.vim5
-rw-r--r--runtime/macros/less.vim5
-rw-r--r--runtime/makemenu.vim5
-rw-r--r--runtime/menu.vim5
-rw-r--r--runtime/mswin.vim5
-rw-r--r--runtime/optwin.vim5
-rw-r--r--runtime/plugin/gzip.vim5
-rw-r--r--runtime/plugin/matchparen.vim5
-rw-r--r--runtime/plugin/spellfile.vim5
-rw-r--r--runtime/scripts.vim5
-rw-r--r--runtime/synmenu.vim5
-rw-r--r--runtime/syntax/README.txt7
-rw-r--r--runtime/syntax/aap.vim5
-rw-r--r--runtime/syntax/c.vim5
-rw-r--r--runtime/syntax/colortest.vim5
-rw-r--r--runtime/syntax/conf.vim5
-rw-r--r--runtime/syntax/ctrlh.vim5
-rw-r--r--runtime/syntax/diff.vim7
-rw-r--r--runtime/syntax/help.vim5
-rw-r--r--runtime/syntax/manual.vim5
-rw-r--r--runtime/syntax/model.vim5
-rw-r--r--runtime/syntax/nosyntax.vim5
-rw-r--r--runtime/syntax/qf.vim5
-rw-r--r--runtime/syntax/syncolor.vim5
-rw-r--r--runtime/syntax/synload.vim5
-rw-r--r--runtime/syntax/syntax.vim5
-rw-r--r--runtime/syntax/template.vim5
-rw-r--r--runtime/syntax/vgrindefs.vim5
-rw-r--r--runtime/syntax/viminfo.vim5
-rw-r--r--runtime/termcap5
-rw-r--r--runtime/vimrc_example.vim5
73 files changed, 233 insertions, 153 deletions
diff --git a/runtime/autoload/ccomplete.vim b/runtime/autoload/ccomplete.vim
index 3bddba7a95..7096dcf4ac 100644
--- a/runtime/autoload/ccomplete.vim
+++ b/runtime/autoload/ccomplete.vim
@@ -1,10 +1,11 @@
vim9script noclear
# Vim completion script
-# Language: C
-# Maintainer: Bram Moolenaar <Bram@vim.org>
+# Language: C
+# Maintainer: The Vim Project <https://github.com/vim/vim>
+# Last Change: 2023 Aug 10
# Rewritten in Vim9 script by github user lacygoill
-# Last Change: 2022 Jan 31
+# Former Maintainer: Bram Moolenaar <Bram@vim.org>
var prepended: string
var grepCache: dict<list<dict<any>>>
diff --git a/runtime/autoload/dist/ft.vim b/runtime/autoload/dist/ft.vim
index 1735883937..9f53f68460 100644
--- a/runtime/autoload/dist/ft.vim
+++ b/runtime/autoload/dist/ft.vim
@@ -2,8 +2,9 @@ vim9script
# Vim functions for file type detection
#
-# Maintainer: Bram Moolenaar <Bram@vim.org>
-# Last Change: 2023 Jun 09
+# Maintainer: The Vim Project <https://github.com/vim/vim>
+# Last Change: 2023 Aug 10
+# Former Maintainer: Bram Moolenaar <Bram@vim.org>
# These functions are moved here from runtime/filetype.vim to make startup
# faster.
diff --git a/runtime/autoload/dist/script.vim b/runtime/autoload/dist/script.vim
index fa4b6e8426..5f3ae4aecc 100644
--- a/runtime/autoload/dist/script.vim
+++ b/runtime/autoload/dist/script.vim
@@ -3,8 +3,9 @@ vim9script
# Vim function for detecting a filetype from the file contents.
# Invoked from "scripts.vim" in 'runtimepath'
#
-# Maintainer: Bram Moolenaar <Bram@vim.org>
-# Last Change: 2023 Jun 09
+# Maintainer: The Vim Project <https://github.com/vim/vim>
+# Last Change: 2023 Aug 10
+# Former Maintainer: Bram Moolenaar <Bram@vim.org>
export def DetectFiletype()
var line1 = getline(1)
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 <Bram@vim.org>
-" Last Change: 2016 Sep 28
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" 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 <Bram@vim.org>
-" Last Change: 2019 Jan 27
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" 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/autoload/spellfile.vim b/runtime/autoload/spellfile.vim
index 6f9b1e0e0a..43f7dffa1a 100644
--- a/runtime/autoload/spellfile.vim
+++ b/runtime/autoload/spellfile.vim
@@ -1,6 +1,7 @@
" Vim script to download a missing spell file
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2020 Jul 10
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
if !exists('g:spellfile_URL')
" Always use https:// because it's secure. The certificate is for nluug.nl,
diff --git a/runtime/bugreport.vim b/runtime/bugreport.vim
index f7886a9081..38f47b6212 100644
--- a/runtime/bugreport.vim
+++ b/runtime/bugreport.vim
@@ -1,8 +1,9 @@
:" Use this script to create the file "bugreport.txt", which contains
:" information about the environment of a possible bug in Vim.
:"
-:" Maintainer: Bram Moolenaar <Bram@vim.org>
-:" Last change: 2019 Jan 27
+:" Maintainer: The Vim Project <https://github.com/vim/vim>
+:" Last change: 2023 Aug 10
+:" Former Maintainer: Bram Moolenaar <Bram@vim.org>
:"
:" To use inside Vim:
:" :so $VIMRUNTIME/bugreport.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 <Bram@vim.org>
-" Last Change: 2001 Jul 23
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" 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: <vim-dev@vim.org>
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 <Bram@vim.org>
-" Last Change: 2014 Sep 20
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
if exists("current_compiler")
finish
diff --git a/runtime/defaults.vim b/runtime/defaults.vim
index 6f8deb06ba..ff8ce8ea18 100644
--- a/runtime/defaults.vim
+++ b/runtime/defaults.vim
@@ -1,7 +1,8 @@
" The default vimrc file.
"
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last change: 2023 May 10
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
"
" This is loaded if no vimrc file was found.
" Except when Vim is run with "-u NONE" or "-C".
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 <Bram@vim.org>
-" Last Change: 2019 Dec 10
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
aunmenu *
tlunmenu *
diff --git a/runtime/doc/intro.txt b/runtime/doc/intro.txt
index 04d5f5cb8a..7b66303d3d 100644
--- a/runtime/doc/intro.txt
+++ b/runtime/doc/intro.txt
@@ -1,4 +1,4 @@
-*intro.txt* For Vim version 9.0. Last change: 2022 Nov 20
+*intro.txt* For Vim version 9.0. Last change: 2023 Aug 09
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -129,8 +129,9 @@ There are three ways to report bugs:
3. Send bug reports to: Vim Developers <vim-dev@vim.org>
This is a maillist, you need to become a member first and many people will
see the message. If you don't want that, e.g. because it is a security
- issue, send it to <bugs@vim.org>, this only goes to the Vim maintainer
- (that's Bram).
+ issue, please contact any of the current Vim maintainers
+ https://github.com/orgs/vim/people (but not Bram or the vim-dev ML).
+ In the future, a proper process for handling security issues will be setup.
Please be brief; all the time that is spent on answering mail is subtracted
from the time that is spent on improving Vim! Always give a reproducible
@@ -181,9 +182,9 @@ The user may create scripts for Vim that use external commands. These might
introduce Y2K problems, but those are not really part of Vim itself.
==============================================================================
-3. Credits *credits* *author* *Bram* *Moolenaar*
+3. Credits *credits* *author*
-Most of Vim was created by Bram Moolenaar <Bram@vim.org>.
+Most of Vim was created by Bram Moolenaar <Bram@vim.org> |Bram-Moolenaar|
Parts of the documentation come from several Vi manuals, written by:
W.N. Joy
@@ -216,7 +217,7 @@ Vim would never have become what it is now, without the help of these people!
Bill Foster Athena GUI port (later removed)
Google Lets me work on Vim one day a week
Loic Grenie xvim (ideas for multi windows version)
- Sven Guckes Vim promoter and previous WWW page maintainer
+ Sven Guckes Vim promoter and previous WWW page maintainer |Sven-Guckes|
Darren Hiebert Exuberant ctags
Jason Hildebrand GTK+ 2 port
Bruce Hunsaker improvements for VMS port
diff --git a/runtime/doc/tags b/runtime/doc/tags
index 51c0323acb..b34ecd5de4 100644
--- a/runtime/doc/tags
+++ b/runtime/doc/tags
@@ -3856,7 +3856,8 @@ BeOS os_beos.txt /*BeOS*
Blob eval.txt /*Blob*
Blobs eval.txt /*Blobs*
Boolean eval.txt /*Boolean*
-Bram intro.txt /*Bram*
+Bram version9.txt /*Bram*
+Bram-Moolenaar version9.txt /*Bram-Moolenaar*
BufAdd autocmd.txt /*BufAdd*
BufCreate autocmd.txt /*BufCreate*
BufDelete autocmd.txt /*BufDelete*
@@ -5458,7 +5459,7 @@ Mark motion.txt /*Mark*
MenuPopup autocmd.txt /*MenuPopup*
MiNT os_mint.txt /*MiNT*
ModeChanged autocmd.txt /*ModeChanged*
-Moolenaar intro.txt /*Moolenaar*
+Moolenaar version9.txt /*Moolenaar*
MorphOS os_amiga.txt /*MorphOS*
Motif gui_x11.txt /*Motif*
Myspell spell.txt /*Myspell*
diff --git a/runtime/doc/uganda.txt b/runtime/doc/uganda.txt
index 093da3015e..3a2474793a 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 <Bram@vim.org>. 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/doc/version9.txt b/runtime/doc/version9.txt
index 03b732b5e8..e9549285ff 100644
--- a/runtime/doc/version9.txt
+++ b/runtime/doc/version9.txt
@@ -1,4 +1,4 @@
-*version9.txt* For Vim version 9.0. Last change: 2022 Nov 23
+*version9.txt* For Vim version 9.0. Last change: 2023 Aug 09
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -43,6 +43,17 @@ when the release was being prepared. Sven was a long time supporter of Vim.
He registered the vim.org domain and created the first Vim website. We will
remember him!
+ *Bram* *Moolenaar* *Bram-Moolenaar*
+Vim version 9.1 is dedicated to Bram Moolenaar, who passed away on August 3rd 2023
+while still working full-time on Vim. The Vim project would not exist without
+his ongoing passion to lead and develop Vim and the community for more than 30
+years. Bram was also passionate about his |ICCF| foundation to help children
+in Uganda. If you enjoy using Vim, please consider donating!
+We will miss his guidance, passion and leadership.
+
+Obituary Articles: https://github.com/vim/vim/discussions/12742
+Say Farewell: https://github.com/vim/vim/discussions/12737
+
==============================================================================
NEW FEATURES *new-9*
diff --git a/runtime/evim.vim b/runtime/evim.vim
index d3f349e0d8..df7d756e2f 100644
--- a/runtime/evim.vim
+++ b/runtime/evim.vim
@@ -1,6 +1,7 @@
" Vim script for Evim key bindings
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2022 May 10
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Don't use Vi-compatible mode.
set nocompatible
diff --git a/runtime/filetype.vim b/runtime/filetype.vim
index eea55f8b99..fe6e94828a 100644
--- a/runtime/filetype.vim
+++ b/runtime/filetype.vim
@@ -1,7 +1,8 @@
" Vim support file to detect file types
"
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2023 Jun 09
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Listen very carefully, I will say this only once
if exists("did_load_filetypes")
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 <Bram@vim.org>
-" Last change: 2001 Jun 11
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
if exists("did_load_filetypes")
unlet did_load_filetypes
diff --git a/runtime/ftplugin.vim b/runtime/ftplugin.vim
index 2500a7f27b..93f6b05a4c 100644
--- a/runtime/ftplugin.vim
+++ b/runtime/ftplugin.vim
@@ -2,8 +2,9 @@ vim9script noclear
# Vim support file to switch on loading plugins for file types
#
-# Maintainer: Bram Moolenaar <Bram@vim.org>
-# Last change: 2022 Feb 11
+# Maintainer: The Vim Project <https://github.com/vim/vim>
+# Last change: 2023 Aug 10
+# Former Maintainer: Bram Moolenaar <Bram@vim.org>
if exists("g: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 <Bram@vim.org>
-" Last Change: 2021 Nov 14
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" 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 <Bram@vim.org>
-" Last Change: 2004 Jul 06
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" 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 3627089ec2..4ddc4a5392 100644
--- a/runtime/ftplugin/c.vim
+++ b/runtime/ftplugin/c.vim
@@ -1,7 +1,8 @@
" Vim filetype plugin file
" Language: C
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2022 Apr 08
+" Maintainer: The Vim Project <https://github.com/vim/vim>
+" Last Change: 2023 Aug 10
+" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" 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 f9d31cbec3..fc92935a15 100644
--- a/runtime/ftplugin/cpp.vim
+++ b/runtime/ftplugin/cpp.vim
@@ -1,7 +1,8 @@
" Vim filetype plugin file
" Language: C++
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2020 Jul 26
+" Maintainer: