forked from vim/vim
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Farewell to Bram and dedicate upcoming Vim 9.1 to him (vim#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
- Loading branch information
Showing
120 changed files
with
287 additions
and
207 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
vim9script noclear | ||
|
||
# Vim completion script | ||
# Language: C | ||
# Maintainer: Bram Moolenaar <[email protected]> | ||
# 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 <[email protected]> | ||
|
||
var prepended: string | ||
var grepCache: dict<list<dict<any>>> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,9 @@ vim9script | |
|
||
# Vim functions for file type detection | ||
# | ||
# Maintainer: Bram Moolenaar <[email protected]> | ||
# Last Change: 2023 Jun 09 | ||
# Maintainer: The Vim Project <https://github.com/vim/vim> | ||
# Last Change: 2023 Aug 10 | ||
# Former Maintainer: Bram Moolenaar <[email protected]> | ||
|
||
# These functions are moved here from runtime/filetype.vim to make startup | ||
# faster. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,9 @@ vim9script | |
# Vim function for detecting a filetype from the file contents. | ||
# Invoked from "scripts.vim" in 'runtimepath' | ||
# | ||
# Maintainer: Bram Moolenaar <[email protected]> | ||
# Last Change: 2023 Jun 09 | ||
# Maintainer: The Vim Project <https://github.com/vim/vim> | ||
# Last Change: 2023 Aug 10 | ||
# Former Maintainer: Bram Moolenaar <[email protected]> | ||
|
||
export def DetectFiletype() | ||
var line1 = getline(1) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
" Vim autoload file for editing compressed files. | ||
" Maintainer: Bram Moolenaar <[email protected]> | ||
" Last Change: 2016 Sep 28 | ||
" Maintainer: The Vim Project <https://github.com/vim/vim> | ||
" Last Change: 2023 Aug 10 | ||
" Former Maintainer: Bram Moolenaar <[email protected]> | ||
|
||
" These functions are used by the gzip plugin. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
" Vim support file to help with paste mappings and menus | ||
" Maintainer: Bram Moolenaar <[email protected]> | ||
" Last Change: 2019 Jan 27 | ||
" Maintainer: The Vim Project <https://github.com/vim/vim> | ||
" Last Change: 2023 Aug 10 | ||
" Former Maintainer: Bram Moolenaar <[email protected]> | ||
|
||
" 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. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
" Vim script to download a missing spell file | ||
" Maintainer: Bram Moolenaar <[email protected]> | ||
" Last Change: 2020 Jul 10 | ||
" Maintainer: The Vim Project <https://github.com/vim/vim> | ||
" Last Change: 2023 Aug 10 | ||
" Former Maintainer: Bram Moolenaar <[email protected]> | ||
|
||
if !exists('g:spellfile_URL') | ||
" Always use https:// because it's secure. The certificate is for nluug.nl, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]> | ||
:" Last change: 2019 Jan 27 | ||
:" Maintainer: The Vim Project <https://github.com/vim/vim> | ||
:" Last change: 2023 Aug 10 | ||
:" Former Maintainer: Bram Moolenaar <[email protected]> | ||
:" | ||
:" To use inside Vim: | ||
:" :so $VIMRUNTIME/bugreport.vim | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
" Vim color file | ||
" Maintainer: Bram Moolenaar <[email protected]> | ||
" Last Change: 2001 Jul 23 | ||
" Maintainer: The Vim Project <https://github.com/vim/vim> | ||
" Last Change: 2023 Aug 10 | ||
" Former Maintainer: Bram Moolenaar <[email protected]> | ||
|
||
" This is the default color scheme. It doesn't define the Normal | ||
" highlighting, it uses whatever the colors used to be. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
" Vim compiler file | ||
" Compiler: Microsoft Visual C | ||
" Maintainer: Bram Moolenaar <[email protected]> | ||
" Last Change: 2014 Sep 20 | ||
" Maintainer: The Vim Project <https://github.com/vim/vim> | ||
" Last Change: 2023 Aug 10 | ||
" Former Maintainer: Bram Moolenaar <[email protected]> | ||
|
||
if exists("current_compiler") | ||
finish | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
" The default vimrc file. | ||
" | ||
" Maintainer: Bram Moolenaar <[email protected]> | ||
" Last change: 2023 May 10 | ||
" Maintainer: The Vim Project <https://github.com/vim/vim> | ||
" Last change: 2023 Aug 10 | ||
" Former Maintainer: Bram Moolenaar <[email protected]> | ||
" | ||
" This is loaded if no vimrc file was found. | ||
" Except when Vim is run with "-u NONE" or "-C". | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]> | ||
" Last Change: 2019 Dec 10 | ||
" Maintainer: The Vim Project <https://github.com/vim/vim> | ||
" Last Change: 2023 Aug 10 | ||
" Former Maintainer: Bram Moolenaar <[email protected]> | ||
|
||
aunmenu * | ||
tlunmenu * | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]> | ||
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 <[email protected]>, 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 <[email protected]>. | ||
Most of Vim was created by Bram Moolenaar <[email protected]> |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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
" Vim script for Evim key bindings | ||
" Maintainer: Bram Moolenaar <[email protected]> | ||
" Last Change: 2022 May 10 | ||
" Maintainer: The Vim Project <https://github.com/vim/vim> | ||
" Last Change: 2023 Aug 10 | ||
" Former Maintainer: Bram Moolenaar <[email protected]> | ||
|
||
" Don't use Vi-compatible mode. | ||
set nocompatible | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
" Vim support file to detect file types | ||
" | ||
" Maintainer: Bram Moolenaar <[email protected]> | ||
" Last Change: 2023 Jun 09 | ||
" Maintainer: The Vim Project <https://github.com/vim/vim> | ||
" Last Change: 2023 Aug 10 | ||
" Former Maintainer: Bram Moolenaar <[email protected]> | ||
|
||
" Listen very carefully, I will say this only once | ||
if exists("did_load_filetypes") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
" Vim support file to switch off detection of file types | ||
" | ||
" Maintainer: Bram Moolenaar <[email protected]> | ||
" Last change: 2001 Jun 11 | ||
" Maintainer: The Vim Project <https://github.com/vim/vim> | ||
" Last change: 2023 Aug 10 | ||
" Former Maintainer: Bram Moolenaar <[email protected]> | ||
|
||
if exists("did_load_filetypes") | ||
unlet did_load_filetypes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,9 @@ vim9script noclear | |
|
||
# Vim support file to switch on loading plugins for file types | ||
# | ||
# Maintainer: Bram Moolenaar <[email protected]> | ||
# Last change: 2022 Feb 11 | ||
# Maintainer: The Vim Project <https://github.com/vim/vim> | ||
# Last change: 2023 Aug 10 | ||
# Former Maintainer: Bram Moolenaar <[email protected]> | ||
|
||
if exists("g:did_load_ftplugin") | ||
finish | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
" Vim filetype plugin file | ||
" Language: Aap recipe | ||
" Maintainer: Bram Moolenaar <[email protected]> | ||
" Last Change: 2021 Nov 14 | ||
" Maintainer: The Vim Project <https://github.com/vim/vim> | ||
" Last Change: 2023 Aug 10 | ||
" Former Maintainer: Bram Moolenaar <[email protected]> | ||
|
||
" Only do this when not done yet for this buffer | ||
if exists("b:did_ftplugin") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
" Vim filetype plugin file | ||
" Language: BTM | ||
" Maintainer: Bram Moolenaar <[email protected]> | ||
" Last Change: 2004 Jul 06 | ||
" Maintainer: The Vim Project <https://github.com/vim/vim> | ||
" Last Change: 2023 Aug 10 | ||
" Former Maintainer: Bram Moolenaar <[email protected]> | ||
|
||
" Only do this when not done yet for this buffer | ||
if exists("b:did_ftplugin") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
" Vim filetype plugin file | ||
" Language: C | ||
" Maintainer: Bram Moolenaar <[email protected]> | ||
" Last Change: 2022 Apr 08 | ||
" Maintainer: The Vim Project <https://github.com/vim/vim> | ||
" Last Change: 2023 Aug 10 | ||
" Former Maintainer: Bram Moolenaar <[email protected]> | ||
|
||
" Only do this when not done yet for this buffer | ||
if exists("b:did_ftplugin") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
" Vim filetype plugin file | ||
" Language: C++ | ||
" Maintainer: Bram Moolenaar <[email protected]> | ||
" Last Change: 2020 Jul 26 | ||
" Maintainer: The Vim Project <https://github.com/vim/vim> | ||
" Last Change: 2023 Aug 10 | ||
" Former Maintainer: Bram Moolenaar <[email protected]> | ||
|
||
" Only do this when not done yet for this buffer | ||
if exists("b:did_ftplugin") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
" Vim filetype plugin file | ||
" Language: Diff | ||
" Maintainer: Bram Moolenaar <[email protected]> | ||
" Last Change: 2021 Nov 14 | ||
" Maintainer: The Vim Project <https://github.com/vim/vim> | ||
" Last Change: 2023 Aug 10 | ||
" Former Maintainer: Bram Moolenaar <[email protected]> | ||
|
||
" Only do this when not done yet for this buffer | ||
if exists("b:did_ftplugin") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
" Vim filetype plugin file | ||
" Language: Mail | ||
" Maintainer: Bram Moolenaar <[email protected]> | ||
" Last Change: 2021 Oct 23 | ||
" Maintainer: The Vim Project <https://github.com/vim/vim> | ||
" Last Change: 2023 Aug 10 | ||
" Former Maintainer: Bram Moolenaar <[email protected]> | ||
|
||
" Only do this when not done yet for this buffer | ||
if exists("b:did_ftplugin") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
" Vim filetype plugin file | ||
" Language: Make | ||
" Maintainer: Bram Moolenaar <[email protected]> | ||
" Last Change: 2020 Oct 16 | ||
" Maintainer: The Vim Project <https://github.com/vim/vim> | ||
" Last Change: 2023 Aug 10 | ||
" Former Maintainer: Bram Moolenaar <[email protected]> | ||
|
||
" Only do this when not done yet for this buffer | ||
if exists("b:did_ftplugin") | ||
|
Oops, something went wrong.