vim-patch:e978b4534a5e (#24697)

Farewell to Bram and dedicate upcoming Vim 9.1 to him (vim/vim#12749)

e978b4534a

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 <cb@256bit.org>
This commit is contained in:
Sean Dewar 2023-08-13 13:25:10 +01:00 committed by GitHub
parent 0fe921663f
commit cbf54ec2a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
62 changed files with 183 additions and 126 deletions

View File

@ -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 maintainer will do with your changes and under what license they
will be distributed is negotiable. If there has been no negotiation will be distributed is negotiable. If there has been no negotiation
then this license, or a later version, also applies to your changes. then this license, or a later version, also applies to your changes.
The current maintainer is Bram Moolenaar <Bram@vim.org>. If this The current maintainers are listed here: https://github.com/orgs/vim/people.
changes it will be announced in appropriate places (most likely 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 vim.sf.net, www.vim.org and/or comp.editors). When it is completely
impossible to contact the maintainer, the obligation to send him impossible to contact the maintainer, the obligation to send him
your changes ceases. Once the maintainer has confirmed that he has your changes ceases. Once the maintainer has confirmed that he has

View File

@ -24,10 +24,11 @@ local SearchMembers = nil
-- vim9script -- vim9script
-- # Vim completion script -- # Vim completion script
-- # Language: C -- # Language: C
-- # Maintainer: Bram Moolenaar <Bram@vim.org> -- # Maintainer: The Vim Project <https://github.com/vim/vim>
-- # Last Change: 2023 Aug 10
-- # Rewritten in Vim9 script by github user lacygoill -- # Rewritten in Vim9 script by github user lacygoill
-- # Last Change: 2022 Jan 31 -- # Former Maintainer: Bram Moolenaar <Bram@vim.org>
prepended = '' prepended = ''
grepCache = vim.empty_dict() grepCache = vim.empty_dict()

View File

@ -1,6 +1,7 @@
" Vim autoload file for editing compressed files. " Vim autoload file for editing compressed files.
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2016 Sep 28 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" These functions are used by the gzip plugin. " These functions are used by the gzip plugin.

View File

@ -1,6 +1,7 @@
" Vim support file to help with paste mappings and menus " Vim support file to help with paste mappings and menus
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2019 Jan 27 " 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 " 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. " Toolbar menu. Also used in mswin.vim and macmap.vim.

View File

@ -1,6 +1,7 @@
" Vim color file " Vim color file
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2001 Jul 23 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" This is the default color scheme. It doesn't define the Normal " This is the default color scheme. It doesn't define the Normal
" highlighting, it uses whatever the colors used to be. " highlighting, it uses whatever the colors used to be.

View File

@ -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. for how to do it, the format is simple.
If you think a compiler plugin you have written is useful for others, please 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>

View File

@ -1,7 +1,8 @@
" Vim compiler file " Vim compiler file
" Compiler: Microsoft Visual C " Compiler: Microsoft Visual C
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2014 Sep 20 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
if exists("current_compiler") if exists("current_compiler")
finish finish

View File

@ -1,8 +1,9 @@
" This Vim script deletes all the menus, so that they can be redefined. " This Vim script deletes all the menus, so that they can be redefined.
" Warning: This also deletes all menus defined by the user! " Warning: This also deletes all menus defined by the user!
" "
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2019 Dec 10 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
aunmenu * aunmenu *
tlunmenu * tlunmenu *

View File

@ -88,9 +88,9 @@ Nvim development is funded separately from Vim:
https://neovim.io/#sponsor https://neovim.io/#sponsor
============================================================================== ==============================================================================
Credits *credits* Credits *credits*
Most of Vim was written by Bram Moolenaar <Bram@vim.org>. Most of Vim was written by Bram Moolenaar <Bram@vim.org> |Bram-Moolenaar|
Parts of the documentation come from several Vi manuals, written by: Parts of the documentation come from several Vi manuals, written by:
W.N. Joy 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/ 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 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 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 of use to you in your life, please read |Uganda| and consider honoring his
memory however you may see fit. 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* Notation *notation*

View File

@ -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 maintainer will do with your changes and under what license they
will be distributed is negotiable. If there has been no negotiation will be distributed is negotiable. If there has been no negotiation
then this license, or a later version, also applies to your changes. then this license, or a later version, also applies to your changes.
The current maintainer is Bram Moolenaar <Bram@vim.org>. If this The current maintainers are listed here: https://github.com/orgs/vim/people.
changes it will be announced in appropriate places (most likely 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 vim.sf.net, www.vim.org and/or comp.editors). When it is completely
impossible to contact the maintainer, the obligation to send him impossible to contact the maintainer, the obligation to send him
your changes ceases. Once the maintainer has confirmed that he has your changes ceases. Once the maintainer has confirmed that he has

View File

@ -1,7 +1,8 @@
" Vim support file to switch off detection of file types " Vim support file to switch off detection of file types
" "
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last change: 2001 Jun 11 " Last change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
if exists("did_load_filetypes") if exists("did_load_filetypes")
unlet did_load_filetypes unlet did_load_filetypes

View File

@ -1,7 +1,8 @@
" Vim support file to switch on loading plugins for file types " Vim support file to switch on loading plugins for file types
" "
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last change: 2006 Apr 30 " Last change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
if exists("did_load_ftplugin") if exists("did_load_ftplugin")
finish finish

View File

@ -1,7 +1,8 @@
" Vim filetype plugin file " Vim filetype plugin file
" Language: Aap recipe " Language: Aap recipe
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2021 Nov 14 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Only do this when not done yet for this buffer " Only do this when not done yet for this buffer
if exists("b:did_ftplugin") if exists("b:did_ftplugin")

View File

@ -1,7 +1,8 @@
" Vim filetype plugin file " Vim filetype plugin file
" Language: BTM " Language: BTM
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2004 Jul 06 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Only do this when not done yet for this buffer " Only do this when not done yet for this buffer
if exists("b:did_ftplugin") if exists("b:did_ftplugin")

View File

@ -1,7 +1,8 @@
" Vim filetype plugin file " Vim filetype plugin file
" Language: C " Language: C
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2022 Apr 08 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Only do this when not done yet for this buffer " Only do this when not done yet for this buffer
if exists("b:did_ftplugin") if exists("b:did_ftplugin")

View File

@ -1,7 +1,8 @@
" Vim filetype plugin file " Vim filetype plugin file
" Language: C++ " Language: C++
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2020 Jul 26 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Only do this when not done yet for this buffer " Only do this when not done yet for this buffer
if exists("b:did_ftplugin") if exists("b:did_ftplugin")

View File

@ -1,7 +1,8 @@
" Vim filetype plugin file " Vim filetype plugin file
" Language: Diff " Language: Diff
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2021 Nov 14 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Only do this when not done yet for this buffer " Only do this when not done yet for this buffer
if exists("b:did_ftplugin") if exists("b:did_ftplugin")

View File

@ -1,7 +1,8 @@
" Vim filetype plugin file " Vim filetype plugin file
" Language: Mail " Language: Mail
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2021 Oct 23 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Only do this when not done yet for this buffer " Only do this when not done yet for this buffer
if exists("b:did_ftplugin") if exists("b:did_ftplugin")

View File

@ -1,7 +1,8 @@
" Vim filetype plugin file " Vim filetype plugin file
" Language: Make " Language: Make
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2020 Oct 16 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Only do this when not done yet for this buffer " Only do this when not done yet for this buffer
if exists("b:did_ftplugin") if exists("b:did_ftplugin")

View File

@ -1,7 +1,8 @@
" Vim filetype plugin file " Vim filetype plugin file
" Language: Objective C " Language: Objective C
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2003 Jan 15 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Only do this when not done yet for this buffer " Only do this when not done yet for this buffer
if exists("b:did_ftplugin") if exists("b:did_ftplugin")

View File

@ -1,7 +1,8 @@
" Vim filetype plugin " Vim filetype plugin
" Language: Vim " Language: Vim
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2023 Feb 07 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Only do this when not done yet for this buffer " Only do this when not done yet for this buffer
if exists("b:did_ftplugin") if exists("b:did_ftplugin")

View File

@ -1,7 +1,8 @@
" Vim filetype plugin file " Vim filetype plugin file
" Language: Zimbu " Language: Zimbu
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2022 Sep 07 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Only do this when not done yet for this buffer " Only do this when not done yet for this buffer
if exists("b:did_ftplugin") if exists("b:did_ftplugin")

View File

@ -1,7 +1,8 @@
" Vim support file to switch off loading plugins for file types " Vim support file to switch off loading plugins for file types
" "
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2011 Oct 20 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
if exists("did_load_ftplugin") if exists("did_load_ftplugin")
unlet did_load_ftplugin unlet did_load_ftplugin

View File

@ -1,7 +1,8 @@
" Vim support file to switch on loading indent files for file types " Vim support file to switch on loading indent files for file types
" "
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2008 Feb 22 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
if exists("did_indent_on") if exists("did_indent_on")
finish finish

View File

@ -6,9 +6,9 @@ at ":help indent-expression". Looking at the existing files should give you
inspiration. inspiration.
If you make a new indent file which would be useful for others, please send it 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 to the vim-dev mailing list <vim-dev@vim.org>. Include instructions for
language, by file name extension or by checking a few lines in the file. detecting the file type for this language, by file name extension or by
And please stick to the rules below. 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 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. that file. Only when you get no response send a message to Bram@vim.org.

View File

@ -1,7 +1,8 @@
" Vim indent file " Vim indent file
" Language: Aap recipe " Language: Aap recipe
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2005 Jun 24 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Only load this indent file when no other was loaded. " Only load this indent file when no other was loaded.
if exists("b:did_indent") if exists("b:did_indent")

View File

@ -1,7 +1,8 @@
" Vim indent file " Vim indent file
" Language: C " Language: C
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2005 Mar 27 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Only load this indent file when no other was loaded. " Only load this indent file when no other was loaded.
if exists("b:did_indent") if exists("b:did_indent")

View File

@ -1,7 +1,8 @@
" Vim indent file " Vim indent file
" Language: C++ " Language: C++
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2008 Nov 29 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Only load this indent file when no other was loaded. " Only load this indent file when no other was loaded.
if exists("b:did_indent") if exists("b:did_indent")

View File

@ -1,7 +1,8 @@
" Vim indent file " Vim indent file
" Language: CUDA " Language: CUDA
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2008 Nov 29 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Only load this indent file when no other was loaded. " Only load this indent file when no other was loaded.
if exists("b:did_indent") if exists("b:did_indent")

View File

@ -1,8 +1,9 @@
" Vim indent file " Vim indent file
" Language: Python " Language: Python
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Original Author: David Bustos <bustos@caltech.edu> " Original Author: David Bustos <bustos@caltech.edu>
" Last Change: 2021 Sep 26
" Only load this indent file when no other was loaded. " Only load this indent file when no other was loaded.
if exists("b:did_indent") if exists("b:did_indent")

View File

@ -1,7 +1,8 @@
" Vim indent file " Vim indent file
" Language: Vim script " Language: Vim script
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2022 Jun 24 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Only load this indent file when no other was loaded. " Only load this indent file when no other was loaded.
if exists("b:did_indent") if exists("b:did_indent")

View File

@ -1,7 +1,8 @@
" Vim indent file " Vim indent file
" Language: XHTML " Language: XHTML
" Maintainer: Bram Moolenaar <Bram@vim.org> (for now) " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2005 Jun 24 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Only load this indent file when no other was loaded. " Only load this indent file when no other was loaded.
if exists("b:did_indent") if exists("b:did_indent")

View File

@ -1,7 +1,8 @@
" Vim indent file " Vim indent file
" Language: Zimbu " Language: Zimbu
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2021 Sep 26 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Only load this indent file when no other was loaded. " Only load this indent file when no other was loaded.
if exists("b:did_indent") if exists("b:did_indent")

View File

@ -1,7 +1,8 @@
" Vim support file to switch off loading indent files for file types " Vim support file to switch off loading indent files for file types
" "
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2001 Jun 11 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
if exists("did_indent_on") if exists("did_indent_on")
unlet did_indent_on unlet did_indent_on

View File

@ -1,6 +1,7 @@
" Vim script to work like "less" " Vim script to work like "less"
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2020 Dec 17 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Avoid loading this file twice, allow the user to define his own script. " Avoid loading this file twice, allow the user to define his own script.
if exists("loaded_less") if exists("loaded_less")

View File

@ -1,6 +1,7 @@
" Script to define the syntax menu in synmenu.vim " Script to define the syntax menu in synmenu.vim
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2019 Dec 07 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" This is used by "make menu" in the src directory. " This is used by "make menu" in the src directory.
edit <sfile>:p:h/synmenu.vim edit <sfile>:p:h/synmenu.vim

View File

@ -1,8 +1,9 @@
" Vim support file to define the default menus " Vim support file to define the default menus
" You can also use this as a start for your own set of menus. " You can also use this as a start for your own set of menus.
" "
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2023 May 03 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Note that ":an" (short for ":anoremenu") is often used to make a menu work " 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. " in all modes and avoid side effects from mappings defined by the user.

View File

@ -1,7 +1,8 @@
" Set options and add mapping such that Vim behaves a lot like MS-Windows " Set options and add mapping such that Vim behaves a lot like MS-Windows
" "
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2018 Dec 07 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Bail out if this isn't wanted. " Bail out if this isn't wanted.
if exists("g:skip_loading_mswin") && g:skip_loading_mswin if exists("g:skip_loading_mswin") && g:skip_loading_mswin

View File

@ -1,7 +1,8 @@
" These commands create the option window. " These commands create the option window.
" "
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2022 Dec 16 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" If there already is an option window, jump to that one. " If there already is an option window, jump to that one.
let buf = bufnr('option-window') let buf = bufnr('option-window')

View File

@ -1,6 +1,7 @@
" Vim plugin for editing compressed files. " Vim plugin for editing compressed files.
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2016 Oct 30 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Exit quickly when: " Exit quickly when:
" - this plugin was already loaded " - this plugin was already loaded

View File

@ -1,6 +1,7 @@
" Vim plugin for showing matching parens " Vim plugin for showing matching parens
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2022 Dec 01 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Exit quickly when: " Exit quickly when:
" - this plugin was already loaded (or disabled) " - this plugin was already loaded (or disabled)

View File

@ -1,8 +1,9 @@
" Vim support file to define the syntax selection menu " Vim support file to define the syntax selection menu
" This file is normally sourced from menu.vim. " This file is normally sourced from menu.vim.
" "
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2022 Oct 04 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Define the SetSyn function, used for the Syntax menu entries. " Define the SetSyn function, used for the Syntax menu entries.
" Set 'filetype' and also 'syntax' if it is manually selected. " Set 'filetype' and also 'syntax' if it is manually selected.

View File

@ -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 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 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 to the vim-dev mailing list <vim-dev@vim.org>. Include instructions for
language, by file name extension or by checking a few lines in the file. detecting the file type for this language, by file name extension or by
And please write the file in a portable way, see ":help 44.12". 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 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. that file. Only when you get no response send a message to Bram@vim.org.

View File

@ -1,7 +1,8 @@
" Vim syntax file " Vim syntax file
" Language: A-A-P recipe " Language: A-A-P recipe
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2004 Jun 13 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Quit when a syntax file was already loaded " Quit when a syntax file was already loaded
if exists("b:current_syntax") if exists("b:current_syntax")

View File

@ -1,7 +1,8 @@
" Vim syntax file " Vim syntax file
" Language: C " Language: C
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2023 Mar 08 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Quit when a (custom) syntax file was already loaded " Quit when a (custom) syntax file was already loaded
if exists("b:current_syntax") if exists("b:current_syntax")

View File

@ -1,7 +1,8 @@
" Vim script for testing colors " Vim script for testing colors
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Contributors: Rafael Garcia-Suarez, Charles Campbell " Contributors: Rafael Garcia-Suarez, Charles Campbell
" Last Change: 2008 Jun 04 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" edit this file, then do ":source %", and check if the colors match " edit this file, then do ":source %", and check if the colors match

View File

@ -1,7 +1,8 @@
" Vim syntax file " Vim syntax file
" Language: generic configure file " Language: generic configure file
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2021 May 01 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Quit when a (custom) syntax file was already loaded " Quit when a (custom) syntax file was already loaded
if exists("b:current_syntax") if exists("b:current_syntax")

View File

@ -1,7 +1,8 @@
" Vim syntax file " Vim syntax file
" Language: CTRL-H (e.g., ASCII manpages) " Language: CTRL-H (e.g., ASCII manpages)
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2005 Jun 20 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Existing syntax is kept, this file can be used as an addition " Existing syntax is kept, this file can be used as an addition

View File

@ -1,8 +1,9 @@
" Vim syntax file " Vim syntax file
" Language: Diff (context or unified) " Language: Diff (context or unified)
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Translations by Jakson Alves de Aquino. " Translations by Jakson Alves de Aquino.
" Last Change: 2020 Dec 30 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Quit when a (custom) syntax file was already loaded " Quit when a (custom) syntax file was already loaded
if exists("b:current_syntax") if exists("b:current_syntax")

View File

@ -1,7 +1,8 @@
" Vim syntax file " Vim syntax file
" Language: Vim help file " Language: Vim help file
" Maintainer: Bram Moolenaar (Bram@vim.org) " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2022 Nov 13 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Quit when a (custom) syntax file was already loaded " Quit when a (custom) syntax file was already loaded
if exists("b:current_syntax") if exists("b:current_syntax")

View File

@ -1,6 +1,7 @@
" Vim syntax support file " Vim syntax support file
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2016 Feb 01 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" This file is used for ":syntax manual". " This file is used for ":syntax manual".
" It installs the Syntax autocommands, but no the FileType autocommands. " It installs the Syntax autocommands, but no the FileType autocommands.

View File

@ -1,7 +1,8 @@
" Vim syntax file " Vim syntax file
" Language: Model " Language: Model
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2005 Jun 20 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" very basic things only (based on the vgrindefs file). " very basic things only (based on the vgrindefs file).
" If you use this language, please improve it, and send me the patches! " If you use this language, please improve it, and send me the patches!

View File

@ -1,6 +1,7 @@
" Vim syntax support file " Vim syntax support file
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2006 Apr 16 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" This file is used for ":syntax off". " This file is used for ":syntax off".
" It removes the autocommands and stops highlighting for all buffers. " It removes the autocommands and stops highlighting for all buffers.

View File

@ -1,7 +1,8 @@
" Vim syntax file " Vim syntax file
" Language: Quickfix window " Language: Quickfix window
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last change: 2001 Jan 15 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Quit when a syntax file was already loaded " Quit when a syntax file was already loaded
if exists("b:current_syntax") if exists("b:current_syntax")

View File

@ -1,6 +1,7 @@
" Vim syntax support file " Vim syntax support file
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2022 Apr 12 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" This file sets up for syntax highlighting. " This file sets up for syntax highlighting.
" It is loaded from "syntax.vim" and "manual.vim". " It is loaded from "syntax.vim" and "manual.vim".

View File

@ -1,6 +1,7 @@
" Vim syntax support file " Vim syntax support file
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2022 Apr 12 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" This file is used for ":syntax on". " This file is used for ":syntax on".
" It installs the autocommands and starts highlighting for all buffers. " It installs the autocommands and starts highlighting for all buffers.

View File

@ -1,7 +1,8 @@
" Vim syntax file " Vim syntax file
" Language: Generic template " Language: Generic template
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2019 May 06 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Quit when a (custom) syntax file was already loaded " Quit when a (custom) syntax file was already loaded
if exists("b:current_syntax") if exists("b:current_syntax")

View File

@ -1,7 +1,8 @@
" Vim syntax file " Vim syntax file
" Language: Vgrindefs " Language: Vgrindefs
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2005 Jun 20 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" The Vgrindefs file is used to specify a language for vgrind " The Vgrindefs file is used to specify a language for vgrind

View File

@ -1,7 +1,8 @@
" Vim syntax file " Vim syntax file
" Language: Vim .viminfo file " Language: Vim .viminfo file
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2016 Jun 05 " Last Change: 2023 Aug 10
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
" Quit when a (custom) syntax file was already loaded " Quit when a (custom) syntax file was already loaded
if exists("b:current_syntax") if exists("b:current_syntax")

View File

@ -3787,7 +3787,7 @@ msgstr "linje %4ld:"
msgid "E354: Invalid register name: '%s'" msgid "E354: Invalid register name: '%s'"
msgstr "E354: Ugyldigt registernavn: '%s'" msgstr "E354: Ugyldigt registernavn: '%s'"
msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>" msgid "Messages maintainer: The Vim Project"
msgstr "Oversætter: scootergrisen" msgstr "Oversætter: scootergrisen"
msgid "Interrupt: " msgid "Interrupt: "

View File

@ -3657,7 +3657,7 @@ msgstr "linio %4ld:"
msgid "E354: Invalid register name: '%s'" msgid "E354: Invalid register name: '%s'"
msgstr "E354: Nevalida nomo de reĝistro: '%s'" msgstr "E354: Nevalida nomo de reĝistro: '%s'"
msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>" msgid "Messages maintainer: The Vim Project"
msgstr "Flegado de mesaĝoj: Dominique PELLÉ <dominique.pelle@gmail.com>" msgstr "Flegado de mesaĝoj: Dominique PELLÉ <dominique.pelle@gmail.com>"
msgid "Interrupt: " msgid "Interrupt: "

View File

@ -3375,7 +3375,7 @@ msgid "E354: Invalid register name: '%s'"
msgstr "E354: Nom de registre invalide : '%s'" msgstr "E354: Nom de registre invalide : '%s'"
# DB - todo : mettre à jour ? # DB - todo : mettre à jour ?
msgid "Messages maintainer: Bram Moolenaar <Bram@vim.org>" msgid "Messages maintainer: The Vim Project"
msgstr "Maintenance des messages : Dominique Pellé <dominique.pelle@gmail.com>" msgstr "Maintenance des messages : Dominique Pellé <dominique.pelle@gmail.com>"
msgid "Interrupt: " msgid "Interrupt: "